/* === GLOBAL DARK MODE === */
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #e5e5e5;

    display: flex;
    flex-direction: column;
}



a {
    text-decoration: none;
    color: #58a6ff;
}

/* === HEADER === */
header {
    background-color: #111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-top: -5px;
}

nav a {
    margin-left: 20px;
    font-size: 15px;
    color: #ccc;
}

nav a:hover {
    color: white;
}

/* === HERO SECTION === */
.hero {
    text-align: center;
    padding: 55px 20px 45px; /* was 80px */
    background: #0d0d0d;
    border-bottom: 1px solid #1f1f1f;
}


.hero h1 {
    font-size: 38px;
    color: white;
}

.hero p {
    color: #ccc;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* === TOP SITES === */
.top-sites {
    padding: 60px;
}

.top-sites h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

.site-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* === SITE BOX === */
.site-box {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    border: 1px solid #222;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    overflow: visible;
}

/* Site logos used inside index cards */
.site-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Hover animation */
.site-box:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: #2d72d9;
    box-shadow: 0 0 15px rgba(45, 114, 217, 0.4);
}

/* Lift header on hover */
.site-header {
    transition: 0.3s ease;
}

.site-box:hover .site-header {
    transform: translateY(-15px);
}

/* === AFFILIATE BUTTON === */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #2d72d9;
    color: white;
    font-weight: bold;
    transition: 0.2s ease-in-out;
    transform: translateZ(0);
    position: relative;
    z-index: 10;
}

.btn:hover {
    background-color: #3a84f2;
    transform: scale(1.06);
    box-shadow: 0 0 12px rgba(58, 132, 242, 0.4);
}
/* =========================
   GLOBAL BLUE SHINE BUTTON
   ========================= */

.btn-blue,
.cta-btn,
.banner-btn.primary {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #2d72d9 0%,
        #4b9cff 50%,
        #2d72d9 100%
    );

    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    border: none;

    box-shadow:
        0 0 22px rgba(45,114,217,0.55),
        inset 0 0 0 rgba(255,255,255,0);

    transition: all 0.25s ease;
}

/* shine sweep */
.btn-blue::before,
.cta-btn::before,
.banner-btn.primary::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.35) 50%,
        transparent 70%
    );

    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* hover shine */
.btn-blue:hover::before,
.cta-btn:hover::before,
.banner-btn.primary:hover::before {
    opacity: 1;
    animation: shineMove 1.2s ease forwards;
}

/* lift + stronger glow */
.btn-blue:hover,
.cta-btn:hover,
.banner-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 36px rgba(45,114,217,0.85),
        0 8px 30px rgba(0,0,0,0.4);
}

/* shine animation */
@keyframes shineMove {
    from {
        transform: translateX(-60%) rotate(25deg);
    }
    to {
        transform: translateX(60%) rotate(25deg);
    }
}

/* === HOVER RATING BOX === */
.rating-container {
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: 0.35s ease;
}

.site-box:hover .rating-container {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Rating rows */
.rating-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 15px;
}

.rating-row span {
    color: #e5e5e5;
}

