/* ==================== YT DINNA - STYLE.CSS ==================== */

:root {
    --primary:   #e01020;   /* deep red       */
    --secondary: #ff2244;   /* bright crimson */
    --accent:    #ff4455;   /* hot red        */
    --bg-dark:   #080508;
    --bg-card:   #120810;
    --bg-card2:  #0e060c;
    --text:      #ffe8e8;
    --text-dim:  #aa8888;
    --border:    rgba(224, 16, 32, 0.20);
    --glow-orange: 0 0 22px rgba(224, 16,  32, 0.55);
    --glow-cyan:   0 0 22px rgba(255, 34,  68, 0.50);
    --glow-red:    0 0 22px rgba(255, 255, 255, 0.15);
    --font-title: 'Orbitron', sans-serif;
    --font-body:  'Rajdhani', sans-serif;
    --font-mono:  'Share Tech Mono', monospace;
}

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    cursor: default;
}

/* ===== CINEMATIC BACKGROUND ===== */

#bg-photo {
    position: fixed;
    inset: -8%;
    background: url('YT DINNA.PNG/Baggarwood_photo_1.jpg') center 30% / cover no-repeat;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.55) saturate(1.3) contrast(1.05);
    animation: bgDrift 20s ease-in-out infinite alternate;
    will-change: transform, filter;
}

@keyframes bgDrift {
    0%   { transform: scale(1.06) translate(0px,   0px);  filter: brightness(0.55) saturate(1.3) contrast(1.05); }
    30%  { transform: scale(1.09) translate(-8px, -5px);  filter: brightness(0.58) saturate(1.4) contrast(1.03); }
    60%  { transform: scale(1.07) translate( 6px, -8px);  filter: brightness(0.52) saturate(1.25) contrast(1.07); }
    100% { transform: scale(1.11) translate(-4px,  7px);  filter: brightness(0.56) saturate(1.35) contrast(1.04); }
}

#bg-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        /* ZMods style - dark vignette edges, photo visible in center */
        radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(8,4,5,0.72) 100%),
        /* Top navbar fade - lighter so photo shows */
        linear-gradient(180deg, rgba(8,4,5,0.28) 0%, transparent 22%),
        /* Bottom content fade */
        linear-gradient(0deg, rgba(8,4,5,0.90) 0%, rgba(8,4,5,0.40) 25%, transparent 50%),
        /* Pink/purple tint overlay - ZMods vibe */
        radial-gradient(ellipse at 50% 60%, rgba(220,10,30,0.20) 0%, transparent 65%),
        /* Subtle brand color glows */
        radial-gradient(ellipse at 88% 6%,  rgba(220,10,30,0.18) 0%, transparent 40%),
        radial-gradient(ellipse at 8%  92%, rgba(160,0,20,0.12) 0%, transparent 40%);
}

#bg-scanlines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.07) 3px,
        rgba(0,0,0,0.07) 4px
    );
    animation: scanFlicker 8s ease-in-out infinite;
}

@keyframes scanFlicker {
    0%,100% { opacity: 0.6; }
    48%     { opacity: 0.6; }
    50%     { opacity: 0.3; }
    52%     { opacity: 0.6; }
    80%     { opacity: 0.6; }
    82%     { opacity: 0.2; }
    84%     { opacity: 0.6; }
}

#bg-sweep {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 42%,
        rgba(220,10,30,0.025) 50%,
        transparent 58%,
        transparent 100%
    );
    animation: neonSweep 9s ease-in-out infinite;
}

@keyframes neonSweep {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* ===== BACKGROUND ===== */
#particles-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    display: none;
}

.aurora-mid { display: none; }

.star-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.star-field canvas {
    width: 100%;
    height: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: rgba(5, 5, 8, 0.18);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220,10,30,0.12);
    z-index: 1000;
}

.nav-logo {
    position: relative;
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-yt {
    color: var(--primary);
    text-shadow: var(--glow-orange);
}

.logo-dinna {
    color: var(--accent);
    text-shadow: var(--glow-cyan);
}

.logo-glow {
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: logoLine 2s ease-in-out infinite alternate;
}

@keyframes logoLine {
    0% { opacity: 0.4; width: 40%; }
    100% { opacity: 1; width: 100%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: var(--glow-cyan);
}

.nav-links a:hover::after { width: 100%; }

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #00ff88;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0,255,136,0.7);
}

.status-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88, 0 0 18px rgba(0,255,136,0.5);
    animation: statusPing 1.8s ease-in-out infinite;
    position: relative;
}

/* Outer ping ring */
.status-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,255,136,0.5);
    animation: statusRing 1.8s ease-in-out infinite;
}

@keyframes statusPing {
    0%, 100% { opacity: 1;   transform: scale(1);   box-shadow: 0 0 8px #00ff88, 0 0 18px rgba(0,255,136,0.5); }
    50%       { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 14px #00ff88, 0 0 28px rgba(0,255,136,0.7); }
}

@keyframes statusRing {
    0%        { opacity: 0.8; transform: scale(1);   }
    70%, 100% { opacity: 0;   transform: scale(2.2); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 60px 60px;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12), transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.title-line {
    display: block;
    color: var(--text);
}

.title-line.accent {
    color: var(--primary);
    text-shadow: var(--glow-orange);
    -webkit-text-stroke: 1px var(--primary);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 36px;
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    animation: fadeInLeft 0.8s ease 0.6s both;
}

.btn-primary {
    position: relative;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    z-index: 1;

    /* Layered gradient background */
    background: linear-gradient(135deg, #ff6b00 0%, #ff0040 60%, #ff6b00 120%);
    background-size: 200% 200%;
    animation: btnGradShift 4s ease infinite;

    /* Glass inner glow */
    box-shadow:
        0 0 18px rgba(255,107,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.2);

    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.35s, letter-spacing 0.3s;
}

/* Shimmer sweep */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 65%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}

/* Ripple ring on hover */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    border: 2px solid rgba(255,107,0,0.5);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.btn-primary:hover::after {
    opacity: 1;
    transform: scale(1.06);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    letter-spacing: 3px;
    box-shadow:
        0 0 35px rgba(255,107,0,0.65),
        0 10px 30px rgba(255,0,64,0.3),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes btnGradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes btnShimmer {
    0%        { left: -100%; opacity: 0; }
    10%       { opacity: 1; }
    60%, 100% { left: 160%; opacity: 0; }
}

.btn-secondary {
    position: relative;
    background: rgba(180,0,20,0.07);
    color: var(--accent);
    padding: 14px 36px;
    border: 1px solid rgba(220,10,30,0.50);
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.35s, background 0.35s,
                border-color 0.35s, letter-spacing 0.3s;
    box-shadow:
        0 0 12px rgba(200,10,25,0.18),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Animated border glow sweep */
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 65%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(160,0,20,0.12),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShimmer 3.8s 0.5s ease-in-out infinite;
    pointer-events: none;
}

/* Outer pulse ring */
.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    border: 1px solid rgba(220,10,30,0.3);
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.btn-secondary:hover::after {
    opacity: 1;
    transform: scale(1.07);
}

.btn-secondary:hover {
    background: rgba(160,0,20,0.12);
    border-color: rgba(220,10,30,0.8);
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    letter-spacing: 3px;
    box-shadow:
        0 0 30px rgba(220,10,30,0.5),
        0 10px 28px rgba(200,10,25,0.18),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInLeft 0.8s ease 0.8s both;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hex-container {
    position: relative;
    z-index: 3;
}

.hex {
    position: absolute;
    width: 80px; height: 80px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.hex-1 { top: -60px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hex-2 { bottom: -60px; left: 0; animation-delay: 1s; }
.hex-3 { bottom: -60px; right: 0; animation-delay: 2s; }

.hex img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
    transition: filter 0.3s;
}

.hex:hover img {
    filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.8));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: spin linear infinite;
}

.ring-1 {
    width: 200px; height: 200px;
    border-color: rgba(255, 107, 0, 0.3);
    animation-duration: 8s;
}

.ring-2 {
    width: 280px; height: 280px;
    border-color: rgba(0, 245, 255, 0.2);
    animation-duration: 12s;
    animation-direction: reverse;
    border-style: dashed;
}

.ring-3 {
    width: 360px; height: 360px;
    border-color: rgba(255, 0, 64, 0.15);
    animation-duration: 20s;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== GAME SHOWCASE CAROUSEL ===== */
.game-showcase {
    position: relative;
    width: 340px;
    z-index: 2;
    flex-shrink: 0;
}

.showcase-glow-bg {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.10) 0%, rgba(180,0,20,0.07) 60%, transparent 80%);
    pointer-events: none;
    border-radius: 50%;
    animation: showcaseGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes showcaseGlowPulse {
    0%   { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1;   transform: scale(1.05); }
}

.showcase-cards {
    position: relative;
    height: 340px;
}

.showcase-card {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 24, 0.92);
    border-radius: 18px;
    border: 1px solid rgba(0, 245, 255, 0.18);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,10,30,0.09);
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px) scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    backdrop-filter: blur(16px);
}

.showcase-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.showcase-card.exit-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.94);
}

