/* ==========================================================================
   TÜRKIYE MOTORCULARI PORTALI - PIXEL-PERFECT DESIGN SYSTEM
   Carbon Dark Theme matching Mockup Design 100%
   ========================================================================== */

:root {
  --bg-dark: #0d0e12;
  --bg-card: #16181f;
  --bg-card-hover: #1e212b;
  --bg-pill: #1a1d26;
  
  --accent-red: #e53935;
  --accent-red-hover: #d32f2f;
  --accent-red-glow: rgba(229, 57, 53, 0.4);
  
  --text-main: #ffffff;
  --text-muted: #9a9ea9;
  --text-dim: #656975;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

html, body {
  background-color: #0d0e12 !important;
  color: #ffffff !important;
  font-family: var(--font-family) !important;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 57, 53, 0.8);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Emergency Alert Bar */
.emergency-banner {
  background: linear-gradient(90deg, #d32f2f, #b71c1c) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: none;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 2px 10px rgba(211, 47, 47, 0.5) !important;
  z-index: 1000 !important;
  position: relative !important;
}

.emergency-banner.active {
  display: flex !important;
}

.emergency-content {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.emergency-close {
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
}

/* Header & Navbar Master Layout */
.navbar-carbon,
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(13, 14, 18, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--border-color) !important;
  padding: 8px 0 !important;
  width: 100% !important;
}

.navbar-container,
.nav-container {
  max-width: 1480px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

.brand-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.brand-icon {
  width: 38px !important;
  height: 38px !important;
  background: #e53935 !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4) !important;
  flex-shrink: 0 !important;
}

.brand-title {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.15 !important;
}

.brand-title-main {
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  color: white !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.brand-title-sub {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  color: #e53935 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  justify-content: center !important;
  min-width: 0 !important;
  margin: 0 4px !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: clamp(4px, 0.9vw, 12px) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.nav-link {
  color: #94a3b8 !important;
  font-weight: 600 !important;
  font-size: 0.81rem !important;
  padding: 6px 4px !important;
  transition: color 0.2s ease, opacity 0.2s ease !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.nav-link-badge {
  font-size: 0.62rem !important;
  padding: 1px 5px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin-left: 2px !important;
}

.nav-link span {
  white-space: nowrap !important;
}

.nav-link:hover {
  color: #ffffff !important;
}

.nav-link.active {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3) !important;
}

.nav-link.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -4px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #e53935 !important;
  border-radius: 9999px !important;
  box-shadow: 0 0 8px rgba(229, 57, 53, 0.7) !important;
}

#navbarAuthBox {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}

.nav-link.active {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3) !important;
}

.nav-link.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #e53935 !important;
  border-radius: 9999px !important;
  box-shadow: 0 0 8px rgba(229, 57, 53, 0.7) !important;
}

.nav-link i {
  font-size: 0.85rem !important;
  line-height: 1 !important;
  opacity: 0.85 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.nav-link:hover i,
.nav-link.active i {
  opacity: 1 !important;
}

/* Subtle Trailing Pill Badge for Navbar links */
.nav-link-badge {
  background: rgba(229, 57, 53, 0.14) !important;
  color: #ff5252 !important;
  border: 1px solid rgba(229, 57, 53, 0.3) !important;
  padding: 1px 6px !important;
  border-radius: 10px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.2 !important;
  transition: all 0.2s ease !important;
}

.nav-link:hover .nav-link-badge {
  background: rgba(229, 57, 53, 0.25) !important;
  border-color: rgba(229, 57, 53, 0.5) !important;
  color: #ffffff !important;
}

.nav-right-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.icon-btn {
  background: transparent !important;
  border: none !important;
  color: #9a9ea9 !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  padding: 8px !important;
}

.icon-btn:hover {
  color: white !important;
}

/* ──── Compact User Avatar Menu ──── */
.user-avatar-menu {
  position: relative !important;
}

.user-avatar-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 24px !important;
  padding: 5px 12px 5px 5px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  color: white !important;
}

.user-avatar-btn:hover {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.22) !important;
}

.user-avatar-circle {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e53935, #ff6d00) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  color: white !important;
  flex-shrink: 0 !important;
}

.user-avatar-label {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: white !important;
  max-width: 110px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.user-rank-badge {
  font-size: 0.9rem !important;
  line-height: 1 !important;
}

.user-dropdown {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 220px !important;
  background: #1a1d26 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 12px !important;
  padding: 8px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6) !important;
  z-index: 9999 !important;
}

.user-dropdown.open {
  display: block !important;
}

.user-dropdown-header {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  padding: 10px 12px 10px !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  margin-bottom: 6px !important;
}

.user-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 9px 12px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  color: #d1d5db !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  text-align: left !important;
  transition: var(--transition) !important;
}

.user-dropdown-item:hover {
  background: rgba(255,255,255,0.07) !important;
  color: white !important;
}

.user-dropdown-item.danger {
  color: #ff5252 !important;
}

.user-dropdown-item.danger:hover {
  background: rgba(255,82,82,0.12) !important;
}

/* Symmetrical Navbar Auth Action Buttons */
.nav-btn-auth {
  height: 38px !important;
  padding: 0 16px !important;
  border-radius: 9px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  box-sizing: border-box !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.nav-btn-login {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.nav-btn-login:hover {
  background: rgba(229, 57, 53, 0.15) !important;
  border-color: #e53935 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.nav-btn-register {
  background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(229, 57, 53, 0.35) !important;
}

.nav-btn-register:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
  box-shadow: 0 5px 16px rgba(229, 57, 53, 0.55) !important;
  transform: translateY(-1px) !important;
}

.nav-search-btn {
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  font-size: 1.05rem !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.nav-search-btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.btn-auth {
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: none !important;
  line-height: 1 !important;
  height: 38px !important;
  box-sizing: border-box !important;
}

.btn-auth:hover {
  border-color: #e53935 !important;
  background: rgba(229, 57, 53, 0.15) !important;
  color: #ffffff !important;
}

/* Main Container Layout */
.main-wrapper {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 32px 24px !important;
}

/* Carbon Hero Section */
.hero-card {
  position: relative !important;
  background: 
    linear-gradient(90deg, rgba(11, 13, 18, 0.96) 0%, rgba(11, 13, 18, 0.82) 45%, rgba(11, 13, 18, 0.25) 85%, rgba(11, 13, 18, 0.35) 100%),
    url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat !important;
  border-radius: 18px !important;
  padding: 0 !important;
  margin-bottom: 32px !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
  min-height: 380px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hero-title-big {
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  max-width: 600px !important;
  color: white !important;
}

.hero-subtitle {
  font-size: 1.1rem !important;
  color: #9a9ea9 !important;
  margin-bottom: 28px !important;
  max-width: 540px !important;
}

.btn-hero-red {
  background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  padding: 0 20px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 3px 12px rgba(229, 57, 53, 0.35) !important;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: fit-content !important;
  line-height: 1 !important;
  height: 38px !important;
  box-sizing: border-box !important;
}

.btn-hero-red:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 18px rgba(229, 57, 53, 0.5) !important;
}

/* Zero-Flash Instant Route Display Rules */
html.route-contact #heroSection,
html.route-contact #categoryPillsBar,
html.route-contact #searchBarBox,
html.route-contact #mainArticlesSection,
html.route-contact #articlesGrid,
html.route-contact #articlesPaginationBox,
html.route-contact #forumView,
html.route-contact #articleDetailView,
html.route-contact #festivalsView,
html.route-contact #garagesView,
html.route-contact #userGarageView {
  display: none !important;
}
html.route-contact #contactView {
  display: block !important;
}

html.route-forum #heroSection,
html.route-forum #categoryPillsBar,
html.route-forum #searchBarBox,
html.route-forum #mainArticlesSection,
html.route-forum #articlesGrid,
html.route-forum #articlesPaginationBox,
html.route-forum #contactView,
html.route-forum #articleDetailView,
html.route-forum #festivalsView,
html.route-forum #roadsideView,
html.route-forum #garagesView,
html.route-forum #userGarageView {
  display: none !important;
}
html.route-forum #forumView {
  display: block !important;
}

html.route-garages #heroSection,
html.route-garages #categoryPillsBar,
html.route-garages #searchBarBox,
html.route-garages #mainArticlesSection,
html.route-garages #articlesGrid,
html.route-garages #articlesPaginationBox,
html.route-garages #contactView,
html.route-garages #forumView,
html.route-garages #articleDetailView,
html.route-garages #festivalsView,
html.route-garages #roadsideView {
  display: none !important;
}
html.route-garages #garagesView {
  display: block !important;
}

html.route-festivals #heroSection,
html.route-festivals #categoryPillsBar,
html.route-festivals #searchBarBox,
html.route-festivals #mainArticlesSection,
html.route-festivals #articlesGrid,
html.route-festivals #articlesPaginationBox,
html.route-festivals #contactView,
html.route-festivals #forumView,
html.route-festivals #articleDetailView,
html.route-festivals #garagesView,
html.route-festivals #roadsideView,
html.route-festivals #userGarageView {
  display: none !important;
}
html.route-festivals #festivalsView {
  display: block !important;
}

html.route-roadside #heroSection,
html.route-roadside #categoryPillsBar,
html.route-roadside #searchBarBox,
html.route-roadside #mainArticlesSection,
html.route-roadside #articlesGrid,
html.route-roadside #articlesPaginationBox,
html.route-roadside #contactView,
html.route-roadside #forumView,
html.route-roadside #articleDetailView,
html.route-roadside #festivalsView,
html.route-roadside #garagesView,
html.route-roadside #userGarageView {
  display: none !important;
}
html.route-roadside #roadsideView {
  display: block !important;
}