/* === STARS (NEW) === */
/* Container */
.rating-row .stars {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Filled star = ★ */
.rating-row .stars .filled {
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

/* Empty star = ☆ */
.rating-row .stars .empty {
    color: #777;
}

/* === REVIEWS PAGE LIST === */
.reviews {
    padding: 60px;
}

.review {
    background-color: #161616;
    border: 1px solid #242424;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.rating {
    color: #ffd700;
}

/* === ABOUT SECTION === */
.about {
    padding: 60px;
    background-color: #121212;
    border-top: 1px solid #222;
}

/* === FOOTER === */
footer {
    background-color: #0b0b0b;
    padding: 20px;
    text-align: center;
    color: #777;
    border-top: 1px solid #222;
}

/* === REVIEW PAGE BOXES === */
.review-box {
    background-color: #161616;
    border: 1px solid #242424;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.overview-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.overview-block {
    flex: 1;
    min-width: 250px;
    background-color: #1c1c1c;
    border: 1px solid #2a2a2a;
    padding: 20px;
    border-radius: 10px;
}

.overview-block h3 {
    margin-top: 0;
    color: #ffd700;
}

.game-list li,
.withdraw-list li,
.edge-list li {
    margin-bottom: 6px;
}

/* === REVIEW PAGE TITLE (logo + title + text) === */
.review-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Fix: NO UPSCALING → prevents pixelation */
.review-title-logo-only {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.review-title-text h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #ffffff;
}

.review-title-text p {
    margin: 0;
    color: #cccccc;
    max-width: 650px;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 650px) {
    .review-title {
        flex-direction: column;
        text-align: center;
    }

    .review-title-logo-only {
        max-height: 50px;
    }

    .review-title-text p {
        margin: 0 auto;
    }
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #999;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.house-edge {
    color: #afafaf;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;       /* No wide spacing like stars */
    text-shadow: none;
}
.site-box .btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 0;
    box-sizing: border-box;
}
.affiliate-disclosure {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}
.age-warning {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}
.age-warning p {
    margin: 0;
    padding: 0;
}
/* ---------------- COOKIE BANNER ---------------- */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #333;
    z-index: 99999;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-accept {
    background: #4caf50;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-reject {
    background: #c62828;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-settings {
    background: #444;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
}

/* ---------------- COOKIE MODAL ---------------- */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.cookie-modal-box {
    background: #1e1e1e;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    border: 1px solid #333;
}

.cookie-modal-box h3 {
    margin-top: 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}
/* =========================
   TOP BANNER / HERO (TIGHT)
   ========================= */

.top-banner {
    position: relative;
    overflow: hidden;

    /* tighter height */
    min-height: 320px;
    padding: 64px 20px 56px; /* ⬅️ bottom reduced */

    background:
        radial-gradient(circle at center, rgba(45,114,217,0.14), transparent 55%),
        linear-gradient(to bottom, #0c1016, #0a0a0a);

    border-bottom: 1px solid #1f1f1f;
}

/* CONTENT */
.top-banner-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* CTA BUTTONS */
.top-banner-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 22px 0 14px; /* ⬅️ tighter */
    position: relative;
    z-index: 4;
}

.banner-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.banner-btn.primary {
    background: linear-gradient(135deg, #2d72d9, #4b9cff);
    color: #fff;
    box-shadow: 0 0 24px rgba(45,114,217,0.55);
}

.banner-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(45,114,217,0.85);
}

.banner-btn.secondary {
    background: rgba(20,20,20,0.85);
    border: 1px solid #2d72d9;
    color: #fff;
}

.banner-btn.secondary:hover {
    background: rgba(45,114,217,0.15);
}

/* ===============================
   FLOATING SAPPHIRE SKINS
   =============================== */

.hero-skins {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-skins .skin {
    position: absolute;
    opacity: 0.95;
    filter: none;

    animation:
        floatFast 5s ease-in-out infinite,
        drift 6s ease-in-out infinite,
        rotateSlow 8s ease-in-out infinite,
        zoomSoft 7s ease-in-out infinite;
}

/* LEFT KNIFE */
.skin.s1 {
    left: 5%;
    top: 32%;
    width: 260px; /* ⬅️ slightly smaller */
    transform: rotate(-18deg);
}

/* RIGHT KNIFE */
.skin.s2 {
    right: 5%;
    top: 30%;
    width: 280px;
    transform: rotate(14deg);
}

/* animations */
@keyframes floatFast {
    0%   { translate: 0 0; }
    50%  { translate: 0 -16px; }
    100% { translate: 0 0; }
}

@keyframes drift {
    0%   { translate: 0 0; }
    50%  { translate: 10px 0; }
    100% { translate: 0 0; }
}

@keyframes rotateSlow {
    0%   { rotate: 0deg; }
    50%  { rotate: 5deg; }
    100% { rotate: 0deg; }
}

@keyframes zoomSoft {
    0%   { scale: 1; }
    50%  { scale: 1.04; }
    100% { scale: 1; }
}

/* ===============================
   SMOOTH TRANSITION INTO PAGE
   =============================== */

.top-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px; /* ⬅️ reduced fade height */

    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0),
        #0a0a0a
    );

    z-index: 2;
    pointer-events: none;
}

.hero-divider {
    width: 64px;
    height: 3px;
    background: #2d72d9;
    margin: 22px auto 26px;
    border-radius: 2px;
}
.giveaway-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .giveaway-grid {
        grid-template-columns: 1fr;
    }
}