/* Top bar – fake browser/panel chrome */
.sc-top-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(220,10,30,0.12);
}

.sc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sc-dot.red    { background: #ff5f57; box-shadow: 0 0 6px #ff5f57; }
.sc-dot.yellow { background: #febc2e; box-shadow: 0 0 6px #febc2e; }
.sc-dot.green  { background: #28c840; box-shadow: 0 0 6px #28c840; }

.sc-title-bar {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    margin-left: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card body */
.sc-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 24px;
    height: calc(100% - 36px);
    gap: 10px;
}

.ff-theme    { background: linear-gradient(160deg, rgba(255,107,0,0.10) 0%, rgba(13,13,24,0) 60%); }
.gta-theme   { background: linear-gradient(160deg, rgba(220,10,30,0.10) 0%, rgba(13,13,24,0) 60%); }
.fivem-theme { background: linear-gradient(160deg, rgba(130,0,255,0.13) 0%, rgba(180,0,20,0.07) 60%, rgba(13,13,24,0) 80%); }

/* Icon with ring */
.sc-game-icon {
    position: relative;
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-game-icon img {
    width: 64px; height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(220,10,30,0.6));
    position: relative;
    z-index: 1;
    animation: scIconBob 3s ease-in-out infinite;
}

@keyframes scIconBob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

.sc-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(220,10,30,0.35);
    animation: spin 10s linear infinite;
}

/* Game name */
.sc-game-name {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 24px rgba(220,10,30,0.5);
}

/* Price */
.sc-price-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
}
.sc-price-tag span {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: var(--glow-orange);
}

/* Feature chips */
.sc-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.chip {
    background: rgba(220,10,30,0.08);
    border: 1px solid rgba(220,10,30,0.22);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.showcase-card.active .chip:hover {
    background: rgba(220,10,30,0.16);
}

/* Live status row */
.sc-status-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
}

.sc-live-dot {
    width: 8px; height: 8px;
    background: #ff2244;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff2244;
    animation: pulse 1.5s ease-in-out infinite;
}

.sc-live-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #ff2244;
    letter-spacing: 2px;
}

/* Dots */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.sdot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.sdot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(255,107,0,0.6);
    width: 24px;
    border-radius: 4px;
}

/* Arrows */
.sc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px; height: 34px;
    background: rgba(13,13,24,0.85);
    border: 1px solid rgba(200,10,25,0.25);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.sc-prev { left: -18px; }
.sc-next { right: -18px; }

.sc-arrow:hover {
    background: rgba(255,107,0,0.2);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(255,107,0,0.4);
    color: var(--primary);
}

@media (max-width: 900px) {
    .game-showcase { width: 280px; }
    .showcase-cards { height: 290px; }
    .sc-prev { left: -14px; }
    .sc-next { right: -14px; }
}

/* ===== SECTION SHARED ===== */
section {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

.section-title .accent {
    color: var(--accent);
    text-shadow: var(--glow-cyan);
}

/* ===== GAMES SECTION ===== */
.games-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Radial plasma glow background — unique per-card color zones */
.games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 18% 50%, rgba(220,10,30,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 50% 55% at 50% 55%, rgba(180,0,20,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 55% at 82% 50%, rgba(120,0,15,0.07) 0%, transparent 65%);
    animation: gameBgPulse 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes gameBgPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    50%  { opacity: 1.0; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(0.97); }
}

/* Moving circuit-line background */
.games-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220,10,30,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,10,30,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gameGridMove 15s linear infinite;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}

@keyframes gameGridMove {
    0%   { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── GAME CARD ── */
.game-card {
    position: relative;
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;

    /* Glassmorphism */
    background: rgba(10, 10, 20, 0.50);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.07);

    /* Float animation per card */
    animation: gameCardFloat 7s ease-in-out infinite;
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s;
}

.game-card:nth-child(1) {
    animation-delay: 0s;
    --game-color: 255,107,0;
    --game-color2: 255,0,64;
}
.game-card:nth-child(2) {
    animation-delay: 2.3s;
    --game-color: 255,40,60;
    --game-color2: 180,10,25;
}
.game-card:nth-child(3) {
    animation-delay: 4.6s;
    --game-color: 200,5,20;
    --game-color2: 255,40,60;
}

@keyframes gameCardFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* Top animated color bar */
.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg,
        rgba(var(--game-color),0),
        rgba(var(--game-color),1) 30%,
        rgba(var(--game-color2),1) 70%,
        rgba(var(--game-color2),0)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    border-radius: 3px 3px 0 0;
}

.game-card:hover::before { transform: scaleX(1); }

