/* ================================
   SCARFACE ROLEPLAY - Stylesheet
   Schwarz / Weiss / Silber Design
   ================================ */

/* Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #0e0e0e;
    --color-bg-card: rgba(20, 20, 20, 0.8);
    --color-text: #ffffff;
    --color-text-muted: #9a9a9a;
    --color-accent: #d4d4d4;
    --color-accent-hover: #ffffff;
    --color-silver: #c0c0c0;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.15);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ================================
   ANIMATIONS
   ================================ */

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

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.05); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.15); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
    50% { border-color: rgba(255, 255, 255, 0.3); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 100%; }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    opacity: 0.6;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text), transparent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

.cta-button {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: var(--transition-fast);
}

.cta-button:hover {
    background: var(--color-text);
    color: var(--color-bg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

/* Grid pattern background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.8;
    pointer-events: none;
}

/* Radial gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 30%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-silver);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.2s forwards;
}

.hero-logo {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: scaleIn 1s ease 0.4s forwards;
}

.hero-logo img {
    width: 100%;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    transition: var(--transition);
}

.hero-logo:hover img {
    filter: brightness(1.4) drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
    transform: scale(1.02);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-title span {
    display: block;
    font-size: 0.35em;
    font-weight: 300;
    letter-spacing: 20px;
    color: var(--color-silver);
    margin-top: 15px;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.release-timer {
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
}

.release-timer-header {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-silver);
    margin-bottom: 16px;
}

.release-timer-header .release-date {
    color: var(--color-text);
    font-weight: 600;
}

.release-timer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.release-timer-grid .time-box {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.time-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    padding: 16px 12px;
    backdrop-filter: blur(12px);
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.time-box:hover {
    border-color: var(--color-border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.time-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.time-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.btn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0.4;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.5;
}

.btn-secondary:hover {
    border-color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 22px 55px;
    font-size: 13px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-silver), transparent);
    animation: pulse 2s infinite;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features-section {
    padding: 140px 0;
    background: var(--color-bg);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--color-silver);
    margin: 0 auto 30px;
}

.section-line::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin-top: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

.feature-card::before,
.feature-card::after {
    mix-blend-mode: screen;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-soft);
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-radius: var(--radius-sm);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    opacity: 0.4;
}

.feature-card:hover .feature-icon {
    border-color: var(--color-silver);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: glow 2s ease-in-out infinite;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-silver);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--color-text);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--color-text);
}

.feature-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ================================
   STATS SECTION
   ================================ */

.stats-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stats-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    opacity: 0.3;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-silver);
    transition: var(--transition);
}

.stat-item:hover::after {
    width: 60px;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 300;
    color: var(--color-text);
    display: block;
    line-height: 1;
    letter-spacing: -2px;
    transition: var(--transition);
}

.stat-suffix {
    font-size: 40px;
    color: var(--color-silver);
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 20px;
    display: block;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    padding: 150px 0;
    text-align: center;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: none;
}

.cta-section::before {
    content: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.cta-section p {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.cta-section .btn {
    box-shadow: none;
    transform: none;
}

.cta-section .btn::before,
.cta-section .btn::after {
    content: none;
}

.cta-section .btn:hover {
    box-shadow: none;
    transform: none;
}

/* ================================
   PAGE STYLES
   ================================ */

.page {
    display: none;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
}

.page-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Grid pattern for page hero */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    color: var(--color-text);
}

.page-hero p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-silver);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* ================================
   RULES PAGE
   ================================ */

.rules-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.rules-sidebar {
    flex-shrink: 0;
    width: 260px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.rules-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rules-nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    padding: 15px 25px;
    border-left: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.rules-nav-link::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-text);
    transform: scaleY(0);
    transition: var(--transition);
}

.rules-nav-link:hover,
.rules-nav-link.active {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.02);
}

.rules-nav-link:hover::before,
.rules-nav-link.active::before {
    transform: scaleY(1);
}

.rules-content {
    flex: 1;
}

.rule-section {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.rule-section:nth-child(2) { animation-delay: 0.1s; }
.rule-section:nth-child(3) { animation-delay: 0.2s; }
.rule-section:nth-child(4) { animation-delay: 0.3s; }
.rule-section:nth-child(5) { animation-delay: 0.4s; }

.rule-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--color-text);
}

.rule-number {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 10px 18px;
    letter-spacing: 2px;
}

.rule-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 35px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

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

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-silver);
    opacity: 0;
    transition: var(--transition);
}

.rule-card:hover {
    border-color: var(--color-border-light);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.rule-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.rule-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.rule-card ul {
    margin-top: 10px;
}

.rule-card ul li {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.rule-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 1px;
    background: var(--color-silver);
}

.rule-card.warning {
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.02);
  }
  
.rule-card.warning::before {
  background: var(--color-text);
  opacity: 1;
  }

.rule-card.blacklist {
  border-color: rgba(255, 60, 60, 0.3);
  background: rgba(255, 30, 30, 0.05);
}

.rule-card.blacklist::before {
  background: #ff3c3c;
  opacity: 1;
}

.blacklist-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  padding: 12px 0;
  padding-left: 25px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.blacklist-list li:last-child {
  border-bottom: none;
}

.blacklist-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ff3c3c;
  border-radius: 50%;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--color-text);
}

.footer-column a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-text);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rules-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .rules-sidebar {
        width: 100%;
        position: static;
    }
    
    .rules-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .rules-nav-link {
        border-left: none;
        border-bottom: 1px solid var(--color-border);
        padding: 12px 20px;
    }
    
    .rules-nav-link::before {
        top: auto;
        bottom: -1px;
        left: 0;
        right: 0;
        width: 100%;
        height: 1px;
        transform: scaleX(0);
    }
    
    .rules-nav-link:hover::before,
    .rules-nav-link.active::before {
        transform: scaleX(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .release-timer {
        margin-bottom: 30px;
    }

    .release-timer-grid {
        gap: 12px;
    }

    .time-value {
        font-size: 24px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .stats-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 60px;
    }
    
    .stat-suffix {
        font-size: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .hero-description {
        font-size: 14px;
    }

    .release-timer-header {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .time-box {
        padding: 12px 8px;
    }

    .time-value {
        font-size: 20px;
    }
    
    .rule-section h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .rule-card {
        padding: 25px;
    }
}