html.route-article #heroSection,
html.route-article #categoryPillsBar,
html.route-article #searchBarBox,
html.route-article #mainArticlesSection,
html.route-article #articlesGrid,
html.route-article #articlesPaginationBox,
html.route-article #contactView,
html.route-article #forumView,
html.route-article #festivalsView,
html.route-article #roadsideView,
html.route-article #garagesView,
html.route-article #userGarageView {
  display: none !important;
}
html.route-article #articleDetailView {
  display: block !important;
}

html.route-admin #heroSection,
html.route-admin #categoryPillsBar,
html.route-admin #searchBarBox,
html.route-admin #mainArticlesSection,
html.route-admin #articlesGrid,
html.route-admin #articlesPaginationBox,
html.route-admin #contactView,
html.route-admin #forumView,
html.route-admin #festivalsView,
html.route-admin #garagesView,
html.route-admin #userGarageView {
  display: none !important;
}

.hero-indicators {
  display: flex !important;
  gap: 8px !important;
  margin-top: 36px !important;
}

.indicator-dot {
  width: 24px !important;
  height: 4px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  cursor: pointer !important;
}

.indicator-dot.active {
  background: #e53935 !important;
  width: 32px !important;
}

/* Category Filter Pills Container */
.category-pills-bar {
  background: #1a1d26 !important;
  border-radius: 12px !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 32px !important;
  overflow-x: auto !important;
  border: 1px solid var(--border-color) !important;
}

.pill-item {
  background: transparent !important;
  border: 1px solid transparent !important;
  color: #9a9ea9 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: var(--transition) !important;
}

.pill-item:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.pill-item.active {
  background: rgba(229, 57, 53, 0.12) !important;
  border-color: #e53935 !important;
  color: white !important;
}

/* 4-Column Articles Grid (Fixed layout) */
.articles-grid-4col {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-bottom: 48px !important;
}

.card-item {
  background: #16181f !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid var(--border-color) !important;
  transition: var(--transition) !important;
  display: flex !important;
  flex-direction: column !important;
  cursor: pointer !important;
}

.card-item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background: #1e212b !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.card-thumb-box {
  position: relative !important;
  width: 100% !important;
  height: 170px !important;
  overflow: hidden !important;
}

.card-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.card-item:hover .card-thumb-img {
  transform: scale(1.06) !important;
}

/* Top-Left Category Badge (Dark Pill) */
.badge-category-dark {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background: rgba(13, 14, 18, 0.92) !important;
  color: #ffffff !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.card-content {
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.card-title-text {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: white !important;
  margin-bottom: 14px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 40px !important;
}

.card-footer-author {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.8rem !important;
}

.author-circle-img {
  width: 26px !important;
  height: 26px !important;
  border-radius: 9999px !important;
  background: linear-gradient(135deg, #e53935, #ff6d00) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  color: white !important;
  font-weight: 700 !important;
}

.author-name-text {
  font-weight: 600 !important;
  color: #ffffff !important;
}

.author-role-red {
  color: #e53935 !important;
  font-weight: 600 !important;
  margin-left: 4px !important;
}

/* Article Detail View */
.article-detail-view {
  margin-bottom: 48px !important;
}

.detail-header {
  margin-bottom: 24px !important;
}

.detail-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  line-height: 1.25 !important;
}

.detail-cover-img {
  width: 100% !important;
  max-height: 450px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  margin: 20px 0 32px 0 !important;
}

.detail-content {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: #ffffff !important;
}

.detail-content p {
  margin-bottom: 20px !important;
}

.responsive-embed {
  position: relative !important;
  width: 100% !important;
  margin: 28px 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.youtube-embed {
  padding-bottom: 56.25% !important;
  height: 0 !important;
}

.youtube-embed iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.instagram-embed {
  max-width: 540px !important;
  margin: 28px auto !important;
  height: 600px !important;
}

.instagram-embed iframe {
  width: 100% !important;
  height: 100% !important;
}

/* Modals */
.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 200000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: var(--transition) !important;
}

.modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 200000 !important;
}

.modal-overlay.modal-top.active,
#iconPickerModal.active {
  z-index: 200100 !important;
}

.modal-card {
  background: #191c24 !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 18px !important;
  width: 100% !important;
  max-width: 700px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  padding: 32px !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.modal-card::-webkit-scrollbar {
  width: 6px;
}
.modal-card::-webkit-scrollbar-track {
  background: transparent;
}
.modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
}
.modal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 57, 53, 0.8);
}

.modal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.modal-close {
  background: transparent !important;
  border: none !important;
  color: #9a9ea9 !important;
  font-size: 1.4rem !important;
  cursor: pointer !important;
}

.form-group {
  margin-bottom: 18px !important;
}

.form-label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  color: #ffffff !important;
}

.form-input, .form-select, .form-textarea {
  width: 100% !important;
  background: #0f1116 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-family: var(--font-family) !important;
  font-size: 0.95rem !important;
  box-sizing: border-box !important;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #9a9ea9 !important;
  opacity: 0.8 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #0f1116 inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none !important;
  border-color: #e53935 !important;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.25) !important;
}

.form-textarea {
  min-height: 160px !important;
  resize: vertical !important;
}

/* Modern Professional Footer */
.footer {
  background: linear-gradient(180deg, #0d0f15 0%, #07080c 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 56px 0 24px 0 !important;
  margin-top: 70px !important;
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), rgba(229, 57, 53, 0.4), transparent);
}

.footer-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.65fr 1.1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-two-col-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-social-btn {
  height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

/* Footer Telegram Minimal Live Badge */
.footer-telegram-badge {
  height: 38px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16) 0%, rgba(2, 132, 199, 0.06) 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.32) !important;
  border-radius: 8px !important;
  padding: 0 11px 0 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.footer-telegram-badge:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.26) 0%, rgba(2, 132, 199, 0.14) 100%) !important;
  border-color: #38bdf8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35) !important;
}

.footer-contact-btn {
  height: 38px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  padding: 0 14px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.footer-contact-btn:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: #64748b;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-two-col-links {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 10px;
  }
}

/* Bike Detail Modal Responsive Grid */
.bike-detail-top-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.bike-detail-gallery-main {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0b10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .bike-detail-top-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
  }
  .bike-detail-gallery-main {
    height: 220px !important;
  }
}

/* Responsive Grid */
@media (max-width: 1100px) {
  .articles-grid-4col {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .articles-grid-4col {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .hero-card {
    padding: 36px 24px !important;
  }
  .hero-title-big {
    font-size: 2rem !important;
  }
  .nav-links {
    display: none !important;
  }
}

/* User Profile Modal Tabs & Skin Cards */
.profile-tab-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #94a3b8 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}

.profile-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.profile-tab-btn.active {
  background: rgba(229, 57, 53, 0.15) !important;
  border-color: #e53935 !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px rgba(229, 57, 53, 0.25) !important;
}

.profile-tab-btn i {
  font-size: 0.9rem !important;
}

.skin-preset-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  padding: 14px 10px !important;
  text-align: center !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
  color: #cbd5e1 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}

.skin-preset-card:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.skin-preset-card.active {
  background: rgba(229, 57, 53, 0.15) !important;
  border-color: #e53935 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(229, 57, 53, 0.3) !important;
}

/* ==========================================================================
   ZENGİN GÖRSEL MAKALE EDİTÖRÜ (WYSIWYG & VISUAL FORMATTING STUDIO)
   ========================================================================== */
.rich-editor-wrapper {
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.rich-editor-wrapper:focus-within {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.rich-toolbar {
  background: #151722;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.rich-toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 4px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-right: 4px;
}

.rich-toolbar-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.rich-toolbar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.rich-toolbar-btn.active {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.rich-toolbar-select {
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.rich-editor-content {
  min-height: 280px;
  max-height: 520px;
  overflow-y: auto;
  padding: 16px;
  color: #f8fafc;
  font-size: 0.92rem;
  line-height: 1.7;
  outline: none;
  scrollbar-width: thin;
}

.rich-editor-content:empty:before {
  content: attr(placeholder);
  color: #64748b;
  font-style: italic;
  pointer-events: none;
}

.rich-editor-content h2, 
.article-detail-content h2, 
#prevContent h2 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 20px 0 10px 0;
  border-left: 4px solid #ef4444;
  padding-left: 10px;
}

.rich-editor-content h3, 
.article-detail-content h3, 
#prevContent h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 16px 0 8px 0;
  color: #38bdf8;
}

.rich-editor-content h4, 
.article-detail-content h4, 
#prevContent h4 {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 6px 0;
}

.rich-editor-content p, 
.article-detail-content p, 
#prevContent p {
  margin-bottom: 12px;
}

.rich-editor-content ul, 
.rich-editor-content ol, 
.article-detail-content ul, 
.article-detail-content ol, 
#prevContent ul, 
#prevContent ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.rich-editor-content li, 
.article-detail-content li, 
#prevContent li {
  margin-bottom: 4px;
}

.rich-editor-content blockquote, 
.article-detail-content blockquote, 
#prevContent blockquote {
  border-left: 4px solid #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #cbd5e1;
}

.rich-editor-content img, 
.article-detail-content img, 
#prevContent img {
  max-width: 100%;
  border-radius: 8px;
  margin: 14px 0;
  display: block;
}

/* Callout Box Styles */
.article-callout {
  display: block;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 18px 0;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: left;
}