/* Inner glow spotlight on hover */
.game-card::after {
    content: '';
    position: absolute;
    top: -60%; left: 50%;
    width: 120%; height: 120%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 0%,
        rgba(var(--game-color),0.12) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.game-card:hover::after { opacity: 1; }

.game-card:hover {
    border-color: rgba(var(--game-color), 0.45);
    box-shadow:
        0 20px 55px rgba(0,0,0,0.45),
        0 0 25px rgba(var(--game-color),0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-14px) scale(1.03);
    animation: none;
}

/* Icon container */
.game-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Rotating ring behind icon */
.game-icon::before {
    content: '';
    position: absolute;
    width: 88px; height: 88px;
    border-radius: 50%;
    border: 1px solid rgba(var(--game-color),0.25);
    animation: ringRotate 6s linear infinite;
}

.game-icon::after {
    content: '';
    position: absolute;
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1px dashed rgba(var(--game-color),0.15);
    animation: ringRotate 4s linear infinite reverse;
}

@keyframes ringRotate {
    0%   { transform: rotate(0deg)   scale(1);    opacity: 0.5; }
    50%  { transform: rotate(180deg) scale(1.08); opacity: 1;   }
    100% { transform: rotate(360deg) scale(1);    opacity: 0.5; }
}

.game-icon img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(var(--game-color),0.6));
    transition: filter 0.4s, transform 0.4s;
    position: relative;
    z-index: 1;
    animation: iconBreathe 4s ease-in-out infinite;
}

@keyframes iconBreathe {
    0%, 100% { transform: scale(1);    }
    50%       { transform: scale(1.07); }
}

.game-card:hover .game-icon img {
    filter: drop-shadow(0 0 22px rgba(var(--game-color),1));
    transform: scale(1.15);
    animation: none;
}

.game-card h3 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 20px rgba(var(--game-color),0.4);
    transition: text-shadow 0.4s;
}

.game-card:hover h3 {
    text-shadow: 0 0 30px rgba(var(--game-color),0.8);
}

.game-card p {
    font-size: 0.83rem;
    color: rgba(180,180,210,0.7);
    line-height: 1.7;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.game-card:hover p {
    color: rgba(220,220,240,0.9);
}

/* Status badge */
.game-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    position: relative;
}

.game-status.active {
    background: none;
    border: none;
    color: transparent;
    font-size: 0;
    padding: 0;
    width: 130px;
    height: 32px;
}

/* ── Animated rotating border via conic-gradient ── */
.game-status.active::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: conic-gradient(
        from var(--a, 0deg),
        #00ff88 0%,
        transparent 20%,
        transparent 80%,
        #00ff88 100%
    );
    animation: rotateBorder 2.5s linear infinite;
    z-index: 0;
}

@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes rotateBorder {
    to { --a: 360deg; }
}

/* ── Inner badge ── */
.game-status.active::after {
    content: '⬤  ACTIVE';
    position: absolute;
    inset: 1.5px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-family: var(--font-mono);
    letter-spacing: 3px;
    font-weight: 700;
    color: #00ff88;

    background:
        linear-gradient(135deg,
            rgba(0,20,10,0.95) 0%,
            rgba(0,40,20,0.90) 100%
        );

    text-shadow:
        0 0 8px rgba(0,255,136,0.9),
        0 0 20px rgba(0,255,136,0.4);

    box-shadow:
        inset 0 0 14px rgba(0,255,136,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);

    animation: activeInnerPulse 2s ease-in-out infinite alternate;
    z-index: 1;
    backdrop-filter: blur(4px);
}

@keyframes activeInnerPulse {
    0%   {
        color: #00ff88;
        text-shadow: 0 0 8px rgba(0,255,136,0.9), 0 0 20px rgba(0,255,136,0.4);
        background: linear-gradient(135deg, rgba(0,20,10,0.95), rgba(0,40,20,0.90));
    }
    100% {
        color: #44ffaa;
        text-shadow: 0 0 14px rgba(0,255,136,1), 0 0 35px rgba(0,255,136,0.6);
        background: linear-gradient(135deg, rgba(0,30,15,0.95), rgba(0,55,25,0.92));
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Animated orb background */
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(220,10,30,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(180,0,20,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(100,0,15,0.05) 0%, transparent 70%);
    animation: orbShift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbShift {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.04); }
    66%  { transform: translate(-20px, 15px) scale(0.97); }
    100% { transform: translate(10px, -10px) scale(1.02); }
}

/* Animated grid lines */
.products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220,10,30,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,10,30,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

@keyframes gridDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── PRODUCT CARD ── */
.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
    background: rgba(10, 10, 20, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.07);
    animation: cardFloat 6s ease-in-out infinite;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 2s; }
.product-card:nth-child(3) { animation-delay: 4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

/* Animated border glow */
.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(
        var(--card-angle, 135deg),
        rgba(255,107,0,0.0),
        rgba(220,10,30,0.5),
        rgba(255,107,0,0.0)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSpin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

@keyframes borderSpin {
    0%   { --card-angle: 0deg; }
    100% { --card-angle: 360deg; }
}

.product-card:hover::before { opacity: 1; }

/* Inner shine sweep */
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::after { left: 160%; }

.product-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.5),
        0 0 30px rgba(160,0,20,0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
    animation: none;
}

/* Featured card */
.product-card.featured {
    background: rgba(15, 10, 25, 0.65);
    border-color: rgba(220,10,30,0.4);
    box-shadow:
        0 0 40px rgba(220,10,30,0.18),
        0 20px 50px rgba(0,0,0,0.4);
    transform: scale(1.04) translateY(-4px);
    animation-duration: 5s;
}

.product-card.featured:hover {
    transform: scale(1.04) translateY(-16px);
}

.featured-badge {
    position: absolute;
    top: 0; right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0 0 10px 10px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

/* Card header */
.card-header {
    padding: 22px 24px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-header.ff {
    background: linear-gradient(135deg, rgba(255,107,0,0.25) 0%, rgba(255,0,64,0.15) 100%);
    border-bottom: 1px solid rgba(255,107,0,0.2);
}
.card-header.gta {
    background: linear-gradient(135deg, rgba(180,0,20,0.15) 0%, rgba(140,0,15,0.18) 100%);
    border-bottom: 1px solid rgba(200,10,25,0.25);
}
.card-header.fivem {
    background: linear-gradient(135deg, rgba(160,5,15,0.22) 0%, rgba(200,10,25,0.18) 100%);
    border-bottom: 1px solid rgba(160,5,15,0.22);
}

.card-game {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-game-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,107,0,0.8));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,107,0,0.7)); }
    50%       { filter: drop-shadow(0 0 14px rgba(220,10,30,0.9)); }
}

