/* ==========================================
   CSS RESET & VARIABLES
   ========================================== */
:root {
    --bg-color: #050505;
    --red-accent: #ff1e3c;
    --red-glow: rgba(255, 30, 60, 0.4);
    --lime-accent: #ffffff;
    --lime-glow: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a5a5b5;
    --card-bg: rgba(13, 13, 20, 0.55);
    --card-border: rgba(255, 255, 255, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: background-color 0.2s;
    animation: cursorPulse 1.4s infinite alternate ease-in-out;
}

/* Hover States for Custom Cursor */
.custom-cursor.cursor-hover {
    background-color: var(--red-accent);
    animation: cursorPulseRed 0.8s infinite alternate ease-in-out;
}

@keyframes cursorPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.25);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

@keyframes cursorPulseRed {
    0% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 6px rgba(255, 30, 60, 0.5), 0 0 12px rgba(255, 30, 60, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        box-shadow: 0 0 12px rgba(255, 30, 60, 0.8), 0 0 24px rgba(255, 30, 60, 0.5);
    }
}

a, button, .btn, .ip-copy-box, .slider-arrow, .slider-dot, .social-btn, .masonry-item {
    cursor: none !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #1c1c24;
    border-radius: 4px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-accent);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ==========================================
   PARTICLES BACKDROP
   ========================================== */
#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================
   REVEAL ON SCROLL
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   TYPOGRAPHY & BUTTONS
   ========================================== */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.accent-red {
    color: var(--red-accent);
}

.accent-lime {
    color: var(--lime-accent);
}

.text-glow-red {
    color: #fff;
    text-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--red-glow);
}

