body {
  background: radial-gradient(#1c1c1c 30%, #000);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden; /* Stop accidental horizontal scrolling */
  height: 100%;
}
section {
  padding-top: 3%;
}
h1,
h2 {
  text-align: center;
  margin-bottom: 20px;
}
h2 {
  color: #70ffff;
}

section[id] {
  scroll-margin-top: 100px;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content-wrap {
  flex: 1; /* pushes footer down */
}

/* 🎬 HERO / VIDEO HEADER SECTION */
.video-header {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.video-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes sure it covers the screen */
  filter: brightness(50%); /* Darkens video slightly */
  z-index: 0;
}
/* Overlay for content above the video */
.video-header .overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* logo at top, not center */
  align-items: center;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.1); /* dark overlay for readability */
} /* Centered logo at top */
.video-header .overlay .site-logo {
  max-width: 300px; /* adjust logo size */
  height: auto;
  margin-bottom: 40px; /* space before the text */
  margin-top: 5vh;
} /* Text and CTA under the logo */
.video-header .header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 0.5; /* center vertically below logo */
  z-index: 2; /* ensures text is above overlay */
}
.video-header .header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}
.video-header .header-content p {
  font-size: 1.25rem;
  color: #f1f1f1;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.video-header .btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #0a149d;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none; /* removes underline */
}
.video-header .btn:hover {
  background-color: #0056cc;
  transform: scale(1.05);
}

/* === SPONSOR TICKER IN VIDEO HEADER (centered version) === */
.header-sponsors-ticker {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90vw;
  overflow: hidden;
  background: transparent;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
}

.ticker-item {
  flex: 0 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ticker-item img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.sound-toggle {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 999;
  transition: all 0.8s ease;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.5);
  top: 50%;
  left: 50%;
}

/* Initial visible state (after load) */
.sound-toggle.show {
  opacity: 1;
}

/* After animation – smaller, bottom-left corner */
.sound-toggle.mini {
  bottom: 20px;
  left: 20px;
  top: auto;
  transform: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.6);
}

/* ----- HEADER BASE ----- */ /* Kart menu */
#kart-menu {
  position: fixed;
  top: -100px; /* start hidden */
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  text-align: center;
  opacity: 0; /* hidden by default */
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
} /* ----- LOGO ----- */
.site-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.1);
} /* ----- DESKTOP NAV ----- */ /* Wheels and tracks in a fixed horizontal line */
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-nav a {
  color: inherit;
  text-decoration: none; /* removes underline */
} /* Track between wheels */
.track {
  width: 30px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #888,
    #888 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.9;
} /* Wheels */
.wheel {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #555 30%, #000 70%);
  border: 3px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.6s ease;
  cursor: pointer;
  position: relative;
}
.wheel:hover {
  transform: rotate(360deg);
} /* Text on hover only */
.menu-text {
  position: relative; /* ensures it stays beside, not inside wheel */
  white-space: nowrap;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
  transform: translateX(0);
}
.header-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px; /* adds clean space between wheel and text */
  cursor: pointer;
}
.header-item:hover .menu-text {
  opacity: 1;
  transform: translateX(0);
} /* ----- MOBILE VIEW ----- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
} /* ===== Carousel Styling (Overlay Racing Style) ===== */
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px; /* full rounding of visible area */
}
.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.carousel-slide {
  position: relative;
  min-width: 100%;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 20px; /* ensures smooth corners even during transition */
  display: block;
} /* Caption overlay */
.carousel-slide p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1.2rem 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  backdrop-filter: blur(3px);
} /* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.2s ease;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev {
  left: 25px;
}
.carousel-btn.next {
  right: 25px;
} /* Dots navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dots .dot.active {
  background: #00aaff; /* bright electric blue */
}
.about-overall {
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #ddd;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 170, 255, 0.6);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}
.about-overall strong {
  color: #00aaff; /* bright electric blue */
}

/* ---------- BLOG GRID ---------- */
.blog-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- BLOG CARD ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #0a0d12; /* Dark racing pit theme */
  border: 1px solid rgba(77, 166, 255, 0.35);
  border-radius: 15px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  color: #e9f4ff;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #4da6ff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Featured Image (only when exists) */
.blog-card .blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px dashed #4da6ff; /* 🏁 track look */
}

/* ---------- CONTENT BASE ---------- */
.blog-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.blog-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #70ffff;
}

/* Excerpt */
.blog-card p {
  font-size: 0.9rem;
  color: #b9cde3;
  flex-grow: 1;
  line-height: 1.5;
}