.card-badge {
    position: absolute;
    top: 0; right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0 0 10px 10px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

/* Price */
.card-price {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(220,10,30,0.12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.price-amount {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff4455, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(220,10,30,0.5));
    animation: priceGlow 3s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0%   { filter: drop-shadow(0 0 8px rgba(220,10,30,0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(220,10,30,0.8)); }
}

.price-period {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-left: 4px;
}

/* Features */
.card-features {
    padding: 20px 24px;
    list-style: none;
    position: relative;
    z-index: 2;
}

.card-features li {
    padding: 9px 0;
    font-size: 0.88rem;
    color: rgba(200,200,230,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.25s, padding-left 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li:hover {
    color: #fff;
    padding-left: 6px;
}

.card-features li:hover { color: var(--text); }
.card-features li:last-child { border-bottom: none; }

.btn-buy {
    width: calc(100% - 48px);
    margin: 4px 24px 28px;
    padding: 15px;
    position: relative;
    background: linear-gradient(135deg, rgba(220,10,30,0.18), rgba(255,0,64,0.1));
    color: white;
    border: 1px solid rgba(255,107,0,0.5);
    border-radius: 12px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    text-transform: uppercase;
    display: block;
    overflow: hidden;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.btn-buy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.35s;
    z-index: -1;
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s, opacity 0.5s;
    opacity: 0;
    z-index: 0;
}

.btn-buy:hover::before { opacity: 1; }
.btn-buy:hover::after  { width: 300px; height: 300px; opacity: 0; }

.btn-buy:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow:
        0 8px 30px rgba(255,107,0,0.4),
        0 0 20px rgba(255,0,64,0.2);
    letter-spacing: 3px;
}

.btn-buy:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== CHECKOUT SECTION ===== */
.checkout-section {
    background: linear-gradient(180deg, transparent, rgba(220, 10, 30, 0.04), transparent);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-info h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--accent);
}

.feature-list { margin-bottom: 30px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s;
}

.feature-item:hover { color: var(--text); }
.feature-item span { font-size: 1.2rem; }

.payment-badges {
    display: flex;
    gap: 12px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* ===== FORM ===== */
.checkout-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}

.selected-product-display {
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.1);
}

.form-group input::placeholder { color: rgba(255, 255, 255, 0.2); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.total-display {
    text-align: center;
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 20px 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.total-display span {
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: var(--glow-cyan);
}

.btn-checkout {
    position: relative;
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 14px;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    z-index: 1;

    /* Deep red layered gradient */
    background: linear-gradient(135deg,
        #c00018 0%,
        #e8001e 35%,
        #ff1a35 60%,
        #c00018 100%
    );
    background-size: 200% 200%;
    animation: payBtnShift 4s ease infinite;

    box-shadow:
        0 4px 24px rgba(200,0,30,0.45),
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 -2px 0 rgba(0,0,0,0.25) inset;

    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.3s, letter-spacing 0.25s;
}

@keyframes payBtnShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Top edge highlight */
.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.35) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Shimmer sweep */
.btn-checkout::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );
    transform: skewX(-20deg);
    animation: payShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes payShimmer {
    0%        { left: -120%; opacity:0; }
    15%       { opacity: 1; }
    65%, 100% { left: 160%; opacity:0; }
}

/* Outer pulse ring */
.btn-checkout-wrap {
    position: relative;
}

.btn-checkout-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    border: 1.5px solid rgba(220,0,30,0.5);
    animation: payRingPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes payRingPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 0;   transform: scale(1.03); }
}

.btn-checkout:hover {
    transform: translateY(-3px);
    letter-spacing: 4px;
    box-shadow:
        0 8px 35px rgba(200,0,30,0.6),
        0 0 20px rgba(255,30,50,0.3),
        0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-checkout:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 2px 12px rgba(200,0,30,0.4);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 60px;
    border-top: 1px solid var(--border);
    background: rgba(5, 5, 8, 0.8);
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-sub { font-size: 0.8rem !important; }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal.active { display: flex; }

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(220, 10, 30, 0.45);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    animation: modalIn 0.4s ease;
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon { font-size: 3.5rem; margin-bottom: 20px; }
.modal-content h2 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: #ff2244;
    margin-bottom: 12px;
}
.modal-content p { color: var(--text-dim); margin-bottom: 8px; }
.modal-email { color: var(--accent) !important; font-family: var(--font-mono); }
.modal-content .btn-primary { margin-top: 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .navbar { padding: 14px 24px; }
    .nav-links { display: none; }

    /* Hero — stack vertically, content first, showcase below */
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 110px 24px 80px;
        text-align: center;
        gap: 50px;
        min-height: auto;
    }
    .hero-content {
        width: 100%;
        order: 1;
    }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 280px; height: 280px; }

    /* Showcase card — full width, below hero content */
    .game-showcase {
        order: 2;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .showcase-cards {
        height: 320px;
    }

    section { padding: 60px 24px; }
    .games-grid, .products-grid { grid-template-columns: 1fr; }
    .product-card.featured { transform: scale(1); }
    .checkout-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== CREDENTIALS STEP STYLES ===== */
.credentials-divider {
    text-align: center;
    margin: 28px 0 20px;
    position: relative;
    font-family: var(--font-title);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.credentials-divider::before,
.credentials-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20%;
    height: 1px;
    background: var(--border);
}

.credentials-divider::before { left: 0; }
.credentials-divider::after { right: 0; }

.credentials-info-box {
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: #ffaa66;
    line-height: 1.5;
}

/* ===== VALIDITY PERIOD CARDS ===== */
.validity-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.validity-card {
    background: rgba(13, 13, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.validity-card:hover {
    border-color: var(--accent);
    background: rgba(0, 245, 255, 0.05);
    transform: translateY(-2px);
}

.validity-card.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.25);
}

.validity-period {
    font-family: var(--font-title);
    font-size: 0.72rem;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.validity-price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.validity-card.selected .validity-period {
    color: var(--accent);
}

/* ===== MODAL CREDENTIALS DISPLAY ===== */
.modal-credentials {
    margin: 16px 0;
    text-align: left;
}

.cred-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(220,10,30,0.12);
    gap: 10px;
}

.cred-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cred-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
    white-space: nowrap;
    min-width: 100px;
}

.cred-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    text-align: right;
    word-break: break-all;
}

.cred-warning {
    font-size: 0.78rem;
    color: #ffaa44;
    text-align: center;
    padding: 8px;
    background: rgba(255, 165, 0, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

/* ===== RESPONSIVE VALIDITY ===== */
@media (max-width: 480px) {
    .validity-options {
        grid-template-columns: 1fr;
    }
}

/* ===== ACTIVATION NOTICE IN MODAL ===== */
.activation-notice {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.15), rgba(0, 50, 100, 0.15));
    border: 1px solid rgba(0, 245, 100, 0.3);
    border-radius: 10px;
    padding: 16px;
    margin-top: 14px;
    text-align: center;
}

.activation-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.activation-notice h4 {
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: #ff2244;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.activation-notice p {
    font-size: 0.82rem;
    color: #aaccaa;
    line-height: 1.6;
    margin-bottom: 8px;
}

.activation-notice strong {
    color: #00f5ff;
}

.activation-sub {
    font-size: 0.78rem !important;
    color: #8899aa !important;
    margin-top: 6px !important;
}

.contact-email-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(200,10,25,0.18), rgba(0,100,200,0.2));
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 6px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-email-btn:hover {
    background: rgba(0, 245, 255, 0.2);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.3);
}

/* Email sent status */
.email-sent {
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.3);
    border-radius: 6px;
    font-size: 0.78rem;
    color: #00cc66;
    text-align: center;
}

/* Modal scroll for small screens */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}


/* ================================================
   CHECKOUT MODAL
   ================================================ */

.checkout-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;

    /* Backdrop */
    background: rgba(4, 2, 3, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.checkout-modal-overlay.open {
    display: flex;
    animation: modalOverlayIn 0.35s ease forwards;
}

@keyframes modalOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Modal box ── */
.checkout-modal-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 0;

    background: rgba(12, 6, 8, 0.96);
    border: 1px solid rgba(220, 10, 30, 0.25);

    box-shadow:
        0 0 0 1px rgba(220,10,30,0.10),
        0 30px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(220,10,30,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);

    animation: modalBoxIn 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
    transform-origin: center bottom;
}