.giveaway-side {
    background: #141414;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 24px;
}

.giveaway-side h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.giveaway-side p,
.giveaway-side li {
    font-size: 14px;
    color: #ccc;
}
/* Discord Button */
.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: #fff;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(88,101,242,0.45);
    transition: 0.25s ease;
}

.discord-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 32px rgba(88,101,242,0.7);
}
/* Giveaway Rules Box */
.giveaway-rules h3 {
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 18px;
}

.giveaway-rules ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.giveaway-rules li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.giveaway-rules p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #cccccc;
}
/* =========================
   FOOTER LAYOUT
   ========================= */

footer {
    padding: 25px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #0b0b0b;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* =========================
   FOOTER SOCIAL ICONS
   ========================= */

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.25s ease;
}

.footer-socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-socials a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(88,101,242,0.45);
    border-color: rgba(255,255,255,0.25);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================
   TOP NAV – BLUE ACTIVE PILL
   ========================= */

.main-nav {
    display: flex;
    gap: 4px; /* tighter spacing */
    background: rgba(18, 18, 18, 0.95);
    padding: 6px;
    border-radius: 999px;
}

.nav-link {
    padding: 6px 14px; /* less vertical + horizontal space */
    border-radius: 999px;
    color: #cfcfcf;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    transition: all 0.25s ease;
}

/* hover (subtle) */
.nav-link:hover {
    color: #ffffff;
    background: rgba(45, 114, 217, 0.12);
}

/* ACTIVE PAGE */
.nav-link.active {
    background: linear-gradient(135deg, #2d72d9, #4b9cff);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(45,114,217,0.45);
    font-weight: 600;
}
/* =========================
   GLOBAL BLUE SHINE BUTTON
   ========================= */

.btn-blue,
.cta-btn,
.banner-btn.primary {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #2d72d9 0%,
        #4b9cff 50%,
        #2d72d9 100%
    );

    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    border: none;

    box-shadow:
        0 0 22px rgba(45,114,217,0.55),
        inset 0 0 0 rgba(255,255,255,0);

    transition: all 0.25s ease;
}

/* shine sweep */
.btn-blue::before,
.cta-btn::before,
.banner-btn.primary::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.35) 50%,
        transparent 70%
    );

    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* hover shine */
.btn-blue:hover::before,
.cta-btn:hover::before,
.banner-btn.primary:hover::before {
    opacity: 1;
    animation: shineMove 1.2s ease forwards;
}

/* lift + stronger glow */
.btn-blue:hover,
.cta-btn:hover,
.banner-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 36px rgba(45,114,217,0.85),
        0 8px 30px rgba(0,0,0,0.4);
}

/* shine animation */
@keyframes shineMove {
    from {
        transform: translateX(-60%) rotate(25deg);
    }
    to {
        transform: translateX(60%) rotate(25deg);
    }
}

/* TRUST + FAQ */
.trust-section {
    padding: 70px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-intro {
    opacity: 0.75;
    font-size: 15px;
    max-width: 720px;
    margin: 10px auto 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.trust-card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 22px;
    text-align: left;
}

.trust-card p {
    margin-top: 8px;
    opacity: 0.8;
    font-size: 14px;
}

/* FAQ */
.faq-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.faq-box h3 {
    text-align: center;
    margin-bottom: 24px;
}

/* ABOUT tighter */
.about-tight {
    padding-top: 50px;
}

/* FOOTER AGE */
.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-age {
    font-size: 13px;
    opacity: 0.6;
}
/* =========================
   MOBILE HEADER (NO CONFLICTS)
   ========================= */

header.main-header {
  background-color: #111;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 9999;
}

header.main-header .logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-top: 0;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-size: 15px;
  color: #ccc;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
}

.main-nav a:hover {
  color: #fff;
}

/* ✅ Blue active indicator (your “blue pill”) */
.main-nav a.active {
  background: #2d72d9;
  color: #fff;
}

/* Hamburger hidden on desktop */
.nav-toggle {
  display: none;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 66px;
    display: none;
    flex-direction: column;
    background: rgba(17,17,17,0.98);
    border: 1px solid #222;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: #1b1b1b;
  }

  .main-nav a.active {
    background: rgba(45,114,217,0.20);
    border: 1px solid rgba(45,114,217,0.55);
    color: #fff;
  }
}