/* Read More / CTA Link */
.read-more {
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
  color: #4da6ff;
  text-decoration: none;
  transition: color .3s ease;
}
.read-more:hover { color: #70ffff; }

/* ---------- NO THUMBNAIL STATE ---------- */
.content.has-no-thumb {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content.has-no-thumb h3 {
  margin-bottom: .75rem;
}

.content.has-no-thumb p {
  max-width: 85%;
  margin: 0 auto 1.2rem;
}

/* ---------- SEE MORE BUTTON ---------- */
.see-more {
  margin-top: 40px;
  text-align: center;
}

.see-more-btn {
  background: linear-gradient(90deg, #0a149d, #00aaff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
}

.see-more-btn:hover {
  background: linear-gradient(90deg, #00aaff, #70ffff);
  transform: scale(1.08);
}

/* Social Media */
#social {
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
#social h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.social-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
.social-logo img {
  width: 300px;
  opacity: 0.9;
}

/* Sponsor section */
.sponsor-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}
.sponsor-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Grid layout for sponsor logos */
#sponsorship {
  padding: 60px 20px;
  text-align: center;
}

.sponsors-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto;
}

.sponsor-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.sponsor-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.sponsor-details {
  flex: 1;
}

.sponsor-details h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.sponsor-details p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.sponsor-details a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: #0073e6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sponsor-details a:hover {
  background: #005bb5;
}

.sponsor-links {
  margin-top: 12px;
}

.sponsor-links a {
  display: inline-block;
  margin-right: 12px;
  padding: 6px 12px;
  background: #0073e6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.sponsor-links a:hover {
  background: #005bb5;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* Changed from cover for logos */
  background: #fff;
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

/* 🏁 Sponsor Card Styling */
.sponsorship-section .blog-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 20px;
  justify-items: center;
}

/* Sponsor Card Container */
.sponsorship-section .blog-card {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.sponsorship-section .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
}

/* Logo Image Styling */
.sponsorship-section .blog-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 20px auto 10px auto;
  display: block;
  background: white;
  border-radius: 50%;
  border: 3px solid rgba(0, 170, 255, 0.4);
  padding: 10px;
  transition: transform 0.3s ease;
}

.sponsorship-section .blog-card:hover img {
  transform: scale(1.05);
}

/* Sponsor Name */
.sponsorship-section .blog-card h3 {
  color: #0a149d;
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Description */
.sponsorship-section .blog-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0 15px;
  min-height: 60px;
}

/* Social Links */
.sponsorship-section .sponsor-links {
  margin: 15px 0 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sponsorship-section .sponsor-links a {
  font-size: 0.85rem;
  color: #0a149d;
  background: rgba(10, 20, 157, 0.1);
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.sponsorship-section .sponsor-links a:hover {
  background: #0a149d;
  color: white;
}

/* Section title alignment */
.sponsorship-section h2 {
  color: #70ffff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sponsor Message Section */
.sponsorship-section .sponsor-message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.sponsorship-section .sponsor-message p {
  margin-bottom: 1rem;
}

.sponsorship-section .sponsor-email {
  color: #70ffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.sponsorship-section .sponsor-email:hover {
  color: #0a149d;
}

/* Slide-in animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === CONTACT SECTION STYLING === */
/* Contact Form Wrapper */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/* Labels */
.wpcf7-form label {
  font-weight: 600;
  color: #ccc;
  display: block;
  margin-bottom: 8px;
}

/* Input Fields */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  padding: 12px 15px;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #e63946; /* accent red tone */
  background: rgba(255, 255, 255, 0.1);
}

/* Textarea height */
.wpcf7-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Submit Button */
.wpcf7-submit {
  display: block;
  margin: 0 auto;
  background: #0a149d !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.wpcf7-submit:hover {
  background: #0056cc !important;
  transform: scale(1.05) !important;
}

/* Success & Error Messages */
.wpcf7-response-output {
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff; /* white text */
}

.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 0.9rem;
}

.blog-section {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  margin-top: 2%;
  padding: 1%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.footer-logo img {
  width: 120px;
  opacity: 0.9;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links a {
  color: #0073e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #005bb5;
}

/* BLOG PAGE ONLY (Scoped using .blog-page wrapper) */
.blog-page {
  padding: 80px 0;
  color: #dfe6f0;
}

.blog-page .section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #70ffff; /* your website blue */
}

/* Blog Grid */
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Individual Card */
.blog-page .blog-card {
  background: #0f1116;
  border: 1px solid #1b232e;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-page .blog-card:hover {
  transform: translateY(-6px);
  border-color: #70ffff; /* subtle highlight */
}

/* If thumbnail exists */
.blog-page .blog-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 3px dashed #70ffff; /* track style */
}

/* If thumbnail exists → tighter layout */
.blog-page .blog-card .blog-content.has-thumb {
  padding-top: 1.1rem;
}

/* If NO thumbnail → center vertically & center text */
.blog-page .blog-content.has-no-thumb {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertically centers content */
  align-items: center;      /* horizontally centers content */
  text-align: center;
  padding: 2rem 1.8rem;
}

/* Fix spacing of title & paragraph when centered */
.blog-page .blog-content.has-no-thumb h3 {
  margin-bottom: 0.75rem;
}

.blog-page .blog-content.has-no-thumb p {
  margin-bottom: 1.25rem;
  max-width: 85%; /* keeps line length clean and readable */
}

/* Card Text */
.blog-page .blog-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-page .blog-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.blog-page .blog-content p {
  font-size: 0.9rem;
  color: #b9c5d6;
  margin-bottom: 14px;
}

/* Read More Link */
.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #70ffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #ffffff;
}