.article-callout h4 {
  margin: 0 0 8px 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-callout p {
  margin: 0 0 6px 0;
  line-height: 1.6;
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-callout.alert-info,
.article-callout.tip {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-left: 4px solid #38bdf8;
  color: #e2e8f0;
}

.article-callout.alert-info i,
.article-callout.tip i {
  color: #38bdf8;
  font-size: 1.1rem;
}

.article-callout.alert-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-left: 4px solid #22c55e;
  color: #e2e8f0;
}

.article-callout.alert-success i {
  color: #22c55e;
  font-size: 1.1rem;
}

.article-callout.alert-warning,
.article-callout.warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-left: 4px solid #f59e0b;
  color: #e2e8f0;
}

.article-callout.alert-warning i,
.article-callout.warning i {
  color: #f59e0b;
  font-size: 1.1rem;
}

.article-callout.alert-danger,
.article-callout.danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-left: 4px solid #ef4444;
  color: #e2e8f0;
}

.article-callout.alert-danger i,
.article-callout.danger i {
  color: #ef4444;
  font-size: 1.1rem;
}

/* Article Technical Specs Table */
.article-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.article-spec-table th {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  color: #e2e8f0;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-spec-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.article-spec-table tr:last-child td {
  border-bottom: none;
}

/* Editor Image Dropzone & Upload */
.editor-dropzone {
  border: 2px dashed rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.03);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.editor-dropzone:hover, 
.editor-dropzone.dragover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  transform: scale(1.01);
}