@keyframes modalBoxIn {
    from { opacity: 0; transform: scale(0.88) translateY(30px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.checkout-modal-box::-webkit-scrollbar { width: 4px; }
.checkout-modal-box::-webkit-scrollbar-track { background: transparent; }
.checkout-modal-box::-webkit-scrollbar-thumb { background: rgba(220,10,30,0.4); border-radius: 2px; }

/* ── Close button ── */
.modal-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.modal-close-btn:hover {
    background: rgba(220,10,30,0.3);
    border-color: rgba(220,10,30,0.6);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* ── Header ── */
.checkout-modal-header {
    padding: 28px 32px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.checkout-modal-logo .logo-yt   { color: var(--primary); font-family: var(--font-title); font-weight: 900; font-size: 1.1rem; letter-spacing: 2px; }
.checkout-modal-logo .logo-dinna{ color: var(--accent);  font-family: var(--font-title); font-weight: 900; font-size: 1.1rem; letter-spacing: 2px; }

.checkout-modal-product {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(220,10,30,0.10);
    border: 1px solid rgba(220,10,30,0.25);
    padding: 5px 14px;
    border-radius: 50px;
}

/* ── Animated divider ── */
.checkout-modal-divider {
    height: 1px;
    margin: 0 32px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(220,10,30,0.6) 30%,
        rgba(255,255,255,0.15) 50%,
        rgba(220,10,30,0.6) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: dividerShimmer 3s linear infinite;
}

@keyframes dividerShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Body ── */
.checkout-modal-body {
    padding: 24px 32px 32px;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-step-label {
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 18px;
    opacity: 0.85;
}

/* ══════════════════════════════════════════
   MODAL VALIDATE CARD BUTTON
   ══════════════════════════════════════════ */
.modal-btn-validate {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 15px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    border-radius: 10px;

    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00ff88;

    /* Dark base */
    background: #0a1a10;
    border: 1px solid rgba(0,255,136,0.55);

    box-shadow:
        0 0 12px rgba(0,255,136,0.10),
        inset 0 0 30px rgba(0,255,136,0.03);

    transition:
        transform      0.28s cubic-bezier(0.23,1,0.32,1),
        box-shadow     0.28s,
        border-color   0.28s,
        letter-spacing 0.22s;
}

/* Animated corner accents */
.modal-btn-validate::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg,
        rgba(0,255,136,0.07) 0%,
        transparent 50%,
        rgba(0,255,136,0.04) 100%
    );
    pointer-events: none;
}

/* Moving highlight bar */
.modal-btn-validate::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0,255,136,0.10),
        transparent
    );
    transform: skewX(-15deg);
    animation: vBtnSweep 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vBtnSweep {
    0%        { left: -100%; opacity: 0; }
    20%       { opacity: 1; }
    65%, 100% { left: 150%; opacity: 0; }
}

.modal-btn-validate:hover:not(:disabled) {
    color: #44ffaa;
    border-color: rgba(0,255,136,0.85);
    letter-spacing: 2.8px;
    transform: translateY(-2px);
    box-shadow:
        0 0 24px rgba(0,255,136,0.22),
        0 6px 16px rgba(0,0,0,0.4),
        inset 0 0 40px rgba(0,255,136,0.06);
}

.modal-btn-validate:active:not(:disabled) {
    transform: scale(0.99);
}

/* Validated state */
.modal-btn-validate:disabled {
    background: linear-gradient(135deg, #007a5a, #00b894, #00cec9);
    background-size: 200% 200%;
    animation: vBtnValidated 3s ease infinite;
    border-color: transparent;
    color: #fff;
    cursor: default;
    letter-spacing: 2px;
    box-shadow: 0 0 18px rgba(0,190,140,0.30),
                inset 0 1px 0 rgba(255,255,255,0.12);
}

.modal-btn-validate:disabled::before,
.modal-btn-validate:disabled::after { display: none; }

@keyframes vBtnValidated {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════════
   MODAL PAY NOW BUTTON
   ══════════════════════════════════════════ */
.btn-checkout-wrap {
    position: relative;
    margin-top: 4px;
}

/* Outer pulse ring */
.btn-checkout-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 13px;
    border: 1px solid rgba(200,0,30,0.50);
    animation: payRing 2.4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes payRing {
    0%, 100% { opacity: 0.6; transform: scale(1);    }
    50%       { opacity: 0;   transform: scale(1.035); }
}

.modal-btn-pay {
    display: block;
    width: 100%;
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    border-radius: 10px;
    border: none;

    font-family: var(--font-title);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;

    /* Rich dark red */
    background: linear-gradient(135deg,
        #6b0010 0%,
        #aa0020 30%,
        #d40028 55%,
        #aa0020 80%,
        #6b0010 100%
    );
    background-size: 250% 250%;
    animation: payMove 5s ease infinite;

    box-shadow:
        0 4px 18px rgba(160,0,28,0.45),
        0 1px 0 rgba(255,255,255,0.10) inset,
        0 -2px 0 rgba(0,0,0,0.35) inset;

    transition:
        transform      0.28s cubic-bezier(0.23,1,0.32,1),
        box-shadow     0.28s,
        letter-spacing 0.22s;
}

@keyframes payMove {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* Top sheen */
.modal-btn-pay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.08) 0%,
        transparent 100%
    );
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}

/* Shimmer */
.modal-btn-pay::after {
    content: '';
    position: absolute;
    top: 0; left: -110%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.11),
        transparent
    );
    transform: skewX(-15deg);
    animation: payBtnSweep 2.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes payBtnSweep {
    0%        { left: -110%; opacity: 0; }
    15%       { opacity: 1; }
    60%, 100% { left: 150%; opacity: 0; }
}

.modal-btn-pay:hover {
    transform: translateY(-2px);
    letter-spacing: 3.2px;
    box-shadow:
        0 8px 28px rgba(160,0,28,0.55),
        0 0 14px rgba(220,0,40,0.22),
        0 1px 0 rgba(255,255,255,0.14) inset;
}

.modal-btn-pay:active {
    transform: scale(0.99);
    box-shadow: 0 2px 8px rgba(160,0,28,0.40);
}

.modal-btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: none;
}

/* Step 2 slide in */
#mCredentialsStep {
    animation: stepSlideIn 0.45s cubic-bezier(0.23,1,0.32,1) forwards;
}

@keyframes stepSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Input fields inside modal ── */
.checkout-modal-body .form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    font-family: var(--font-mono);
    letter-spacing: 1.5px;
}

.checkout-modal-body .form-group input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.checkout-modal-body .form-group input:focus {
    border-color: rgba(220,10,30,0.55);
    background: rgba(220,10,30,0.05);
    box-shadow: 0 0 0 3px rgba(220,10,30,0.10);
}

.checkout-modal-body .form-group {
    margin-bottom: 16px;
}

/* ── Validity cards inside modal ── */
#mValidityOptions {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 8px;
}

/* ── Total display ── */
#mTotalDisplay {
    text-align: center;
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--text-dim);
    margin: 18px 0 14px;
    letter-spacing: 1px;
}