/* BLOG PAGINATION - Scoped safely to blog page */
.blog-page .blog-pagination {
  margin-top: 50px;
  text-align: center;
}

.blog-page .blog-pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 6px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #70ffff;
  color: #70ffff;
  transition: 0.25s ease;
}

/* Hover and Active State */
.blog-page .blog-pagination .page-numbers:hover,
.blog-page .blog-pagination .page-numbers.current {
  background: #70ffff;
  color: #0a0d12;
  border-color: #70ffff;
}

/* Prev / Next Buttons */
.blog-page .blog-pagination .prev,
.blog-page .blog-pagination .next {
  border-color: #1b232e;
  color: #b9c5d6;
}

.blog-page .blog-pagination .prev:hover,
.blog-page .blog-pagination .next:hover {
  border-color: #70ffff;
  color: #70ffff;
}

/* Blog Posts Content */
.single-post {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: auto;
  overflow: visible;
}

.single-featured img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.single-title {
  font-size: 2.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.5rem;
}

/* Default state */
.tire-divider {
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    #4da6ff 0,
    #4da6ff 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 1.5rem 0 2.5rem;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* When activated (on scroll) */
.tire-divider.glow {
  animation: tireGlowPulse 2s infinite ease-in-out;
  opacity: 1;
}

.single-content {
  line-height: 1.8;
  color: #ccc;
}

.single-content img {
  border-radius: 8px;
  margin: 2rem 0;
  max-width: 100%;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.post-navigation a {
  color: #4da6ff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-navigation a:hover {
  color: #fff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* animation scrolls half the track for a seamless loop */
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes tireGlowPulse {
  0% { filter: drop-shadow(0 0 0px #4da6ff); }
  50% { filter: drop-shadow(0 0 8px #4da6ff); }
  100% { filter: drop-shadow(0 0 0px #4da6ff); }
}

/* Mobile: tighter layout */
@media (max-width: 600px) {
  .ticker-item img {
    width: 60px;
    height: 60px;
  }
  .ticker-item {
    padding: 0 15px;
  }
	
  .blog-page .blog-card {
    flex-direction: column;
  }

  .blog-page .blog-image img {
    width: 100%;
    height: 190px;
  }
	
  .blog-page .blog-pagination .page-numbers {
    padding: 8px 12px;
    margin: 0 3px;
  }
}

/* 🧱 RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  #content-wrap {
	  padding: 0px 10px;
  }
	  
  .video-header .overlay {
    padding-top: 60px;
  }
  .video-header .site-logo {
    width: 165px;
    margin-bottom: 25px;
  }
  .video-header .header-content h1 {
    font-size: 1.8rem;
  }
  .video-header .header-content p {
    font-size: 0.95rem;
  }
	
  .sound-toggle {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .sound-toggle.mini {
    bottom: 10px;
    left: 10px;
    font-size: 0.75rem;
    padding: 8px 16px;
  }
	
  .hero-sponsor img {
    width: 60px;
    height: 60px;
  }
	
  .header-nav {
    display: none; /* default hidden */
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
  }
  .hamburger {
    display: flex;
  }
  #kart-menu {
    background: rgba(0, 0, 0, 0.9);
  }
	
  .sponsor-card {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-logo {
    width: 200px;
    height: 200px;
  }
	
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-social a img {
    width: 38px; /* slightly larger tap targets */
  }

  .footer-logo img {
    max-width: 200px; /* bigger brand visibility */
  }

  .footer-links a {
    font-size: 1rem;
  }
}