.editor-img-preview-card {
  background: #0d0e14;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.editor-img-preview-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   EXTRACTED LAYOUT & COMPONENT STYLES (Cleaned for High-Speed SEO & Caching)
   ========================================================================== */

/* User Profile Modal Tabs & Skin Cards */
        .profile-tab-btn {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #94a3b8 !important;
            padding: 8px 16px !important;
            border-radius: 8px !important;
            font-size: 0.82rem !important;
            font-weight: 600 !important;
            font-family: inherit !important;
            cursor: pointer !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            transition: all 0.2s ease !important;
            outline: none !important;
        }

        .profile-tab-btn:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
            border-color: rgba(255, 255, 255, 0.2) !important;
        }

        .profile-tab-btn.active {
            background: rgba(229, 57, 53, 0.15) !important;
            border-color: #e53935 !important;
            color: #ffffff !important;
            box-shadow: 0 0 14px rgba(229, 57, 53, 0.25) !important;
        }

        .profile-tab-btn i {
            font-size: 0.9rem !important;
        }

        .skin-preset-card {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            padding: 14px 10px !important;
            text-align: center !important;
            cursor: pointer !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 8px !important;
            transition: all 0.2s ease !important;
            color: #cbd5e1 !important;
            font-size: 0.8rem !important;
            font-weight: 600 !important;
        }

        .skin-preset-card:hover {
            background: rgba(255, 255, 255, 0.07) !important;
            border-color: rgba(255, 255, 255, 0.2) !important;
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        .skin-preset-card.active {
            background: rgba(229, 57, 53, 0.15) !important;
            border-color: #e53935 !important;
            color: #ffffff !important;
            box-shadow: 0 0 16px rgba(229, 57, 53, 0.3) !important;
        }

        /* Sticker Sizes for Screen Preview & Responsive Canvas */
        .qr-white-card {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            margin: 0 auto !important;
            aspect-ratio: 1 / 1 !important;
            box-sizing: border-box !important;
        }

        .qr-canvas-holder {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            aspect-ratio: 1 / 1 !important;
            position: relative !important;
        }

        .qr-canvas-holder canvas {
            display: block !important;
            margin: 0 auto !important;
            aspect-ratio: 1 / 1 !important;
            object-fit: contain !important;
        }

        /* QRCode.js generates both <canvas> and <img>. Hide duplicate <img> when canvas is active */
        .qr-canvas-holder canvas~img,
        .qr-canvas-holder canvas+img {
            display: none !important;
        }

        /* Show img only when no canvas exists (e.g. Sheet mode clone or fallback) */
        .qr-canvas-holder>img:only-child {
            display: block !important;
            margin: 0 auto !important;
            aspect-ratio: 1 / 1 !important;
            object-fit: contain !important;
        }

        #riderQrPrintArea {
            box-sizing: border-box !important;
            overflow: visible !important;
            transition: all 0.2s ease;
        }

        /* Light Theme Styles */
        .sticker-card.sticker-theme-light {
            background: #ffffff !important;
            color: #0f172a !important;
        }

        .sticker-card.sticker-theme-light #qrCardRiderName {
            color: #0f172a !important;
        }

        .sticker-card.sticker-theme-light #qrCardBikeModel {
            color: #475569 !important;
        }

        .sticker-card.sticker-theme-light .sticker-notice {
            background: rgba(15, 23, 42, 0.06) !important;
            border-color: rgba(15, 23, 42, 0.14) !important;
        }

        .sticker-card.sticker-theme-light .notice-title {
            color: #0f172a !important;
            font-weight: 800 !important;
        }

        .sticker-card.sticker-theme-light .notice-sub {
            color: #475569 !important;
            font-weight: 600 !important;
        }

        /* 3x3 cm Tam Kare Badge (True 1:1 Square) */
        #riderQrPrintArea.size-square3 {
            width: 260px !important;
            height: auto !important;
            min-height: 260px !important;
            padding: 8px 10px 10px 10px !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            box-sizing: border-box !important;
        }

        #riderQrPrintArea.size-square3 .sticker-header {
            padding-bottom: 3px !important;
            margin-bottom: 3px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        }

        #riderQrPrintArea.size-square3 .sticker-header .brand-title {
            font-size: 0.54rem !important;
            letter-spacing: 0.2px !important;
        }

        #riderQrPrintArea.size-square3 .sticker-header .header-brand-icon {
            font-size: 0.65rem !important;
        }

        #riderQrPrintArea.size-square3 .sticker-header .header-badge {
            font-size: 0.48rem !important;
            padding: 1px 4px !important;
        }

        #riderQrPrintArea.size-square3 #qrCardBloodBadge {
            padding: 1px 8px !important;
            margin-bottom: 1px !important;
        }

        #riderQrPrintArea.size-square3 #qrCardBloodType {
            font-size: 1.05rem !important;
        }

        #riderQrPrintArea.size-square3 #qrCardRiderName {
            font-size: 0.82rem !important;
            margin-bottom: 0px !important;
            line-height: 1.1 !important;
        }

        #riderQrPrintArea.size-square3 #qrCardBikeModel {
            font-size: 0.62rem !important;
            margin-bottom: 3px !important;
            line-height: 1.1 !important;
        }

        #riderQrPrintArea.size-square3 .qr-box-wrapper {
            margin-bottom: 3px !important;
        }

        #riderQrPrintArea.size-square3 .qr-white-card {
            padding: 2px !important;
            width: 86px !important;
            height: 86px !important;
        }

        #riderQrPrintArea.size-square3 .qr-canvas-holder canvas,
        #riderQrPrintArea.size-square3 .qr-canvas-holder img {
            width: 80px !important;
            height: 80px !important;
        }

        #riderQrPrintArea.size-square3 .sticker-notice {
            padding: 3px 6px !important;
            margin-top: 2px !important;
        }

        #riderQrPrintArea.size-square3 .notice-title {
            font-size: 0.58rem !important;
            line-height: 1.2 !important;
        }

        #riderQrPrintArea.size-square3 .notice-sub {
            font-size: 0.48rem !important;
            line-height: 1.1 !important;
        }

        /* 4 cm Mini Kask */
        #riderQrPrintArea.size-mini {
            width: 270px !important;
            height: auto !important;
            padding: 9px 12px 12px 12px !important;
        }

        #riderQrPrintArea.size-mini .sticker-header {
            padding-top: 0 !important;
            padding-bottom: 4px !important;
            margin-bottom: 6px !important;
        }

        #riderQrPrintArea.size-mini #qrCardBloodType {
            font-size: 1.25rem !important;
        }

        #riderQrPrintArea.size-mini #qrCardRiderName {
            font-size: 0.95rem !important;
        }

        #riderQrPrintArea.size-mini #qrCardBikeModel {
            font-size: 0.72rem !important;
        }

        #riderQrPrintArea.size-mini .qr-white-card {
            padding: 5px !important;
            width: 120px !important;
            height: 120px !important;
        }

        #riderQrPrintArea.size-mini .qr-canvas-holder canvas,
        #riderQrPrintArea.size-mini .qr-canvas-holder img {
            width: 106px !important;
            height: 106px !important;
        }

        /* 5.5 cm Standart */
        #riderQrPrintArea.size-standard {
            width: 320px !important;
            height: auto !important;
            padding: 10px 14px 14px 14px !important;
        }

        #riderQrPrintArea.size-standard .sticker-header {
            padding-top: 0 !important;
            padding-bottom: 5px !important;
            margin-bottom: 7px !important;
        }

        #riderQrPrintArea.size-standard .qr-white-card {
            padding: 6px !important;
            width: 154px !important;
            height: 154px !important;
        }

        #riderQrPrintArea.size-standard .qr-canvas-holder canvas,
        #riderQrPrintArea.size-standard .qr-canvas-holder img {
            width: 138px !important;
            height: 138px !important;
        }

        /* 8.5 cm Ruhsat Kartı */
        #riderQrPrintArea.size-card {
            width: 380px !important;
            height: auto !important;
            padding: 12px 16px 16px 16px !important;
        }

        #riderQrPrintArea.size-card .sticker-header {
            padding-top: 0 !important;
            padding-bottom: 6px !important;
            margin-bottom: 8px !important;
        }

        #riderQrPrintArea.size-card .qr-white-card {
            padding: 7px !important;
            width: 160px !important;
            height: 160px !important;
        }

        #riderQrPrintArea.size-card .qr-canvas-holder canvas,
        #riderQrPrintArea.size-card .qr-canvas-holder img {
            width: 142px !important;
            height: 142px !important;
        }

        /* Multi-Sheet Screen Preview Styling (No Horizontal Scrollbar) */
        body.print-mode-sheet #riderQrModal .modal-card {
            max-width: 640px !important;
        }

        #riderQrMultiSheet {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            max-height: 430px;
            overflow-y: auto;
            overflow-x: hidden !important;
            padding: 4px;
            box-sizing: border-box !important;
            width: 100% !important;
        }

        #riderQrMultiSheet .sticker-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 10px 8px !important;
            border-radius: 12px !important;
        }

        #riderQrMultiSheet .sticker-card .sticker-header {
            padding-bottom: 4px !important;
            margin-bottom: 5px !important;
        }

        #riderQrMultiSheet .sticker-card #qrCardBloodBadge {
            padding: 2px 10px !important;
            margin-bottom: 4px !important;
        }

        #riderQrMultiSheet .sticker-card #qrCardBloodType {
            font-size: 1.15rem !important;
        }

        #riderQrMultiSheet .sticker-card #qrCardRiderName {
            font-size: 0.85rem !important;
            margin-bottom: 1px !important;
        }

        #riderQrMultiSheet .sticker-card #qrCardBikeModel {
            font-size: 0.65rem !important;
            margin-bottom: 4px !important;
        }

        #riderQrMultiSheet .sticker-card .qr-white-card {
            padding: 4px !important;
            width: 100px !important;
            height: 100px !important;
            margin-bottom: 4px !important;
        }

        #riderQrMultiSheet .sticker-card .qr-canvas-holder img,
        #riderQrMultiSheet .sticker-card .qr-canvas-holder canvas {
            width: 90px !important;
            height: 90px !important;
        }

        #riderQrMultiSheet .sticker-card .sticker-notice {
            padding: 3px 6px !important;
        }

        #riderQrMultiSheet .sticker-card .notice-title {
            font-size: 0.6rem !important;
        }

        #riderQrMultiSheet .sticker-card .notice-sub {
            font-size: 0.5rem !important;
        }

        @media print {
            body {
                background: #ffffff !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            body * {
                visibility: hidden !important;
            }

            #riderQrPrintArea,
            #riderQrPrintArea *,
            #riderQrMultiSheet,
            #riderQrMultiSheet * {
                visibility: visible !important;
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
            }

            /* Single Print Mode */
            body:not(.print-mode-sheet) #riderQrPrintArea {
                position: fixed !important;
                left: 50% !important;
                top: 30px !important;
                transform: translateX(-50%) !important;
                box-shadow: none !important;
            }

            body:not(.print-mode-sheet) #riderQrPrintArea.size-square3 {
                width: 3.2cm !important;
                height: 3.2cm !important;
                max-width: 3.2cm !important;
                padding: 2px 2px !important;
            }

            body:not(.print-mode-sheet) #riderQrPrintArea.size-mini {
                width: 4.2cm !important;
                height: auto !important;
                max-width: 4.2cm !important;
                padding: 6px 5px !important;
            }

            body:not(.print-mode-sheet) #riderQrPrintArea.size-standard {
                width: 5.6cm !important;
                height: auto !important;
                max-width: 5.6cm !important;
                padding: 12px 10px !important;
            }

            body:not(.print-mode-sheet) #riderQrPrintArea.size-card {
                width: 8.5cm !important;
                height: auto !important;
                max-width: 8.5cm !important;
                padding: 16px 14px !important;
            }

            body:not(.print-mode-sheet) #riderQrMultiSheet {
                display: none !important;
            }

            /* Sheet Print Mode (A4 6-Sticker Grid) */
            body.print-mode-sheet #riderQrPrintArea {
                display: none !important;
            }

            body.print-mode-sheet #riderQrMultiSheet {
                position: fixed !important;
                left: 0 !important;
                top: 0 !important;
                width: 100% !important;
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 8mm !important;
                padding: 10mm !important;
                max-height: none !important;
                overflow: visible !important;
            }

            body.print-mode-sheet #riderQrMultiSheet .sticker-card {
                width: 8.5cm !important;
                max-width: 8.5cm !important;
                padding: 14px 12px !important;
                box-shadow: none !important;
            }

            body.print-mode-sheet #riderQrMultiSheet .sticker-card .qr-white-card {
                width: 130px !important;
                height: 130px !important;
            }

            body.print-mode-sheet #riderQrMultiSheet .sticker-card .qr-canvas-holder img {
                width: 120px !important;
                height: 120px !important;
            }

            .no-print {
                display: none !important;
            }
        }

        :root {
            --bg-dark: #0d0e12;
            --bg-card: #16181f;
            --bg-card-hover: #1e212b;
            --bg-pill: #1a1d26;
            --accent-red: #e53935;
            --accent-red-hover: #d32f2f;
            --text-main: #ffffff;
            --text-muted: #9a9ea9;
            --border-color: rgba(255, 255, 255, 0.1);
            --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box !important;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #0d0e12 !important;
            color: #ffffff !important;
            font-family: var(--font-family) !important;
            line-height: 1.5;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Emergency Alert Bar */
        .emergency-banner {
            background: linear-gradient(90deg, #d32f2f, #b71c1c) !important;
            color: #ffffff !important;
            padding: 8px 20px !important;
            font-size: 0.85rem !important;
            font-weight: 600 !important;
            display: none;
            align-items: center !important;
            justify-content: space-between !important;
        }

        .emergency-content {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            max-width: 1280px !important;
            margin: 0 auto !important;
            width: 100% !important;
        }

        /* Main Container Layout */

        .btn-auth {
            color: #ffffff !important;
            font-size: 0.85rem !important;
            font-weight: 600 !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            padding: 8px 16px !important;
            border-radius: 6px !important;
            background: rgba(255, 255, 255, 0.03) !important;
            cursor: pointer !important;
        }

        .btn-auth:hover {
            border-color: #e53935 !important;
            background: rgba(229, 57, 53, 0.12) !important;
        }

        /* Main Container Layout */
        .main-wrapper {
            max-width: 1280px !important;
            margin: 0 auto !important;
            padding: 32px 24px !important;
        }

        /* Dynamic Carbon Hero Slider */
        .hero-card {
            position: relative !important;
            background:
                linear-gradient(90deg, rgba(11, 13, 18, 0.96) 0%, rgba(11, 13, 18, 0.82) 45%, rgba(11, 13, 18, 0.25) 85%, rgba(11, 13, 18, 0.35) 100%),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat !important;
            border-radius: 18px !important;
            padding: 0 !important;
            margin-bottom: 32px !important;
            border: 1px solid var(--border-color) !important;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
            min-height: 380px !important;
            overflow: hidden !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .hero-slides-wrapper {
            position: relative;
            width: 100%;
            min-height: 380px;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            padding: 48px 48px 74px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            background: transparent !important;
            transform: translateX(20px);
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
            pointer-events: none;
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            pointer-events: auto;
            z-index: 2;
        }

        .hero-slide-bg {
            display: none !important;
        }

        .hero-slide-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 12px;
            width: fit-content;
            background: rgba(229, 57, 53, 0.15);
            color: #ff5252;
            border: 1px solid rgba(229, 57, 53, 0.35);
        }

        .hero-title-big {
            font-size: 2.5rem !important;
            font-weight: 900 !important;
            line-height: 1.15 !important;
            margin-bottom: 12px !important;
            text-transform: uppercase !important;
            max-width: 650px !important;
            color: white !important;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 1.05rem !important;
            color: #94a3b8 !important;
            margin-bottom: 24px !important;
            max-width: 580px !important;
            line-height: 1.55;
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.06) !important;
            color: #cbd5e1 !important;
            font-weight: 700 !important;
            font-size: 0.82rem !important;
            height: 38px !important;
            padding: 0 18px !important;
            border-radius: 8px !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            cursor: pointer !important;
            text-transform: none !important;
            letter-spacing: 0.01em !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 7px !important;
            width: fit-content !important;
            box-sizing: border-box !important;
            line-height: 1 !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
            vertical-align: middle !important;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.12) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08) !important;
            transform: translateY(-1px) !important;
        }

        /* Slider Controls (Indicators & Arrows) */
        .hero-slider-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: absolute;
            bottom: 24px;
            left: 56px;
            right: 56px;
            z-index: 10;
        }

        .hero-slider-indicators {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .hero-slider-indicator {
            width: 38px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .hero-slider-indicator.active {
            width: 54px;
            background: rgba(255, 255, 255, 0.25);
        }

        .indicator-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #e53935 0%, #ff5252 100%);
            border-radius: 2px;
        }

        .hero-slider-indicator.active .indicator-progress {
            width: 100%;
            transition: width 5s linear;
        }

        .hero-slider-arrows {
            display: flex;
            gap: 8px;
        }

        .hero-slider-arrow {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(13, 14, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            backdrop-filter: blur(8px);
        }

        .hero-slider-arrow:hover {
            background: #e53935;
            border-color: #e53935;
            color: white;
            transform: scale(1.08);
        }

        .btn-hero-red {
            background: linear-gradient(135deg, #e53935 0%, #c62828 100%) !important;
            color: #ffffff !important;
            font-weight: 700 !important;
            font-size: 0.82rem !important;
            height: 38px !important;
            padding: 0 20px !important;
            border-radius: 8px !important;
            border: none !important;
            cursor: pointer !important;
            text-transform: none !important;
            letter-spacing: 0.01em !important;
            box-shadow: 0 3px 12px rgba(229, 57, 53, 0.35) !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 7px !important;
            width: fit-content !important;
            box-sizing: border-box !important;
            line-height: 1 !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
            vertical-align: middle !important;
        }

        .btn-hero-red:hover {
            background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
            box-shadow: 0 5px 18px rgba(229, 57, 53, 0.5) !important;
            transform: translateY(-1px) !important;
        }

        /* Category Filter Pills Container */
        .category-pills-bar {
            background: #1a1d26 !important;
            border-radius: 12px !important;
            padding: 8px !important;
            display: flex;
            align-items: center !important;
            gap: 8px !important;
            margin-bottom: 24px !important;
            overflow-x: auto !important;
            border: 1px solid var(--border-color) !important;
        }

        .pill-item {
            background: transparent !important;
            border: 1px solid transparent !important;
            color: #9a9ea9 !important;
            padding: 10px 22px !important;
            border-radius: 6px !important;
            font-size: 0.9rem !important;
            font-weight: 600 !important;
            cursor: pointer !important;
            white-space: nowrap !important;
        }

        .pill-item:hover {
            color: white !important;
            background: rgba(255, 255, 255, 0.04) !important;
        }

        .pill-item.active {
            background: rgba(229, 57, 53, 0.12) !important;
            border-color: #e53935 !important;
            color: white !important;
        }

        /* 4-COLUMN ARTICLES GRID */
        .articles-grid-4col {
            display: grid;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 20px !important;
            margin-bottom: 48px !important;
        }

        /* Dedicated Full-Page Article Mode State Isolation */
        body.viewing-article #heroSection,
        body.viewing-article #categoryPillsBar,
        body.viewing-article #searchBarBox,
        body.viewing-article #articlesGrid,
        body.viewing-article #forumView,
        body.viewing-article #contactView {
            display: none !important;
        }

        body.viewing-article #articleDetailView {
            display: block !important;
        }

        body:not(.viewing-article) #articleDetailView {
            display: none !important;
        }

        /* Dedicated Full-Page Forum Mode State Isolation */
        body.viewing-forum #heroSection,
        body.viewing-forum #categoryPillsBar,
        body.viewing-forum #searchBarBox,
        body.viewing-forum #articlesGrid,
        body.viewing-forum #articlesPaginationBox,
        body.viewing-forum #articleDetailView,
        body.viewing-forum #contactView,
        body.viewing-forum #festivalsView,
        body.viewing-forum #garagesView,
        body.viewing-forum #userGarageView,
        body.viewing-forum #roadsideView,
        body.viewing-forum #comparisonView {
            display: none !important;
        }

        body.viewing-forum #forumView {
            display: block !important;
        }

        body:not(.viewing-forum) #forumView {
            display: none !important;
        }

        /* Dedicated Full-Page Contact Mode State Isolation */
        body.viewing-contact #heroSection,
        body.viewing-contact #categoryPillsBar,
        body.viewing-contact #searchBarBox,
        body.viewing-contact #articlesGrid,
        body.viewing-contact #articlesPaginationBox,
        body.viewing-contact #articleDetailView,
        body.viewing-contact #forumView,
        body.viewing-contact #festivalsView,
        body.viewing-contact #garagesView,
        body.viewing-contact #userGarageView,
        body.viewing-contact #roadsideView,
        body.viewing-contact #comparisonView {
            display: none !important;
        }

        body.viewing-contact #contactView {
            display: block !important;
        }

        body:not(.viewing-contact) #contactView {
            display: none !important;
        }

        /* Dedicated Full-Page Festivals Mode State Isolation */
        body.viewing-festivals #heroSection,
        body.viewing-festivals #categoryPillsBar,
        body.viewing-festivals #searchBarBox,
        body.viewing-festivals #articlesGrid,
        body.viewing-festivals #articlesPaginationBox,
        body.viewing-festivals #articleDetailView,
        body.viewing-festivals #forumView,
        body.viewing-festivals #contactView,
        body.viewing-festivals #garagesView,
        body.viewing-festivals #userGarageView,
        body.viewing-festivals #roadsideView,
        body.viewing-festivals #comparisonView {
            display: none !important;
        }

        body.viewing-festivals #festivalsView {
            display: block !important;
        }

        body:not(.viewing-festivals) #festivalsView {
            display: none !important;
        }

        /* Dedicated Full-Page Garages & Single Rider Garage Mode State Isolation */
        body.viewing-garages #heroSection,
        body.viewing-garages #categoryPillsBar,
        body.viewing-garages #searchBarBox,
        body.viewing-garages #articlesGrid,
        body.viewing-garages #articlesPaginationBox,
        body.viewing-garages #articleDetailView,
        body.viewing-garages #forumView,
        body.viewing-garages #contactView,
        body.viewing-garages #festivalsView,
        body.viewing-garages #userGarageView,
        body.viewing-garages #roadsideView,
        body.viewing-garages #comparisonView,
        body.viewing-single-garage #heroSection,
        body.viewing-single-garage #categoryPillsBar,
        body.viewing-single-garage #searchBarBox,
        body.viewing-single-garage #articlesGrid,
        body.viewing-single-garage #articlesPaginationBox,
        body.viewing-single-garage #articleDetailView,
        body.viewing-single-garage #forumView,
        body.viewing-single-garage #contactView,
        body.viewing-single-garage #festivalsView,
        body.viewing-single-garage #garagesView,
        body.viewing-single-garage #roadsideView,
        body.viewing-single-garage #comparisonView {
            display: none !important;
        }

        body.viewing-garages #garagesView {
            display: block !important;
        }

        body.viewing-single-garage #userGarageView {
            display: block !important;
        }

        body:not(.viewing-garages) #garagesView {
            display: none !important;
        }

        body:not(.viewing-single-garage) #userGarageView {
            display: none !important;
        }

        /* Dedicated Full-Page Roadside & Transfer & SOS Mode State Isolation */
        body.viewing-roadside #heroSection,
        body.viewing-roadside #categoryPillsBar,
        body.viewing-roadside #searchBarBox,
        body.viewing-roadside #articlesGrid,
        body.viewing-roadside #articlesPaginationBox,
        body.viewing-roadside #articleDetailView,
        body.viewing-roadside #forumView,
        body.viewing-roadside #contactView,
        body.viewing-roadside #festivalsView,
        body.viewing-roadside #garagesView,
        body.viewing-roadside #userGarageView,
        body.viewing-roadside #comparisonView {
            display: none !important;
        }

        body.viewing-roadside #roadsideView {
            display: block !important;
        }

        body:not(.viewing-roadside) #roadsideView {
            display: none !important;
        }

        /* Dedicated Full-Page Comparison Mode State Isolation */
        body.viewing-comparison #heroSection,
        body.viewing-comparison #categoryPillsBar,
        body.viewing-comparison #searchBarBox,
        body.viewing-comparison #articlesGrid,
        body.viewing-comparison #articlesPaginationBox,
        body.viewing-comparison #articleDetailView,
        body.viewing-comparison #forumView,
        body.viewing-comparison #contactView,
        body.viewing-comparison #festivalsView,
        body.viewing-comparison #garagesView,
        body.viewing-comparison #userGarageView,
        body.viewing-comparison #roadsideView,
        html.route-comparison body #heroSection,
        html.route-comparison body #categoryPillsBar,
        html.route-comparison body #searchBarBox,
        html.route-comparison body #articlesGrid,
        html.route-comparison body #articlesPaginationBox,
        html.route-comparison body #articleDetailView,
        html.route-comparison body #forumView,
        html.route-comparison body #contactView,
        html.route-comparison body #festivalsView,
        html.route-comparison body #garagesView,
        html.route-comparison body #userGarageView,
        html.route-comparison body #roadsideView {
            display: none !important;
        }

        body.viewing-comparison #comparisonView,
        html.route-comparison body #comparisonView {
            display: block !important;
        }

        body:not(.viewing-comparison) #comparisonView {
            display: none !important;
        }

        .card-item {
            background: #16181f !important;
            border-radius: 12px !important;
            overflow: hidden !important;
            border: 1px solid var(--border-color) !important;
            transition: all 0.25s ease !important;
            display: flex !important;
            flex-direction: column !important;
            cursor: pointer !important;
        }

        .card-item:hover {
            transform: translateY(-4px) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            background: #1e212b !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        }

        .card-thumb-box {
            position: relative !important;
            width: 100% !important;
            height: 170px !important;
            overflow: hidden !important;
        }

        .card-thumb-img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .badge-category-dark {
            position: absolute !important;
            top: 10px !important;
            left: 10px !important;
            background: rgba(13, 14, 18, 0.92) !important;
            color: #ffffff !important;
            padding: 4px 10px !important;
            border-radius: 6px !important;
            font-size: 0.7rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
        }

        .card-content {
            padding: 16px !important;
            display: flex !important;
            flex-direction: column !important;
            flex: 1 !important;
        }

        .card-title-text {
            font-size: 0.95rem !important;
            font-weight: 700 !important;
            line-height: 1.35 !important;
            color: white !important;
            margin-bottom: 14px !important;
            display: -webkit-box !important;
            -webkit-line-clamp: 2 !important;
            line-clamp: 2 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
            min-height: 40px !important;
        }

        .card-footer-author {
            margin-top: auto !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            font-size: 0.8rem !important;
        }

        .author-circle-img {
            width: 26px !important;
            height: 26px !important;
            border-radius: 9999px !important;
            background: linear-gradient(135deg, #e53935, #ff6d00) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 0.7rem !important;
            color: white !important;
            font-weight: 700 !important;
        }

        .author-name-text {
            font-weight: 600 !important;
            color: #ffffff !important;
        }

        .author-role-red {
            color: #e53935 !important;
            font-weight: 600 !important;
            margin-left: 4px !important;
        }

        /* Dedicated Full-Page Article Reader Typography */
        .article-detail-view {
            animation: fadeInArticle 0.15s ease-out;
        }

        @keyframes fadeInArticle {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        #detailTitle {
            font-size: 1.35rem !important;
            font-weight: 700 !important;
            line-height: 1.4 !important;
            color: #ffffff !important;
            letter-spacing: -0.2px !important;
            margin-bottom: 18px !important;
        }

        .detail-content {
            color: #cbd5e1 !important;
            font-size: 0.94rem !important;
            line-height: 1.75 !important;
            letter-spacing: 0.01em !important;
        }

        .detail-content .lead {
            font-size: 0.98rem !important;
            line-height: 1.7 !important;
            color: #e2e8f0 !important;
            margin-bottom: 18px !important;
            font-weight: 500 !important;
        }

        .detail-content h2 {
            color: #ffffff !important;
            font-size: 1.15rem !important;
            font-weight: 700 !important;
            margin-top: 24px !important;
            margin-bottom: 10px !important;
            line-height: 1.35 !important;
            border-left: 3px solid #e53935 !important;
            padding-left: 10px !important;
        }

        .detail-content h3 {
            color: #f1f5f9 !important;
            font-size: 1.02rem !important;
            font-weight: 700 !important;
            margin-top: 18px !important;
            margin-bottom: 8px !important;
            line-height: 1.35 !important;
        }

        .detail-content p {
            margin-bottom: 14px !important;
        }

        .detail-content ul,
        .detail-content ol {
            padding-left: 22px !important;
            margin-bottom: 16px !important;
            font-size: 0.92rem !important;
        }

        .detail-content li {
            margin-bottom: 6px !important;
            line-height: 1.65 !important;
        }

        .detail-content blockquote {
            border-left: 3.5px solid #e53935 !important;
            background: rgba(229, 57, 53, 0.06) !important;
            padding: 14px 18px !important;
            border-radius: 0 8px 8px 0 !important;
            margin: 18px 0 !important;
            color: #f8fafc !important;
            font-style: italic !important;
            font-size: 0.95rem !important;
        }

        .article-callout-box {
            display: flex !important;
            align-items: flex-start !important;
            gap: 12px !important;
            background: rgba(229, 57, 53, 0.07) !important;
            border: 1px solid rgba(229, 57, 53, 0.3) !important;
            border-left: 3.5px solid #e53935 !important;
            padding: 12px 16px !important;
            border-radius: 8px !important;
            margin: 18px 0 !important;
            font-size: 0.9rem !important;
            line-height: 1.6 !important;
            color: #f1f5f9 !important;
        }

        .article-callout-box.tip {
            background: rgba(245, 158, 11, 0.07) !important;
            border: 1px solid rgba(245, 158, 11, 0.3) !important;
            border-left: 3.5px solid #f59e0b !important;
        }

        .article-callout-box i {
            font-size: 1.15rem !important;
            color: #e53935 !important;
            margin-top: 2px !important;
            flex-shrink: 0 !important;
        }

        .article-callout-box.tip i {
            color: #f59e0b !important;
        }

        .detail-content img {
            max-width: 100% !important;
            border-radius: 10px !important;
            margin: 18px 0 !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        }

        @media (max-width: 768px) {
            #relatedArticlesGrid {
                grid-template-columns: 1fr !important;
            }

            #detailTitle {
                font-size: 1.18rem !important;
                line-height: 1.35 !important;
            }

            .detail-content h2 {
                font-size: 1.08rem !important;
            }
        }

        /* ==========================================================================
           PROFESYONEL WORDPRESS / STRAPI STANDARTLARINDA ADMİN DASHBOARD (FULLSCREEN)
           ========================================================================== */
        .admin-dashboard-layout {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #0a0b0e;
            z-index: 99999;
            display: none;
            overflow: hidden;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body.viewing-admin #adminDashboardView,
        .admin-dashboard-layout.active {
            display: flex !important;
            z-index: 99999 !important;
        }

        .admin-sidebar {
            width: 240px !important;
            background: #0e1017 !important;
            border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
            display: flex !important;
            flex-direction: column !important;
            padding: 20px 14px !important;
            height: 100vh !important;
        }

        .admin-brand {
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            padding-bottom: 16px !important;
            margin-bottom: 16px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        }

        .admin-nav {
            display: flex !important;
            flex-direction: column !important;
            gap: 4px !important;
        }

        .admin-nav-item {
            background: transparent !important;
            border: none !important;
            color: #8b92a5 !important;
            padding: 10px 14px !important;
            border-radius: 6px !important;
            font-size: 0.85rem !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            text-align: left !important;
            transition: all 0.15s ease !important;
            width: 100% !important;
        }

        .admin-nav-item:hover {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.04) !important;
        }

        .admin-nav-item.active {
            background: rgba(229, 57, 53, 0.08) !important;
            border-left: 3px solid #e53935 !important;
            color: #ffffff !important;
            font-weight: 600 !important;
            border-radius: 0 6px 6px 0 !important;
        }

        .admin-main-viewport {
            flex: 1 !important;
            background: #090a0e !important;
            height: 100vh !important;
            overflow-y: auto !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .admin-top-header {
            background: #0e1017 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            padding: 14px 28px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
        }

        .admin-card {
            background: #11131c !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            border-radius: 10px !important;
            padding: 22px !important;
        }

        .admin-stat-card {
            background: #11131c !important;
            border: 1px solid rgba(255, 255, 255, 0.05) !important;
            border-radius: 10px !important;
            padding: 18px 20px !important;
            display: flex !important;
            align-items: center !important;
            gap: 14px !important;
        }

        .admin-stat-icon {
            width: 44px !important;
            height: 44px !important;
            border-radius: 8px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 1.2rem !important;
        }

        /* Admin Table Protection */
        .admin-table-responsive {
            width: 100% !important;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
            margin-top: 10px !important;
        }

        .admin-table-responsive table {
            min-width: 680px !important;
        }

        .admin-sidebar-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            z-index: 199999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .admin-sidebar-backdrop.active {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        .admin-sidebar-toggle-btn {
            display: none;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
        }

        .admin-sidebar-toggle-btn:hover {
            background: rgba(229, 57, 53, 0.2);
            border-color: rgba(229, 57, 53, 0.5);
            color: #ff5252;
        }

        .admin-sidebar-close-btn {
            display: none;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 1rem;
            cursor: pointer;
            margin-left: auto;
            padding: 5px 9px;
            border-radius: 6px;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
        }

        .admin-sidebar-close-btn:hover {
            color: #ff5252;
            background: rgba(229, 57, 53, 0.15);
            border-color: rgba(229, 57, 53, 0.3);
        }

        /* Responsive Breakpoints */
        @media (max-width: 1100px) {
            .editor-split-container {
                grid-template-columns: 1fr !important;
            }

            .articles-grid-4col {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 900px) {
            .admin-sidebar {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                bottom: 0 !important;
                z-index: 200000 !important;
                width: 275px !important;
                max-width: 85vw !important;
                transform: translateX(-100%) !important;
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
                box-shadow: 10px 0 40px rgba(0, 0, 0, 0.85) !important;
                overflow-y: auto !important;
            }

            .admin-sidebar.open {
                transform: translateX(0) !important;
            }

            .admin-sidebar-toggle-btn {
                display: inline-flex !important;
            }

            .admin-sidebar-close-btn {
                display: inline-flex !important;
            }

            .admin-top-header {
                padding: 12px 14px !important;
            }

            #adminSectionContent {
                padding: 14px 10px !important;
            }

            .admin-card {
                padding: 16px 12px !important;
            }

            #adminHeaderRoleBadge {
                display: none !important;
            }

            .admin-stat-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 540px) {
            .admin-stat-grid {
                grid-template-columns: 1fr !important;
            }

            .hide-on-mobile {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .articles-grid-4col {
                grid-template-columns: repeat(1, 1fr) !important;
            }

            .hero-card {
                padding: 0 !important;
            }

            .hero-slide {
                padding: 32px 24px 74px 24px !important;
            }

            .hero-title-big {
                font-size: 1.85rem !important;
            }

            .nav-links {
                display: none !important;
            }
        }

        /* Forum Topic Card Uniform Layout */
        .forum-topic-card {
            background: #16181f;
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
            padding: 14px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 16px;
            box-sizing: border-box;
            min-height: 80px;
        }

        .forum-topic-card:hover {
            border-color: rgba(229, 57, 53, 0.4);
            background: #1a1c26;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .forum-topic-card-main {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .forum-topic-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .forum-topic-card-title {
            color: #ffffff;
            font-size: 0.98rem;
            font-weight: 700;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.35;
            flex: 1;
            min-width: 0;
        }

        .forum-topic-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.76rem;
            color: #94a3b8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .forum-topic-card-stats {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .forum-topic-card {
                flex-direction: column;
                align-items: stretch;
                padding: 14px 16px;
                gap: 10px;
                min-height: 124px;
                height: auto;
            }

            .forum-topic-card-title {
                font-size: 0.94rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .forum-topic-card-meta {
                font-size: 0.72rem;
                gap: 6px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .forum-topic-card-stats {
                justify-content: flex-start;
                padding-top: 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                margin-top: 2px;
            }
        }

        /* ==========================================================================
           MOBİL & TABLET MENÜ VE ALT NAVİGASYON (HAMBURGER + DRAWER + BOTTOM BAR)
           ========================================================================== */
        .mobile-nav-toggle-btn {
            display: none;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #ffffff;
            font-size: 1.15rem;
            width: 38px;
            height: 38px;
            border-radius: 8px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .mobile-nav-toggle-btn:hover {
            background: rgba(229, 57, 53, 0.15);
            border-color: #e53935;
            color: #ff5252;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 320px;
            max-width: 86vw;
            background: #0e1017;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 9999;
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 10px 0 35px rgba(0, 0, 0, 0.8);
            overflow-y: auto;
        }

        .mobile-nav-drawer.active {
            transform: translateX(0);
        }

        .mobile-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: #12141d;
        }

        .mobile-drawer-close-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 1.1rem;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .mobile-drawer-close-btn:hover {
            color: #ffffff;
            border-color: #ff5252;
            background: rgba(229, 57, 53, 0.2);
        }

        .mobile-drawer-auth-box {
            padding: 14px 18px;
            background: #141620;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-drawer-nav {
            display: flex;
            flex-direction: column;
            padding: 12px 14px;
            gap: 4px;
            flex: 1;
        }

        .mobile-nav-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            border-radius: 8px;
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: all 0.15s ease;
            border: 1px solid transparent;
        }

        .mobile-nav-item i {
            font-size: 1.05rem;
            width: 20px;
            text-align: center;
            color: #94a3b8;
        }

        .mobile-nav-item:hover {
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.06);
        }

        .mobile-nav-item.active {
            background: rgba(229, 57, 53, 0.12);
            color: #ffffff;
            border-color: rgba(229, 57, 53, 0.35);
        }

        .mobile-nav-item.active i {
            color: #ff5252;
        }

        .mobile-nav-badge {
            margin-left: auto;
            background: rgba(229, 57, 53, 0.2);
            color: #ff5252;
            border: 1px solid rgba(229, 57, 53, 0.4);
            padding: 1px 7px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .mobile-drawer-footer {
            padding: 14px 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: #12141d;
        }

        /* Mobile Bottom Tab Bar */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(14, 16, 23, 0.95);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 990;
            padding: 0 4px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: space-around;
        }

        .mobile-bottom-nav-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: #94a3b8;
            text-decoration: none;
            background: transparent;
            border: none;
            font-size: 0.68rem;
            font-weight: 600;
            cursor: pointer;
            padding: 6px 0;
            transition: all 0.15s ease;
        }

        .mobile-bottom-nav-item i {
            font-size: 1.12rem;
            transition: transform 0.15s ease;
        }

        .mobile-bottom-nav-item.active {
            color: #ff5252;
        }

        .mobile-bottom-nav-item.active i {
            color: #ff5252;
            transform: translateY(-2px);
            filter: drop-shadow(0 0 6px rgba(229, 57, 53, 0.6));
        }

        /* Ultra-Pro Hero Telegram Live Badge */
        .hero-telegram-badge {
            height: 38px !important;
            box-sizing: border-box !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 9px !important;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.16) 0%, rgba(2, 132, 199, 0.06) 100%) !important;
            border: 1px solid rgba(56, 189, 248, 0.35) !important;
            border-radius: 8px !important;
            padding: 0 12px 0 8px !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3) !important;
            vertical-align: middle !important;
        }

        .hero-telegram-badge:hover {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.26) 0%, rgba(2, 132, 199, 0.15) 100%) !important;
            border-color: #38bdf8 !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35) !important;
        }

        .telegram-icon-pulse-wrapper {
            position: relative;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(42, 171, 238, 0.5);
        }

        .telegram-badge-title {
            font-size: 0.74rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: 0.01em;
            display: flex;
            align-items: center;
        }

        .telegram-badge-sub {
            font-size: 0.62rem;
            color: #94a3b8;
            margin-top: 1px;
            line-height: 1;
        }

        .live-dot-pulse {
            position: absolute;
            top: -1px;
            right: -1px;
            width: 8px;
            height: 8px;
            background: #22c55e;
            border: 2px solid #0e1017;
            border-radius: 50%;
            box-shadow: 0 0 6px #22c55e;
            animation: liveDotPulse 2s infinite ease-in-out;
        }

        @keyframes liveDotPulse {
            0% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }

            70% {
                transform: scale(1.15);
                box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
            }

            100% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        .telegram-badge-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            justify-content: center;
        }

        .telegram-badge-title {
            color: #ffffff;
            font-size: 0.90rem;
            font-weight: 700;
            letter-spacing: 0.2px;
            display: flex;
            align-items: center;
        }

        .telegram-badge-sub {
            color: #94a3b8;
            font-size: 0.76rem;
            font-weight: 600;
            margin-top: 2px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .telegram-live-counter {
            color: #38bdf8;
            font-weight: 800;
        }

        .telegram-online-status {
            color: #4ade80;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .online-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4ade80;
            display: inline-block;
        }

        /* Contact Section Responsive */
        .contact-grid-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 32px;
            align-items: start;
        }

        .contact-inputs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        @media (max-width: 860px) {
            .contact-grid-container {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
        }

        @media (max-width: 520px) {
            .contact-inputs-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }

        @media (max-width: 1180px) {
            .nav-links {
                display: none !important;
            }

            .mobile-nav-toggle-btn {
                display: inline-flex !important;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 64px !important;
            }

            .mobile-bottom-nav {
                display: flex !important;
            }

            .navbar {
                padding: 8px 0 !important;
            }

            .nav-container {
                padding: 0 12px !important;
                gap: 8px !important;
                justify-content: space-between !important;
            }

            .user-avatar-label {
                display: none !important;
            }

            .user-rank-badge {
                display: none !important;
            }

            .user-avatar-btn i.fa-chevron-down {
                display: none !important;
            }

            .user-avatar-btn {
                padding: 0 !important;
                gap: 0 !important;
                background: transparent !important;
                border: none !important;
                display: flex !important;
                align-items: center !important;
            }

            .user-avatar-circle {
                width: 32px !important;
                height: 32px !important;
            }

            .nav-messages-btn {
                width: 34px !important;
                height: 34px !important;
                font-size: 0.9rem !important;
                padding: 0 !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            #navbarSearchBtn {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px !important;
                gap: 6px !important;
            }

            .brand-logo {
                gap: 7px !important;
            }

            .brand-logo img {
                width: 30px !important;
                height: 30px !important;
            }

            .brand-title-main {
                font-size: 0.8rem !important;
                letter-spacing: -0.2px !important;
                white-space: nowrap !important;
            }

            .brand-title-sub {
                font-size: 0.54rem !important;
            }

            #navbarAuthBox {
                gap: 6px !important;
            }

            #navbarAuthBox .nav-btn-auth {
                padding: 4px 8px !important;
                font-size: 0.72rem !important;
            }

            .mobile-nav-toggle-btn {
                width: 34px !important;
                height: 34px !important;
                font-size: 0.95rem !important;
            }
        }

        @media (max-width: 360px) {
            .nav-container {
                padding: 0 6px !important;
                gap: 4px !important;
            }

            .brand-logo {
                gap: 5px !important;
            }

            .brand-logo img {
                width: 26px !important;
                height: 26px !important;
            }

            .brand-title-main {
                font-size: 0.72rem !important;
                letter-spacing: -0.3px !important;
            }

            .brand-title-sub {
                font-size: 0.48rem !important;
            }

            #navbarAuthBox {
                gap: 4px !important;
            }

            .user-avatar-circle {
                width: 28px !important;
                height: 28px !important;
            }

            .nav-messages-btn {
                width: 30px !important;
                height: 30px !important;
                font-size: 0.82rem !important;
            }

            .mobile-nav-toggle-btn {
                width: 30px !important;
                height: 30px !important;
                font-size: 0.85rem !important;
            }
        }