#mTotalDisplay span {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(220,10,30,0.6);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .checkout-modal-box { border-radius: 14px; }
    .checkout-modal-header { padding: 22px 20px 16px; }
    .checkout-modal-body  { padding: 16px 20px 24px; }
    .checkout-modal-divider { margin: 0 20px; }
    .modal-form-grid { grid-template-columns: 1fr; }
    #mValidityOptions { grid-template-columns: 1fr; }
}


/* ================================================
   RECEIPT MODAL — Kalli Payment Style
   ================================================ */

.receipt-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 1, 1, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.receipt-overlay.active {
    display: flex;
    animation: receiptOverlayIn 0.3s ease forwards;
}

@keyframes receiptOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Receipt paper ── */
.receipt-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    overflow-y: auto;
    background: #0e0608;
    border-radius: 20px;
    border: 1px solid rgba(220,10,30,0.20);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 100px rgba(0,0,0,0.8),
        0 0 60px rgba(220,10,30,0.10);
    animation: receiptIn 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
    padding: 0 0 28px;
}

.receipt-modal::-webkit-scrollbar { width: 3px; }
.receipt-modal::-webkit-scrollbar-thumb { background: rgba(220,10,30,0.4); border-radius: 2px; }

@keyframes receiptIn {
    from { opacity:0; transform: scale(0.85) translateY(40px); }
    to   { opacity:1; transform: scale(1)    translateY(0);    }
}

/* ── Success ring ── */
.receipt-success-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 36px 0 20px;
}

.receipt-ring-outer {
    position: absolute;
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(0,255,136,0.20);
    animation: ringExpand 2s ease-in-out infinite;
}

.receipt-ring-inner {
    position: absolute;
    width: 74px; height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(0,255,136,0.35);
    animation: ringExpand 2s 0.4s ease-in-out infinite;
}

@keyframes ringExpand {
    0%   { transform: scale(0.9); opacity: 0.8; }
    50%  { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.receipt-checkmark {
    width: 60px; height: 60px;
    position: relative;
    z-index: 1;
}

.receipt-checkmark svg {
    width: 100%; height: 100%;
}

.receipt-check-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.6s 0.3s ease forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* ── Header ── */
.receipt-header {
    text-align: center;
    padding: 0 24px 20px;
}

.receipt-brand {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.receipt-brand-dna       { color: #e01020; }
.receipt-brand-community { color: #ff4455; }

.receipt-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
}

.receipt-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: 50px;
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.30);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    color: #00ff88;
    font-weight: 700;
}

.receipt-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 6px #00ff88;
    animation: statusPing 1.5s ease-in-out infinite;
}

/* ── Dashed divider (receipt style) ── */
.receipt-dashed {
    border: none;
    border-top: 1.5px dashed rgba(255,255,255,0.08);
    margin: 16px 24px;
    position: relative;
}

/* Circular notches on dashed divider */
.receipt-dashed::before,
.receipt-dashed::after {
    content: '';
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(2,1,1,0.92);
    border: 1.5px dashed rgba(255,255,255,0.08);
}
.receipt-dashed::before { left: -31px; }
.receipt-dashed::after  { right: -31px; }

/* ── Meta rows ── */
.receipt-meta {
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.receipt-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 1px;
}

.receipt-meta-row span:first-child {
    color: rgba(255,255,255,0.30);
    font-size: 0.60rem;
    letter-spacing: 2px;
}

.receipt-meta-row span:last-child {
    color: rgba(255,255,255,0.80);
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.receipt-email { color: #ff4455 !important; }

/* ── Section label ── */
.receipt-section-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.25);
    padding: 0 28px;
    margin-bottom: 10px;
}

/* ── Panel details box ── */
.receipt-panel-box {
    margin: 0 24px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.receipt-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.receipt-panel-row:last-child { border-bottom: none; }
.receipt-panel-row:hover { background: rgba(220,10,30,0.05); }

.receipt-panel-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.30);
}

.receipt-panel-value {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
    text-align: right;
    max-width: 55%;
    word-break: break-all;
}

/* Copy hint on credentials */
.receipt-copyable {
    cursor: pointer;
    position: relative;
    color: #ff6677;
    transition: color 0.2s;
}
.receipt-copyable:hover { color: #ff2244; }
.receipt-copyable:hover::after {
    content: '📋 TAP TO COPY';
    position: absolute;
    right: 0; top: -22px;
    font-size: 0.55rem;
    background: rgba(220,10,30,0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* ── Total amount ── */
.receipt-total-area {
    text-align: center;
    padding: 4px 24px;
}

.receipt-total-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 6px;
}

.receipt-total-amount {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e01020, #ff4455, #ff6677);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(220,10,30,0.5));
    animation: amountGlow 2s ease-in-out infinite alternate;
    letter-spacing: 1px;
}

@keyframes amountGlow {
    0%   { filter: drop-shadow(0 0 10px rgba(220,10,30,0.4)); }
    100% { filter: drop-shadow(0 0 25px rgba(220,10,30,0.8)); }
}

/* ── Activation notice ── */
.receipt-activation {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 24px;
    padding: 14px 16px;
    background: rgba(255,200,0,0.05);
    border: 1px solid rgba(255,200,0,0.12);
    border-radius: 10px;
}

.receipt-activation-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.receipt-activation-text strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: rgba(255,220,100,0.9);
    margin-bottom: 5px;
}

.receipt-activation-text p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.40);
    line-height: 1.6;
}

/* ── Warning ── */
.receipt-warning {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    color: rgba(255,150,0,0.7);
    padding: 14px 28px 0;
    animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 1;   }
}

/* ── Close button ── */
.receipt-close-btn {
    display: block;
    width: calc(100% - 48px);
    margin: 20px 24px 0;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid rgba(220,10,30,0.35);
    background: rgba(220,10,30,0.08);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.receipt-close-btn:hover {
    background: rgba(220,10,30,0.20);
    border-color: rgba(220,10,30,0.6);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Barcode decoration ── */
.receipt-barcode {
    text-align: center;
    padding: 20px 24px 0;
}

.receipt-barcode-bars {
    height: 28px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.08) 0px,
        rgba(255,255,255,0.08) 2px,
        transparent 2px,
        transparent 5px,
        rgba(255,255,255,0.04) 5px,
        rgba(255,255,255,0.04) 7px,
        transparent 7px,
        transparent 10px,
        rgba(255,255,255,0.10) 10px,
        rgba(255,255,255,0.10) 13px,
        transparent 13px,
        transparent 16px
    );
    border-radius: 2px;
    margin-bottom: 6px;
}

.receipt-barcode-text {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.15);
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .receipt-modal { border-radius: 14px; }
    .receipt-total-amount { font-size: 1.8rem; }
}

/* ================================================
   DISCORD SECTION
   ================================================ */
.discord-section {
    position: relative;
    overflow: hidden;
    padding: 100px 60px;
    z-index: 1;
}

/* Animated background */
.discord-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(88,101,242,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 15% 50%, rgba(220,10,30,0.07) 0%, transparent 65%),
        linear-gradient(180deg, transparent 0%, rgba(5,3,8,0.60) 100%);
    animation: discordBgPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes discordBgPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.03); }
}