.text-glow-lime {
    color: #fff;
    text-shadow: 0 0 10px var(--lime-glow), 0 0 20px var(--lime-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--red-accent);
    color: #ffffff;
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #ff3c54;
    box-shadow: 0 0 30px rgba(255, 30, 60, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--red-accent);
    box-shadow: 0 0 15px var(--red-glow);
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

/* ==========================================
   GLASSMORPHISM CARD STYLING
   ========================================== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 15px; /* Float slightly off-screen top */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    background: rgba(8, 8, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.5s ease-in-out, 
                background 0.4s ease, 
                border-color 0.4s ease, 
                width 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                top 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    padding: 0 24px;
}

.main-header.scrolled {
    top: 5px;
    width: 95%;
    background: rgba(5, 5, 6, 0.85);
    border-color: rgba(255, 30, 60, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 30, 60, 0.05);
}

.main-header.nav-hidden {
    transform: translate(-50%, -110px); /* Centers horizontally while shifting off viewport top */
    opacity: 0;
    pointer-events: auto; /* Enable mouse hover detection when hidden */
}

/* Transparent hover zone at the top of viewport when header is hidden */
.main-header.nav-hidden::after {
    content: '';
    position: absolute;
    bottom: -80px; /* Extends trigger zone below viewport top */
    left: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    cursor: pointer;
    z-index: 99;
}

/* Smooth hover reveal */
.main-header.nav-hidden:hover {
    transform: translate(-50%, 0);
    opacity: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled .header-container {
    height: 62px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-txt {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.anarchy-symbol {
    font-size: 1.4rem;
    color: var(--red-accent);
    text-shadow: 0 0 8px var(--red-glow);
    font-weight: bold;
    transform: rotate(-10deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-accent);
    transition: var(--transition-smooth);
}

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

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

.btn-nav {
    padding: 9px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 30, 60, 0.15) 0%, rgba(255, 30, 60, 0.05) 100%);
    color: #ff1e3c;
    border: 1px solid rgba(255, 30, 60, 0.45);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-nav:hover {
    background: #ff1e3c;
    color: #ffffff;
    border-color: #ff1e3c;
    box-shadow: 0 0 15px rgba(255, 30, 60, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
/* Header Logo RPM Styling */
.logo-rpm {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-cube {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-top {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red-accent);
    text-shadow: 0 0 8px var(--red-glow);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.logo-bottom {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.logo-anarchy-svg {
    filter: drop-shadow(0 0 6px var(--red-glow));
    animation: logoAnarchyPulse 2s infinite alternate ease-in-out;
}

@keyframes logoAnarchyPulse {
    0% {
        filter: drop-shadow(0 0 4px rgba(255, 30, 60, 0.5));
        transform: scale(0.96) rotate(-2deg);
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 30, 60, 0.9));
        transform: scale(1.04) rotate(2deg);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: radial-gradient(circle at 75% 50%, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.96) 100%), 
                url('assets/hero_bg.jpg') no-repeat center center/cover;
    padding: 100px 0 0 0;
    overflow: hidden;
}

.decor-a-logo.left-hero {
    top: 20%;
    left: 4%;
    width: 170px;
    transform: rotate(-12deg);
    animation: floatHeroLeft 8s ease-in-out infinite alternate;
    opacity: 0.08; /* slightly dimmer in hero due to background detail */
}

.decor-a-logo.right-hero {
    bottom: 25%;
    right: 5%;
    width: 210px;
    transform: rotate(15deg);
    animation: floatHeroRight 10s ease-in-out infinite alternate;
    opacity: 0.08;
}

@keyframes floatHeroLeft {
    0% {
        transform: rotate(-12deg) translateY(0);
        opacity: 0.08;
    }
    100% {
        transform: rotate(-7deg) translateY(-18px);
        opacity: 0.12;
    }
}

@keyframes floatHeroRight {
    0% {
        transform: rotate(15deg) translateY(0);
        opacity: 0.08;
    }
    100% {
        transform: rotate(20deg) translateY(-22px);
        opacity: 0.12;
    }
}

@media (max-width: 1400px) {
    .decor-a-logo.left-hero {
        left: 2%;
        width: 140px;
    }
    .decor-a-logo.right-hero {
        right: 2%;
        width: 180px;
    }
}

@media (max-width: 1200px) {
    .decor-a-logo.left-hero {
        left: 1%;
        width: 110px;
    }
    .decor-a-logo.right-hero {
        right: 1%;
        width: 140px;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, var(--bg-color) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,1) 98%);
    z-index: 2;
}

.hero-container-new {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-character-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    animation: floatCharacter 5s ease-in-out infinite alternate;
}

.hero-character-col::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 30, 60, 0.22) 0%, rgba(255, 30, 60, 0) 70%);
    z-index: 1;
    bottom: 20%;
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
}

.hero-character-img {
    position: relative;
    z-index: 2;
    width: 130%;
    max-width: 600px;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
    transform: translateY(-25px);
}

@keyframes floatCharacter {
    0% {
        transform: translateY(0) rotate(-1deg);
    }
    100% {
        transform: translateY(-16px) rotate(1deg);
    }
}

.hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    transform: translateY(-25px);
}

.hero-logo-img-wrapper {
    margin-bottom: -110px;
    width: 100%;
    max-width: 740px;
    display: flex;
    justify-content: flex-start;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: logoPulseGlow 4s ease-in-out infinite alternate;
}

.hero-subtitle-new {
    font-size: clamp(1.25rem, 3.2vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-red {
    color: #ff1e3c;
    background: linear-gradient(135deg, #ff1e3c, #ff4b5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-unusual {
    font-family: inherit !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: 2px #ff1e3c;
    text-shadow: none !important;
    display: inline-block;
}

.hero-actions-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    width: 100%;
}

@keyframes logoPulseGlow {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 10px rgba(255, 30, 60, 0.1));
    }
    100% {
        transform: translateY(-5px);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(255, 30, 60, 0.35));
    }
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #d3001e, #ff3c54);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(211, 0, 30, 0.4);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-red:hover {
    background: linear-gradient(135deg, #ff3c54, #ff4b5c);
    box-shadow: 0 10px 30px rgba(255, 60, 84, 0.6);
    transform: translateY(-3px);
}

.ip-copy-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 26px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.ip-copy-badge:hover {
    border-color: rgba(255, 30, 60, 0.6);
    background: rgba(255, 30, 60, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 30, 60, 0.15);
}

.ip-label {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.ip-value {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.copy-icon {
    color: #ff1e3c;
    transition: var(--transition-smooth);
}

.ip-copy-badge:hover .copy-icon {
    transform: scale(1.2);
}

.hero-socials-new {
    display: flex;
    gap: 14px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    fill: #ffffff !important;
    transition: var(--transition-smooth);
}

.social-btn svg path {
    fill: #ffffff !important;
    stroke: none !important;
}

.social-icon-img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.social-btn.youtube:hover {
    background: #ff0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
    border-color: #ff0000;
}

.social-btn.tiktok:hover {
    background: #010101;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.social-btn.discord:hover {
    background: #5865f2;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.45);
    border-color: #5865f2;
}

.social-btn.telegram:hover {
    background: #0088cc;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.45);
    border-color: #0088cc;
}

/* Responsive styles for Hero Grid */
@media (max-width: 991px) {
    .hero-container-new {
        height: auto !important;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-character-col {
        display: none !important;
    }
    
    .hero-content-col {
        order: 1;
        align-items: center;
    }
    
    .hero-logo-img-wrapper {
        justify-content: center;
        margin: 0 auto 15px auto;
    }
    
    .hero-actions-new {
        justify-content: center;
    }
    
    .hero-socials-new {
        justify-content: center;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    position: relative;
    z-index: 2;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content .section-desc {
    text-align: left;
    margin: 0 0 30px 0;
}

.about-quote {
    border-left: 3px solid var(--red-accent);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.15rem;
    background: linear-gradient(90deg, rgba(255, 30, 60, 0.03) 0%, transparent 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

.image-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-color: rgba(255, 30, 60, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
    pointer-events: none;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.decor-a-logo.left-features {
    top: 15%;
    left: -5%;
    width: 190px;
    transform: rotate(10deg);
    animation: floatFeaturesLeft 8s ease-in-out infinite alternate;
}

.decor-a-logo.right-features {
    bottom: 12%;
    right: -6%;
    width: 240px;
    transform: rotate(-12deg);
    animation: floatFeaturesRight 10s ease-in-out infinite alternate;
}

@keyframes floatFeaturesLeft {
    0% {
        transform: rotate(10deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(16deg) translateY(-20px);
        opacity: 0.15;
    }
}

@keyframes floatFeaturesRight {
    0% {
        transform: rotate(-12deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(-6deg) translateY(-25px);
        opacity: 0.16;
    }
}

@media (max-width: 1400px) {
    .decor-a-logo.left-features {
        left: -8%;
        width: 160px;
    }
    .decor-a-logo.right-features {
        right: -9%;
        width: 200px;
    }
}

@media (max-width: 1200px) {
    .decor-a-logo.left-features {
        left: -11%;
        width: 130px;
    }
    .decor-a-logo.right-features {
        right: -11%;
        width: 160px;
    }
}

.features-container-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.features-headline {
    position: sticky;
    top: 120px;
}

.headline-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.features-headline .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.glow-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--red-accent), var(--lime-accent));
    margin-bottom: 24px;
    box-shadow: 0 0 10px var(--red-glow);
}

.features-headline .section-desc {
    text-align: left;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Premium Vercel-Style Spotlight Cards */
.feature-card-premium {
    position: relative;
    background: rgba(13, 13, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: radial-gradient(220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.05), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper, .feature-card-content, .card-watermark-premium {
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-icon-wrapper.red-glow {
    color: var(--red-accent);
    box-shadow: 0 0 12px rgba(255, 30, 60, 0.1);
    border-color: rgba(255, 30, 60, 0.15);
}

.feature-icon-wrapper.lime-glow {
    color: var(--lime-accent);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card-premium:hover .feature-icon-wrapper.red-glow {
    box-shadow: 0 0 20px var(--red-glow);
    background: rgba(255, 30, 60, 0.06);
    border-color: var(--red-accent);
}

.feature-card-premium:hover .feature-icon-wrapper.lime-glow {
    box-shadow: 0 0 20px var(--lime-glow);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--lime-accent);
}

.feature-card-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.feature-card-content .feature-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.feature-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

.card-watermark-premium {
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.015);
    user-select: none;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.feature-card-premium:hover .card-watermark-premium {
    color: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.stats-section {
    position: relative;
    z-index: 2;
}

.stats-grid {
    align-items: start;
}

.stats-counters {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-counter-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.leaderboard-card {
    border-color: rgba(255, 30, 60, 0.15);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.07);
}

.leaderboard-item.first-place {
    border-color: rgba(255, 30, 60, 0.2);
    background: linear-gradient(90deg, rgba(255, 30, 60, 0.05) 0%, transparent 100%);
}

.rank-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.first-place .rank-badge {
    background: var(--red-accent);
    color: #fff;
    box-shadow: 0 0 10px var(--red-glow);
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.player-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.player-score {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.score-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--red-accent);
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Expandable statistics table */
.hidden {
    display: none;
}

.full-stats-container {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.stats-table th, .stats-table td {
    padding: 12px;
    text-align: left;
    font-size: 0.9rem;
}

.stats-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}

.stats-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.stats-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* ==========================================
   GALLERY MASONRY SECTION
   ========================================== */
.gallery-section {
    position: relative;
    z-index: 2;
}

.masonry-grid {
    column-count: 2;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(360deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.masonry-item:hover {
    border-color: var(--red-accent);
    box-shadow: 0 0 25px var(--red-glow);
}

.masonry-item:hover img {
    transform: scale(1.03);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
    transform: translateY(0);
}

.masonry-overlay h4 {
    font-size: 1.2rem;
}

.masonry-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================
   HOW TO PLAY SECTION (EXCLUSIVE REDESIGN)
   ========================================== */
.how-to-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Floating Decorative Logos */
.decor-a-logo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    filter: drop-shadow(0 0 30px rgba(255, 30, 60, 0.25));
    transition: all 0.5s ease;
}

.decor-a-logo.left {
    top: 25%;
    left: -6%;
    width: 260px;
    transform: rotate(-18deg);
    animation: floatDecorLeft 9s ease-in-out infinite alternate;
}

.decor-a-logo.right {
    bottom: 5%;
    right: -4%;
    width: 200px;
    transform: rotate(22deg);
    animation: floatDecorRight 11s ease-in-out infinite alternate;
}

.decor-a-logo img {
    width: 100%;
    height: auto;
}

@keyframes floatDecorLeft {
    0% {
        transform: rotate(-18deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(-12deg) translateY(-25px);
        opacity: 0.16;
    }
}

@keyframes floatDecorRight {
    0% {
        transform: rotate(22deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(28deg) translateY(-20px);
        opacity: 0.16;
    }
}

@media (max-width: 1400px) {
    .decor-a-logo.left {
        left: -10%;
        width: 220px;
    }
    .decor-a-logo.right {
        right: -8%;
        width: 170px;
    }
}

@media (max-width: 1200px) {
    .decor-a-logo.left {
        left: -14%;
        width: 180px;
    }
    .decor-a-logo.right {
        right: -10%;
        width: 140px;
    }
}

@media (max-width: 991px) {
    /* Hide on small tablet/mobiles to prevent screen overflow and layout clutter */
    .decor-a-logo {
        display: none;
    }
}

.steps-grid {
    margin-top: 50px;
    gap: 30px;
}

.step-card {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 12, 12, 0.7) 0%, rgba(8, 8, 10, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 45px 35px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Glowing corner tech accent */
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 15px solid rgba(255, 30, 60, 0.5);
    border-right: 15px solid transparent;
    transition: all 0.4s ease;
}

.step-card:hover::before {
    border-top-color: #ff1e3c;
    border-width: 25px;
}

/* Highlighted middle card (Step 2 - Copy IP) */
.step-card.highlight-card {
    border-color: rgba(255, 30, 60, 0.25);
    box-shadow: 0 15px 40px rgba(255, 30, 60, 0.06);
}

.step-card.highlight-card::before {
    border-top-color: #ff1e3c;
    border-width: 20px;
}

/* Hover effects */
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 30, 60, 0.35);
    box-shadow: 0 20px 45px rgba(255, 30, 60, 0.12);
}

.step-card.highlight-card:hover {
    border-color: rgba(255, 30, 60, 0.6);
    box-shadow: 0 20px 50px rgba(255, 30, 60, 0.18);
}

/* Giant background numbers */
.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 7.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -20px;
    right: 20px;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.step-card:hover .step-num {
    color: rgba(255, 30, 60, 0.06);
    transform: scale(1.05) translateY(-5px);
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    letter-spacing: -0.5px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    z-index: 2;
    position: relative;
}

/* Premium Copy IP box in Step 2 */
.ip-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 30, 60, 0.2);
    border-radius: 8px;
    padding: 14px 20px;
    margin-top: 10px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.ip-copy-box span {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.ip-copy-box svg {
    color: #ff1e3c;
    transition: transform 0.3s ease;
}

.ip-copy-box:hover {
    background: rgba(255, 30, 60, 0.05);
    border-color: rgba(255, 30, 60, 0.6);
    box-shadow: 0 0 15px rgba(255, 30, 60, 0.2);
}

.ip-copy-box:hover svg {
    transform: scale(1.15);
}

/* ==========================================
   STORE / SUPPORT SECTION
   ========================================== */
.store-section {
    position: relative;
    z-index: 2;
}

.rank-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 45px 35px;
}

.featured-rank {
    border-color: rgba(255, 30, 60, 0.25);
    box-shadow: 0 10px 30px rgba(255, 30, 60, 0.05);
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime-accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 40px;
}

.rank-badge-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.rank-badge-name.red {
    color: var(--red-accent);
}

.rank-badge-name.lime {
    color: var(--lime-accent);
}

.rank-badge-name.red-glow-text {
    color: #fff;
    text-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--red-glow);
}

/* Slider styling */
.slider-outer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.store-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.store-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.store-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Slide states for center focus */
.store-slide.active-center {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
    box-shadow: 0 0 15px var(--red-glow);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--red-accent);
    box-shadow: 0 0 8px var(--red-glow);
    width: 24px;
    border-radius: 4px;
}

/* Prices list inside card */
.rank-prices-list {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-row strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}

.price-row.highlight-price {
    background: rgba(255, 30, 60, 0.05);
    border-color: rgba(255, 30, 60, 0.15);
    color: #fff;
}

.price-row.highlight-price strong {
    color: var(--red-accent);
    text-shadow: 0 0 8px var(--red-glow);
}

/* Custom glow cards and tag styles */
.custom-glow-card {
    border-color: rgba(57, 255, 20, 0.2);
}

.custom-tag {
    background: var(--lime-accent) !important;
    color: #000 !important;
}

.lime-glow-text {
    color: #fff;
    text-shadow: 0 0 10px var(--lime-glow), 0 0 20px var(--lime-glow);
}

.rank-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.rank-perks li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: start;
    gap: 8px;
}

.rank-perks li span {
    color: var(--lime-accent);
    font-weight: bold;
}

.btn-buy {
    width: 100%;
    margin-top: auto;
}

/* ==========================================
   COMMUNITY / DISCORD SECTION
   ========================================== */
.community-section {
    position: relative;
    z-index: 2;
}

.community-grid {
    align-items: stretch;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icon {
    font-size: 2rem;
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.social-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.discord-btn:hover {
    border-color: #5865F2;
    background: rgba(88, 101, 242, 0.05);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
    transform: translateX(4px);
}

.telegram-btn:hover {
    border-color: #24A1DE;
    background: rgba(36, 161, 222, 0.05);
    box-shadow: 0 0 20px rgba(36, 161, 222, 0.2);
    transform: translateX(4px);
}

.youtube-btn:hover {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    transform: translateX(4px);
}

.discord-widget {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.discord-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #5865F2;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.widget-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.widget-intro {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.active-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.channel-item {
    background: rgba(255,255,255,0.02);
    padding: 10px 14px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.85rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 30, 60, 0.1);
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--red-accent);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-notice {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(13, 13, 20, 0.9);
    border: 1px solid var(--red-accent);
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    z-index: 200;
    box-shadow: 0 5px 25px var(--red-glow);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .store-slide {
        flex: 0 0 calc(50% - 15px);
    }
    .features-container-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-headline {
        position: static;
        text-align: center;
    }
    .features-headline .section-title {
        text-align: center;
    }
    .glow-divider {
        margin: 0 auto 24px auto;
    }
    .features-headline .section-desc {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .grid-2, .grid-3, .grid-4, .features-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content .section-title,
    .about-content .section-desc {
        text-align: center;
    }

    .about-quote {
        border-left: none;
        border-top: 2px solid var(--red-accent);
        padding-left: 0;
        padding-top: 15px;
    }

    .main-header {
        background: rgba(10, 10, 15, 0.95);
    }

    /* Mobile Menu */
    /* Mobile Menu */
    .mobile-nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 101;
    }
    
    .mobile-nav-toggle:hover,
    .mobile-nav-toggle.open {
        background: rgba(255, 30, 60, 0.12);
        border-color: rgba(255, 30, 60, 0.35);
        box-shadow: 0 0 15px rgba(255, 30, 60, 0.25);
    }

    .mobile-nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 6, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        z-index: 100;
        padding: 40px;
    }

    .nav-menu.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu .nav-link {
        font-size: 1.4rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-menu .nav-link:hover {
        color: #ff1e3c;
    }
    
    .nav-menu .btn-nav {
        font-size: 1.1rem;
        padding: 14px 40px;
        border-radius: 10px;
        width: 80%;
        max-width: 280px;
        text-align: center;
    }

    /* Mobile Toggle Animations */
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: #ff1e3c;
    }
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: #ff1e3c;
    }

    .hero-logo {
        font-size: 4rem;
    }
    
    .anarchy-badge {
        font-size: 2.8rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .leaderboard-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 14px;
    }

    .player-info {
        align-items: center;
    }

    .player-score {
        text-align: center;
    }

    .full-stats-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .stats-table {
        min-width: 500px; /* Forces scroll on small widths instead of squeezing text */
    }

    .masonry-grid {
        column-count: 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-right {
        text-align: center;
    }

    /* Slider mobile overrides */
    .store-slide {
        flex: 0 0 100%;
    }

    .slider-outer-wrapper {
        padding: 0;
    }

    .slider-arrow {
        display: none;
    }
}

/* ==========================================
   DIGITAL GRID MESH BACKGROUND
   ========================================== */
.bg-grid-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center center;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}


/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
    position: relative;
    z-index: 2;
}

.faq-accordion-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 24px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(13, 13, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-item:hover {
    border-color: rgba(255, 30, 60, 0.12);
    box-shadow: 0 5px 25px rgba(255, 30, 60, 0.04);
    background: rgba(13, 13, 20, 0.55);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 20px;
}

.faq-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    color: #fff;
    transition: color 0.3s ease;
}

.faq-toggle-icon {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 30, 60, 0.15);
    box-shadow: 0 5px 25px rgba(255, 30, 60, 0.04);
    background: rgba(13, 13, 20, 0.6);
}

.faq-item.active .faq-header h3 {
    color: var(--red-accent);
    text-shadow: 0 0 10px var(--red-glow);
}

.faq-item.active .faq-toggle-icon {
    color: var(--red-accent);
    transform: rotate(45deg); /* Rotates plus to cross */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease, opacity 0.4s ease;
    margin-top: 0;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 250px;
    margin-top: 16px;
    opacity: 1;
}

.faq-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }
    .faq-header h3 {
        font-size: 1.05rem;
    }
    .marquee-track span {
        font-size: 1.1rem;
    }
}

/* ==========================================
   LIGHTBOX ACCORDION MODAL & ZOOM ICON
   ========================================== */
.zoom-icon-small {
    font-size: 1.1rem;
    align-self: flex-start;
    background: rgba(255, 30, 60, 0.25);
    border: 1px solid var(--red-accent);
    color: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-glow);
    margin-bottom: 12px;
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 9, 0.94);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    user-select: none;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--red-accent);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}


/* ==========================================
   FEATURES SECTION (3-COLUMN DASHBOARD GRID)
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.features-card {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 16, 20, 0.75) 0%, rgba(9, 9, 11, 0.9) 100%);
    border: 1px solid rgba(255, 30, 60, 0.12);
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 480px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glowing top slash accent */
.features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: #ff1e3c;
    box-shadow: 0 0 15px #ff1e3c;
    transition: all 0.4s ease;
}

.features-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 30, 60, 0.4);
    box-shadow: 0 20px 45px rgba(255, 30, 60, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.features-card:hover::before {
    width: 80%;
    box-shadow: 0 0 25px #ff1e3c;
}

.features-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #ff1e3c;
    background: rgba(255, 30, 60, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 30, 60, 0.2);
    width: fit-content;
    margin: 0 auto 10px auto;
    letter-spacing: 1px;
}

.features-card-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.features-card-visual::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(255, 30, 60, 0.15) 0%, rgba(255, 30, 60, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(12px);
    transition: all 0.4s ease;
}

.features-card:hover .features-card-visual::before {
    background: radial-gradient(circle, rgba(255, 30, 60, 0.25) 0%, rgba(255, 30, 60, 0) 70%);
    transform: scale(1.15);
}

.features-card-img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.features-card:hover .features-card-img {
    transform: scale(1.1) translateY(-6px) rotate(2deg);
    filter: drop-shadow(0 20px 30px rgba(255, 30, 60, 0.25));
}

.features-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.features-card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 850;
    color: #ffffff;
    margin: 15px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.features-card-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   MEDIA / SOCIAL NETWORKS SECTION
   ========================================== */
/* ==========================================
   DONATE / STORE BANNER SECTION
   ========================================== */
.donate-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.decor-a-logo.left-donate {
    top: 10%;
    left: -5%;
    width: 220px;
    transform: rotate(-8deg);
    animation: floatDonateLeft 9s ease-in-out infinite alternate;
}

.decor-a-logo.right-donate {
    bottom: 8%;
    right: -4%;
    width: 180px;
    transform: rotate(15deg);
    animation: floatDonateRight 11s ease-in-out infinite alternate;
}

@keyframes floatDonateLeft {
    0% {
        transform: rotate(-8deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(-3deg) translateY(-22px);
        opacity: 0.15;
    }
}

@keyframes floatDonateRight {
    0% {
        transform: rotate(15deg) translateY(0);
        opacity: 0.12;
    }
    100% {
        transform: rotate(20deg) translateY(-18px);
        opacity: 0.16;
    }
}

@media (max-width: 1400px) {
    .decor-a-logo.left-donate {
        left: -9%;
        width: 190px;
    }
    .decor-a-logo.right-donate {
        right: -8%;
        width: 150px;
    }
}

@media (max-width: 1200px) {
    .decor-a-logo.left-donate {
        left: -13%;
        width: 150px;
    }
    .decor-a-logo.right-donate {
        right: -10%;
        width: 120px;
    }
}

/* ==========================================
   FUTURISTIC STORE DECK (EXCLUSIVE INTERACTIVE BUY-MENU)
   ========================================== */
.store-deck-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 40px;
    margin-top: 50px;
    min-height: 520px;
}

/* Left list */
.store-ranks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-rank-item {
    position: relative;
    background: linear-gradient(90deg, rgba(16, 12, 12, 0.65) 0%, rgba(8, 8, 10, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* Red indicator line on the left edge */
.store-rank-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.store-rank-item.active::before,
.store-rank-item:hover::before {
    background: #ff1e3c;
    box-shadow: 0 0 10px #ff1e3c;
}

.store-rank-item.active {
    border-color: rgba(255, 30, 60, 0.3);
    background: linear-gradient(90deg, rgba(255, 30, 60, 0.08) 0%, rgba(8, 8, 10, 0.95) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 30, 60, 0.1);
    transform: translateX(5px);
}

.store-rank-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(8, 8, 10, 0.9) 100%);
    transform: translateX(3px);
}

.rank-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.store-rank-item.active .rank-badge-icon {
    background: rgba(255, 30, 60, 0.12);
    color: #ff1e3c;
    border-color: rgba(255, 30, 60, 0.35);
    box-shadow: 0 0 15px rgba(255, 30, 60, 0.25);
}

.store-rank-item:hover .rank-badge-icon {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.rank-name-wrap {
    flex-grow: 1;
    margin-left: 20px;
    text-align: left;
}

.rank-name-wrap h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3px 0;
    letter-spacing: 0.5px;
}

.rank-name-wrap span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.rank-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    transition: all 0.3s ease;
}

.store-rank-item.active .rank-price {
    color: #ff1e3c;
    text-shadow: 0 0 10px rgba(255, 30, 60, 0.3);
}

/* Right preview deck */
.store-rank-preview {
    position: relative;
    background: linear-gradient(185deg, rgba(16, 12, 12, 0.8) 0%, rgba(5, 5, 6, 0.95) 100%);
    border: 1px solid rgba(255, 30, 60, 0.15);
    border-radius: 16px;
    padding: 35px 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-glow-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 30, 60, 0.12) 0%, rgba(255, 30, 60, 0) 70%);
    filter: blur(25px);
    z-index: 1;
    pointer-events: none;
}