/* ==========================================================================
   2026 TÜRKİYE MOTOSİKLET FESTİVALLERİ TABLOSU & KARTLARI
   ========================================================================== */
.festivals-table-wrapper {
    background: #14161f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.festivals-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}

.festivals-table th {
    background: #0f1017;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.festivals-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    vertical-align: middle;
    transition: background 0.15s ease;
}

.festivals-table tr:last-child td {
    border-bottom: none;
}

.festivals-table tr.fest-row-upcoming {
    background: transparent;
}

.festivals-table tr.fest-row-upcoming:hover {
    background: rgba(255, 255, 255, 0.03);
}

.festivals-table tr.fest-row-completed {
    background: rgba(0, 0, 0, 0.2);
    opacity: 0.65;
}

.festivals-table tr.fest-row-completed:hover {
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.02);
}

.festivals-table tr.fest-row-completed td .fest-title-text {
    text-decoration: line-through;
    color: #94a3b8;
}

.fest-badge-upcoming {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.fest-badge-ongoing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid #ef4444;
    color: #ff5252;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.fest-badge-completed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Mobile Festival Cards */
.festivals-cards-wrapper {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.fest-card {
    background: #14161f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fest-card.fest-card-completed {
    opacity: 0.6;
    background: #101117;
}

.fest-card.fest-card-completed .fest-title-text {
    text-decoration: line-through;
    color: #94a3b8;
}

@media (max-width: 820px) {
    .festivals-table-wrapper {
        display: none !important;
    }
    .festivals-cards-wrapper {
        display: flex !important;
    }
}

/* ==========================================
   DIRECT MESSAGES (DM) & UNREAD PULSE STYLES
   ========================================== */

.nav-messages-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nav-messages-btn:hover {
    background: rgba(229, 57, 53, 0.15);
    border-color: #e53935;
    color: #ff5252;
    transform: translateY(-1px);
}

.dm-unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f1118;
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.7);
    animation: pulseDmBadge 1.8s infinite ease-in-out;
}