/* =========================
   FIX MOBILE HEADER NAV (OVERRIDES OLD nav STYLES)
   ========================= */

header.main-header nav {
  display: flex;
}

/* Force: on mobile hide the nav completely until opened */
@media (max-width: 900px) {
  header.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  header.main-header nav {
    display: none !important;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 66px;
    flex-direction: column;
    background: rgba(17,17,17,0.98);
    border: 1px solid #222;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  }

  header.main-header nav.open {
    display: flex !important;
  }

  header.main-header nav a {
    width: 100%;
    margin-left: 0 !important; /* kills your old nav a margin-left */
    padding: 12px 12px;
    border-radius: 10px;
  }
}
/* ===============================
   INDEX HERO – MOBILE SKIN FIX
   =============================== */
@media (max-width: 768px) {

    /* hide Background 1 on mobile */
    .hero-skins .s1 {
        display: none;
    }

    /* keep Background 2 centered & clean */
    .hero-skins .s2 {
        position: relative;
        width: 100%;
        height: auto;
        opacity: 1;
    }
}
/* =========================================
   SUBTLE FLOATING BACKGROUND DOTS
   SCATTERED • CLEAN • SLOW • PREMIUM
   ========================================= */

.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* BASE DOT */
.bg-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;

    background: rgba(45,114,217,0.9);
    box-shadow: 0 0 12px rgba(45,114,217,0.6);

    opacity: 0.35;
    animation: floatDot linear infinite;
}

/* RANDOMIZED POSITIONS + SPEEDS */
.bg-particles span:nth-child(1)  { left: 6%;  top: 12%; animation-duration: 42s; }
.bg-particles span:nth-child(2)  { left: 12%; top: 68%; animation-duration: 55s; }
.bg-particles span:nth-child(3)  { left: 18%; top: 32%; animation-duration: 48s; }

.bg-particles span:nth-child(4)  { left: 32%; top: 78%; animation-duration: 60s; }
.bg-particles span:nth-child(5)  { left: 38%; top: 22%; animation-duration: 46s; }

.bg-particles span:nth-child(6)  { left: 52%; top: 55%; animation-duration: 58s; }
.bg-particles span:nth-child(7)  { left: 60%; top: 18%; animation-duration: 44s; }

.bg-particles span:nth-child(8)  { left: 72%; top: 70%; animation-duration: 62s; }
.bg-particles span:nth-child(9)  { left: 78%; top: 28%; animation-duration: 50s; }

.bg-particles span:nth-child(10) { left: 88%; top: 46%; animation-duration: 54s; }
.bg-particles span:nth-child(11) { left: 92%; top: 12%; animation-duration: 66s; }
.bg-particles span:nth-child(12) { left: 95%; top: 82%; animation-duration: 72s; }

/* FLOATING ANIMATION */
@keyframes floatDot {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-140px); }
    100% { transform: translateY(0); }
}

/* KEEP CONTENT ABOVE */
header,
section,
footer,
main {
    position: relative;
    z-index: 1;
}

/* REDUCE MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
    .bg-particles span {
        animation: none;
    }
}
/* ===============================
   TOP SITES – HERO (BLUE THEME)
   =============================== */

.review-hero.top-hero {
  position: relative;
  padding: 90px 20px 80px;

  background:
    radial-gradient(
      1200px 450px at 50% -40%,
      rgba(59, 130, 246, 0.45),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(11, 26, 51, 0.98),
      rgba(5, 7, 12, 0.98)
    );

  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  text-align: center;
}

/* Title */
.review-hero.top-hero h1 {
  color: #e5edff;
  font-size: 42px;
  text-shadow: 0 0 28px rgba(59, 130, 246, 0.35);
}

/* Subtitle */
.review-hero.top-hero p {
  margin-top: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;

  color: #c7d2fe;
  font-size: 17px;
  line-height: 1.6;
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.2);
}

/* Decorative divider (optional but recommended) */
.review-hero.top-hero::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 28px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    #3b82f6,
    transparent
  );
  border-radius: 10px;
}