/* Sci-fi corner brackets */
.preview-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 30, 60, 0.3);
    z-index: 2;
}
.preview-corner.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.preview-corner.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.preview-corner.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.preview-corner.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

.preview-content-box {
    z-index: 3;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-status-dot {
    width: 6px;
    height: 6px;
    background: #ff1e3c;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff1e3c;
    animation: blinkStatus 1.5s infinite;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.preview-status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
}

.preview-rank-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.preview-chest-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(255, 30, 60, 0.25)) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    animation: floatChest 6s ease-in-out infinite alternate;
}

@keyframes floatChest {
    0% {
        transform: translateY(0) rotate(-10deg) scale(1);
    }
    100% {
        transform: translateY(-15px) rotate(-4deg) scale(1.05);
    }
}

.preview-info-dynamic {
    text-align: left;
}

.preview-info-dynamic h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.preview-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-features-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.preview-features-list li span {
    color: #ff1e3c;
    font-weight: bold;
}

.preview-footer-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.btn-store-action {
    width: 100%;
    justify-content: center;
    padding: 16px 30px !important;
    font-size: 1.05rem !important;
}

.terminal-log {
    font-family: 'Inter', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Pricing Options inside Preview Column */
.preview-price-options {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.15s ease;
}

.price-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-option-row strong {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.price-option-row strong.highlight-price {
    color: #ff1e3c;
    text-shadow: 0 0 10px rgba(255, 30, 60, 0.3);
}

/* Link Card */
.store-rank-item.link-item {
    border: 1px dashed rgba(255, 30, 60, 0.4);
    background: linear-gradient(90deg, rgba(16, 12, 12, 0.4) 0%, rgba(8, 8, 10, 0.6) 100%);
    text-decoration: none;
}

.store-rank-item.link-item:hover {
    border-style: dashed;
    border-color: #ff1e3c;
    background: linear-gradient(90deg, rgba(255, 30, 60, 0.05) 0%, rgba(8, 8, 10, 0.8) 100%);
    box-shadow: 0 8px 25px rgba(255, 30, 60, 0.08);
}

.store-rank-item.link-item .rank-badge-icon {
    border-color: rgba(255, 30, 60, 0.3);
    color: #ff1e3c;
}

/* Donate Header Image Decoration */
.donate-header-img-wrapper {
    margin: 0 auto -95px auto; /* negative margin to pull header in tight */
    width: 100%;
    max-width: 580px; /* slightly wider than the text */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1; /* Render behind the text */
}

.donate-header-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(255, 30, 60, 0.25)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
    animation: floatLogoSmall 5s ease-in-out infinite alternate;
}

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

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .store-deck-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
}