.dm-menu-unread-badge {
    background: #e53935;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: auto;
    animation: pulseDmBadge 1.8s infinite ease-in-out;
}

@keyframes pulseDmBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(229, 57, 53, 0.6);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 16px rgba(229, 57, 53, 0.95);
    }
}

/* DM Conversation Item */
.dm-conv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    margin-bottom: 3px;
}

.dm-conv-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dm-conv-item.active {
    background: rgba(229, 57, 53, 0.12);
    border-color: rgba(229, 57, 53, 0.3);
}

.dm-conv-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.dm-conv-info {
    flex: 1;
    min-width: 0;
}

.dm-conv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.dm-conv-name {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dm-conv-time {
    color: #64748b;
    font-size: 0.68rem;
    flex-shrink: 0;
}

.dm-conv-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.dm-conv-preview {
    color: #94a3b8;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dm-conv-item.unread .dm-conv-preview {
    color: #ffffff;
    font-weight: 700;
}

.dm-conv-item.unread .dm-conv-name {
    color: #ff5252;
}

.dm-conv-badge {
    background: #e53935;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Chat Message Bubbles */
.dm-bubble-row {
    display: flex;
    width: 100%;
}

.dm-bubble-row.sent {
    justify-content: flex-end;
}

.dm-bubble-row.received {
    justify-content: flex-start;
}

.dm-bubble-wrapper {
    position: relative;
    max-width: 78%;
    display: flex;
    flex-direction: column;
}

.dm-bubble-main-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dm-bubble-row.sent .dm-bubble-main-row {
    flex-direction: row-reverse;
}

.dm-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* DM Modal Wrapper & Full Width Overrides */
.modal-card.dm-modal-card {
    max-width: 960px !important;
    width: 95vw !important;
    height: 640px !important;
    max-height: 90vh !important;
    padding: 0 !important;
    border-radius: 16px !important;
    background: #111319 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Header Action Buttons (Sohbeti Sil, Engelle) */
.dm-header-btn {
    height: 32px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
}

.dm-header-btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #cbd5e1 !important;
}

.dm-header-btn-secondary:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #ff5252 !important;
}

.dm-header-btn-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
}