/* Moving grid */
.discord-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(88,101,242,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88,101,242,0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: discordGrid 18s linear infinite;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 80% 50%, black 30%, transparent 70%);
}

@keyframes discordGrid {
    0%   { background-position: 0 0; }
    100% { background-position: 55px 55px; }
}

.discord-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ── Text column ── */
.discord-text-col {
    flex: 1;
    min-width: 0;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(88,101,242,0.12);
    border: 1px solid rgba(88,101,242,0.35);
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: #7289da;
    margin-bottom: 24px;
    animation: discordBadgePulse 3s ease-in-out infinite;
}

@keyframes discordBadgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(88,101,242,0.15); }
    50%       { box-shadow: 0 0 22px rgba(88,101,242,0.30); }
}

.discord-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.discord-title-accent {
    background: linear-gradient(135deg, #5865f2, #7289da, #99aab5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

/* Stats */
.discord-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.discord-stat { text-align: center; }

.dstat-num {
    display: block;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.dstat-online {
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0,255,136,0.6);
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { text-shadow: 0 0 10px rgba(0,255,136,0.5); }
    50%       { text-shadow: 0 0 22px rgba(0,255,136,0.9); }
}

.dstat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.30);
    letter-spacing: 2px;
    font-family: var(--font-mono);
    margin-top: 4px;
}

.discord-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

/* ── Widget column ── */
.discord-widget-col {
    flex-shrink: 0;
}

.discord-widget-wrap {
    position: relative;
}

/* Glow behind widget */
.discord-widget-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center,
        rgba(88,101,242,0.18) 0%,
        transparent 70%
    );
    border-radius: 30px;
    animation: widgetGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes widgetGlow {
    0%   { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1;   transform: scale(1.05); }
}

.discord-iframe {
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(88,101,242,0.25);
    box-shadow:
        0 0 0 1px rgba(88,101,242,0.10),
        0 20px 60px rgba(0,0,0,0.60),
        0 0 40px rgba(88,101,242,0.10);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s, transform 0.4s;
}

.discord-iframe:hover {
    box-shadow:
        0 0 0 1px rgba(88,101,242,0.25),
        0 24px 70px rgba(0,0,0,0.70),
        0 0 55px rgba(88,101,242,0.18);
    transform: translateY(-4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .discord-section { padding: 60px 24px; }
    .discord-section-inner {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    .discord-desc { max-width: 100%; margin: 0 auto 28px; }
    .discord-stats { justify-content: center; }
    .discord-badge { margin: 0 auto 20px; }
    .discord-iframe { width: 100%; max-width: 350px; }
}

/* ===== FREE PLAN SECTION ===== */
.free-plan-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
}

.free-plan-card {
    max-width: 360px;
    width: 100%;
    border: 2px solid rgba(0, 255, 136, 0.35) !important;
    background: linear-gradient(145deg, rgba(0,30,20,0.95), rgba(0,20,15,0.98)) !important;
    position: relative;
    overflow: visible !important;
    box-shadow: 0 0 30px rgba(0,255,136,0.12), 0 8px 32px rgba(0,0,0,0.5) !important;
    margin-top: 18px;
}

/* Fix: override product-card overflow:hidden so badge & icon don't get clipped */
.free-plan-row .product-card {
    overflow: visible !important;
}

.free-plan-card:hover {
    border-color: rgba(0, 255, 136, 0.7) !important;
    box-shadow: 0 0 50px rgba(0,255,136,0.22), 0 12px 40px rgba(0,0,0,0.6) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

.free-plan-badge {
    position: absolute;
    top: -16px;
    right: 20px;
    background: linear-gradient(135deg, #00c96e, #00ff88);
    color: #000;
    padding: 5px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 8px 8px 0 0;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,255,136,0.5);
    font-family: var(--font-title);
}

.free-plan-header {
    background: linear-gradient(135deg, rgba(0,255,136,0.18), rgba(0,200,100,0.1)) !important;
    border-bottom: 1px solid rgba(0,255,136,0.2);
    border-radius: 18px 18px 0 0;
}

.free-price {
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0,255,136,0.5) !important;
}

.btn-free-download {
    background: linear-gradient(135deg, #00ff88, #00c96e) !important;
    color: #000 !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,255,136,0.35) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-free-download:hover {
    background: linear-gradient(135deg, #00ffaa, #00e07a) !important;
    box-shadow: 0 6px 28px rgba(0,255,136,0.55) !important;
    transform: translateY(-2px);
}

/* Free modal box */
.free-modal-box {
    border-color: rgba(0,255,136,0.4) !important;
    box-shadow: 0 0 60px rgba(0,255,136,0.15), 0 20px 60px rgba(0,0,0,0.7) !important;
}

.free-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.free-feature-item {
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 8px;
    padding: 10px 8px;
    color: #00ff88;
    font-size: 0.85rem;
    font-weight: 600;
}

.free-download-btn {
    display: block !important;
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00c96e) !important;
    color: #000 !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    padding: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0,255,136,0.4) !important;
    letter-spacing: 1px;
}

.free-download-btn:hover {
    background: linear-gradient(135deg, #00ffaa, #00e07a) !important;
    box-shadow: 0 8px 32px rgba(0,255,136,0.6) !important;
    transform: translateY(-2px);
    color: #000 !important;
}

/* FREE PLAN icon */
.free-plan-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.9));
    animation: freePlanIconPulse 3s ease-in-out infinite;
}

@keyframes freePlanIconPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(0,255,136,0.7)); }
    50%       { filter: drop-shadow(0 0 16px rgba(0,255,136,1)); }
}

/* ================================================
   MOVED FROM script.js — JS-injected CSS blocks
   ================================================ */

/* 1. Modal close keyframes */
@keyframes modalOverlayOut {
    to { opacity: 0; }
}
@keyframes modalBoxOut {
    to { opacity: 0; transform: scale(0.9) translateY(20px); }
}

/* 2. Receipt close keyframes */
@keyframes receiptOut {
    to { opacity: 0; transform: scale(0.88) translateY(30px); }
}
@keyframes receiptOverlayOut {
    to { opacity: 0; }
}

/* 3. orbFloat keyframe */
@keyframes orbFloat {
    0%   { transform: translate(0, 0)       scale(1);   opacity: 0.6; }
    33%  { transform: translate(20px,-25px)  scale(1.3); opacity: 0.9; }
    66%  { transform: translate(-15px,15px)  scale(0.8); opacity: 0.5; }
    100% { transform: translate(10px,-10px)  scale(1.1); opacity: 0.8; }
}