.dm-header-btn-danger:hover {
    background: rgba(239, 68, 68, 0.25) !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
}

/* Chat Input Bar Styling */
.dm-input-box-wrapper {
    background: #0b0d13;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 4px 6px 4px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.dm-input-box-wrapper:focus-within {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.18), inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.dm-input-field {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
    flex: 1 !important;
    padding: 8px 4px !important;
    width: 100% !important;
}

.dm-input-field::placeholder {
    color: #64748b !important;
}

.dm-input-emoji-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.15rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, transform 0.15s;
    flex-shrink: 0;
}

.dm-input-emoji-btn:hover {
    color: #facc15;
    transform: scale(1.15);
}

.dm-send-btn {
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%) !important;
    color: white !important;
    border: none !important;
    height: 36px !important;
    padding: 0 16px !important;
    border-radius: 18px !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 2px 10px rgba(229, 57, 53, 0.4) !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

.dm-send-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.6) !important;
}

/* Emoji Picker for Input */
.dm-input-emoji-picker {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 18px;
    background: #181b26;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
}

.dm-input-emoji-item {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: background 0.15s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-input-emoji-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

/* Bubble Actions & Hover */
.dm-bubble-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.dm-bubble-row:hover .dm-bubble-actions {
    opacity: 1;
}

.dm-bubble-action-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dm-bubble-action-btn:hover {
    color: #facc15;
    background: rgba(250, 204, 21, 0.15);
}

.dm-bubble-action-btn.delete:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

.dm-reactions-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.dm-bubble-row.sent .dm-reactions-wrap {
    justify-content: flex-end;
}

.dm-reaction-tag {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2px 7px;
    font-size: 0.72rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s ease;
    user-select: none;
    color: #cbd5e1;
}

.dm-reaction-tag:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Role Badges in DM Header */
.dm-role-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    letter-spacing: 0.2px;
}