/* 4. Notification system */
.dna-notif {
    position: fixed;
    top: 80px; right: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    max-width: 380px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: auto;
    animation: notifIn 0.38s cubic-bezier(0.23,1,0.32,1) forwards;
    box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.3);
}
.dna-notif.hiding {
    animation: notifOut 0.3s ease forwards;
}
@keyframes notifIn {
    from { opacity: 0; transform: translateX(110%) scale(0.92); }
    to   { opacity: 1; transform: translateX(0)    scale(1);    }
}
@keyframes notifOut {
    from { opacity: 1; transform: translateX(0)    scale(1);    }
    to   { opacity: 0; transform: translateX(110%) scale(0.92); }
}
.dna-notif-bar {
    width: 4px;
    align-self: stretch;
    flex-shrink: 0;
}
.dna-notif-body {
    flex: 1;
    padding: 13px 16px 13px 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dna-notif-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.dna-notif-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    line-height: 1.35;
    flex: 1;
}
.dna-notif-close {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.dna-notif-close:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.dna-notif-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    border-radius: 0 0 12px 12px;
    animation: notifProgress 3.5s linear forwards;
}
@keyframes notifProgress {
    from { width: 100%; }
    to   { width: 0%;   }
}
.dna-notif.error {
    background: rgba(10,3,5,0.92);
    border: 1px solid rgba(200,10,30,0.35);
    backdrop-filter: blur(16px);
}
.dna-notif.error .dna-notif-bar      { background: linear-gradient(180deg, #e0001e, #ff3355); }
.dna-notif.error .dna-notif-icon     { background: rgba(220,0,30,0.15); color: #ff4466; }
.dna-notif.error .dna-notif-text     { color: #ffccd3; }
.dna-notif.error .dna-notif-progress { background: linear-gradient(90deg, #e0001e, #ff3355); }
.dna-notif.warning {
    background: rgba(10,8,2,0.92);
    border: 1px solid rgba(200,140,0,0.35);
    backdrop-filter: blur(16px);
}
.dna-notif.warning .dna-notif-bar      { background: linear-gradient(180deg, #c88000, #ffaa00); }
.dna-notif.warning .dna-notif-icon     { background: rgba(200,140,0,0.15); color: #ffbb33; }
.dna-notif.warning .dna-notif-text     { color: #fff0cc; }
.dna-notif.warning .dna-notif-progress { background: linear-gradient(90deg, #c88000, #ffaa00); }
.dna-notif.info {
    background: rgba(3,10,6,0.92);
    border: 1px solid rgba(0,200,100,0.30);
    backdrop-filter: blur(16px);
}
.dna-notif.info .dna-notif-bar      { background: linear-gradient(180deg, #00aa66, #00ff88); }
.dna-notif.info .dna-notif-icon     { background: rgba(0,200,100,0.12); color: #00ff88; }
.dna-notif.info .dna-notif-text     { color: #ccffe8; }
.dna-notif.info .dna-notif-progress { background: linear-gradient(90deg, #00aa66, #00ff88); }

/* ===== RAR ZIP PASS TOOL CARD ===== */
.free-plan-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rar-tool-card {
    border: 2px solid rgba(0, 255, 136, 0.35) !important;
    background: linear-gradient(145deg, rgba(0,30,20,0.95), rgba(0,20,15,0.98)) !important;
    box-shadow: 0 0 30px rgba(0,255,136,0.12), 0 8px 32px rgba(0,0,0,0.5) !important;
}

.rar-tool-card:hover {
    border-color: rgba(0, 255, 136, 0.7) !important;
    box-shadow: 0 0 50px rgba(0,255,136,0.22), 0 12px 40px rgba(0,0,0,0.6) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

.rar-tool-badge {
    background: linear-gradient(135deg, #00c96e, #00ff88) !important;
    color: #000 !important;
}

.rar-tool-header {
    background: linear-gradient(135deg, rgba(0,255,136,0.18), rgba(0,200,100,0.1)) !important;
    border-bottom: 1px solid rgba(0,255,136,0.2) !important;
    border-radius: 18px 18px 0 0 !important;
}

.rar-tool-icon {
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.9)) !important;
    animation: freePlanIconPulse 3s ease-in-out infinite !important;
}

.rar-free-price {
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0,255,136,0.5) !important;
}

.rar-tool-btn {
    background: linear-gradient(135deg, #00ff88, #00c96e) !important;
    color: #000 !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,255,136,0.35) !important;
}

.rar-tool-btn:hover {
    background: linear-gradient(135deg, #00ffaa, #00e07a) !important;
    box-shadow: 0 6px 28px rgba(0,255,136,0.55) !important;
    transform: translateY(-2px);
}

.rar-modal-box {
    border-color: rgba(0,255,136,0.4) !important;
    box-shadow: 0 0 60px rgba(0,255,136,0.15), 0 20px 60px rgba(0,0,0,0.7) !important;
}

.rar-feature-item {
    background: rgba(0,255,136,0.08) !important;
    border: 1px solid rgba(0,255,136,0.2) !important;
    color: #00ff88 !important;
}

.rar-download-btn {
    background: linear-gradient(135deg, #00ff88, #00c96e) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.rar-download-btn:hover {
    background: linear-gradient(135deg, #00ffaa, #00e07a) !important;
    color: #000 !important;
}

/* =============================================
   DO VPS BANNER
   ============================================= */
.do-vps-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #06060f 0%, #0b0b1e 50%, #06060f 100%);
    border-top: 1px solid rgba(0, 105, 255, 0.28);
    border-bottom: 1px solid rgba(0, 105, 255, 0.18);
    padding: 34px 48px;
}

/* subtle grid */
.do-vps-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,100,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,100,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* red accent glow left */
.do-vps-banner::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 340px; height: 240px;
    background: radial-gradient(ellipse, rgba(220,30,30,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* blue accent glow right */
.do-vps-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.do-vps-particle {
    position: absolute;
    border-radius: 50%;
    background: #4da6ff;
    animation: doVpsPulse linear infinite;
}
@keyframes doVpsPulse {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-18px) scale(1.4); }
}

/* layout */
.do-vps-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* text block */
.do-vps-text {
    flex: 1;
    min-width: 200px;
}

.do-vps-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #ff3b3b;
    margin-bottom: 10px;
    animation: doEyebrowPulse 2.6s ease-in-out infinite;
}
@keyframes doEyebrowPulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

.do-vps-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
    white-space: nowrap;
    flex-wrap: wrap;
}

.do-vps-highlight {
    color: #ff3b3b;
    text-shadow: 0 0 28px rgba(255,59,59,0.45);
    display: inline-block;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.do-vps-sub {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.6;
}
.do-vps-sub strong { color: #00ff88; }

/* badge link */
.do-vps-badge-link {
    flex: 0 0 auto;
    display: inline-block;
    animation: doBadgeFloat 5s ease-in-out infinite;
    transition: filter 0.22s ease, transform 0.22s ease;
}
.do-vps-badge-link:hover {
    animation-play-state: paused;
    filter: brightness(1.2) drop-shadow(0 0 16px rgba(0,130,255,0.75));
    transform: scale(1.08) !important;
}
.do-vps-badge-img {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 5px;
}

@keyframes doBadgeFloat {
    0%   { transform: translateX(0px)   translateY(0px);  }
    25%  { transform: translateX(14px)  translateY(-4px); }
    50%  { transform: translateX(0px)   translateY(-7px); }
    75%  { transform: translateX(-14px) translateY(-4px); }
    100% { transform: translateX(0px)   translateY(0px);  }
}

/* mobile */
@media (max-width: 600px) {
    .do-vps-banner  { padding: 26px 20px; }
    .do-vps-inner   { flex-direction: column; align-items: flex-start; gap: 22px; }
    .do-vps-title   { white-space: normal; font-size: 1rem; }
}