.dm-role-badge.admin {
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.35);
    color: #ff5252;
}

.dm-role-badge.member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Floating Reaction Picker for Bubble */
.dm-bubble-reaction-picker {
    position: absolute;
    bottom: calc(100% + 6px);
    background: #181b26;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 4px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    z-index: 150;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.dm-bubble-row.sent .dm-bubble-reaction-picker {
    right: 0;
    left: auto;
}

.dm-bubble-row.received .dm-bubble-reaction-picker {
    left: 0;
    right: auto;
}

.dm-bubble-reaction-picker button {
    background: transparent;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 50%;
    transition: transform 0.15s;
}

.dm-bubble-reaction-picker button:hover {
    transform: scale(1.3);
}
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 50%;
    transition: transform 0.15s;
}

.dm-bubble-reaction-picker button:hover {
    transform: scale(1.3);
}

.dm-bubble-row.sent .dm-bubble {
    background: linear-gradient(135deg, #b91c1c, #e53935);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.dm-bubble-row.received .dm-bubble {
    background: #1e2230;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
}

.dm-bubble-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 4px;
    font-size: 0.65rem;
    opacity: 0.8;
}

.dm-date-divider {
    text-align: center;
    margin: 12px 0 6px 0;
    position: relative;
}

.dm-date-divider span {
    background: #181b26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 12px;
}

/* Mobile DM Layout */
@media (max-width: 680px) {
    .dm-layout-wrapper {
        flex-direction: column;
    }
    .dm-conversations-col {
        width: 100% !important;
        max-height: 180px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* ==========================================================================
   GARAGE BIKE ADD/EDIT MODERN MODAL STYLES
   ========================================================================== */
.bike-upload-dropzone {
    border: 2px dashed rgba(56, 189, 248, 0.35);
    background: rgba(15, 17, 25, 0.6);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.bike-upload-dropzone:hover, .bike-upload-dropzone.dragover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}
.accessory-chip-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}
.accessory-chip-btn:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}
.accessory-chip-btn.selected {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}
.accessory-tag-item {
    background: #1e293b;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 3px 8px 3px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.accessory-tag-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0 2px;
    display: flex;
    align-items: center;
    transition: transform 0.15s;
}
.accessory-tag-remove:hover {
    transform: scale(1.2);
}

/* Roadside Apply Drag & Drop and Quick Selection Chips */
.roadside-chip-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}
.roadside-chip-btn:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}
.roadside-chip-btn.selected {
    background: rgba(56, 189, 248, 0.18);
    border-color: #38bdf8;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}
.roadside-upload-dropzone {
    border: 2px dashed rgba(56, 189, 248, 0.35);
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.roadside-upload-dropzone:hover, .roadside-upload-dropzone.dragover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}
.roadside-thumb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.roadside-thumb-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.roadside-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.roadside-thumb-remove {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.roadside-thumb-remove:hover {
    background: #dc2626;
    transform: scale(1.15);
}

/* ==========================================================================
   🚨 MOTOSİKLET YOL YARDIM, TRANSFER & GÖNÜLLÜ SOS RADARI STYLES
   ========================================================================== */
.roadside-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.roadside-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.roadside-tab-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.15);
}
.roadside-tab-btn[data-segment="rescue"].active {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  color: #ff5252;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.15);
}
.roadside-tab-btn[data-segment="sos"].active {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.35);
  color: #facc15;
  box-shadow: 0 2px 10px rgba(234, 179, 8, 0.15);
}

.roadside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.roadside-card {
  background: #141622;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.roadside-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.roadside-card.rescue-card:hover {
  border-color: rgba(239, 68, 68, 0.45);
}
.roadside-card.verified-border {
  border-color: rgba(34, 197, 94, 0.35);
}

.roadside-tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.roadside-tag-green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}
.roadside-tag-blue {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}
.roadside-tag-red {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}
.roadside-tag-yellow {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.3);
}

.sos-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, #141622 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.sos-card:hover {
  transform: translateY(-2px);
  border-color: #ef4444;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}
.sos-card.resolved {
  background: #141622;
  border-color: rgba(34, 197, 94, 0.3);
  opacity: 0.82;
}

.sos-pulse-beacon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: sosPulseAnim 1.8s infinite;
}

@keyframes sosPulseAnim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
/* ==========================================================================
   MOTOSİKLET KARŞILAŞTIRMA MODÜLÜ (VERSUS ENGINE)
   ========================================================================== */
.compare-dropdown-item:hover {
  background: rgba(245, 158, 11, 0.14) !important;
}

.featured-comp-card {
  background: #141620;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-comp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 14px 35px rgba(245, 158, 11, 0.18);
  background: #181a26;
}

.motorcycle-catalog-card {
  background: #141620;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.motorcycle-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  background: #181b28;
}

.catalog-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
  outline: none;
}

.catalog-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.catalog-filter-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #000000 !important;
  border-color: #f59e0b !important;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.compare-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
}

.compare-dropdown-item:last-child {
  border-bottom: none;
}

.compare-dropdown-item:hover {
  background: rgba(245, 158, 11, 0.12) !important;
}

@media (max-width: 860px) {
  .comparison-inputs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .comparison-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .comparison-pros-cons-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
