/* ==========================================================================
   ODISEA RP - MODERN GAMING DESIGN SYSTEM (WITH ADVANCED ANIMATIONS)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #07080c;
    --bg-card: rgba(15, 17, 26, 0.75);
    --bg-card-hover: rgba(22, 26, 40, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 215, 0, 0.45);
    
    /* Accents - Luxury Gold & Amber Palette */
    --accent-gold: #ffd700;
    --accent-gold-glow: rgba(255, 215, 0, 0.45);
    --accent-amber: #ffaa00;
    --accent-orange: #ff7700;
    --accent-orange-glow: rgba(255, 119, 0, 0.4);
    --accent-cyan: #ffd700;
    --accent-cyan-glow: rgba(255, 215, 0, 0.45);
    --accent-purple: #b026ff;
    --accent-purple-glow: rgba(176, 38, 255, 0.4);
    --accent-green: #10b981;
    --accent-discord: #5865F2;
    --accent-discord-hover: #4752C4;
    
    /* Text Colors */
    --text-main: #f3f4f6;
    --text-muted: #a0aec0;
    --text-dark: #64748b;

    /* Fonts */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout */
    --navbar-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 14px;
    --border-radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.15;
    color: #ffffff;
}

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

a:hover {
    color: var(--accent-orange);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
    border-radius: 4px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    will-change: transform, box-shadow;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.2);
    transform: translateY(-6px);
}

/* Text Highlights & Animations */
.glow-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 5s linear infinite;
}

@keyframes shine-text {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.accent-text { color: var(--accent-orange); }
.highlight-cyan { color: var(--accent-cyan); }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }

/* ==========================================================================
   SCROLL REVEAL ANIMATION CLASSES
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    user-select: none;
    overflow: hidden;
}

/* Button Ripple & Light Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

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

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7700 100%);
    color: #000000;
    box-shadow: 0 4px 15px var(--accent-orange-glow);
    font-weight: bold;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 166, 0, 0.6);
    color: #000000;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-discord) 0%, #404eed 100%);
    color: #ffffff;
    padding: 1.15rem 2.4rem;
    font-size: 1.25rem;
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.45);
}
.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(88, 101, 242, 0.7);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 1.15rem 2.4rem;
    font-size: 1.25rem;
    backdrop-filter: blur(12px);
}
.btn-hero-secondary:hover {
    background: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 30px var(--accent-cyan-glow);
    transform: translateY(-4px) scale(1.02);
}

.btn-discord {
    background: var(--accent-discord);
    color: #ffffff;
}
.btn-discord:hover {
    background: var(--accent-discord-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border-hover);
    color: var(--accent-cyan);
}
.btn-outline:hover {
    background: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 20px var(--accent-cyan-glow);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(7, 8, 12, 0.3);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header.scrolled {
    background: rgba(7, 8, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px var(--accent-orange-glow));
    transition: transform 0.3s ease;
}

.nav-brand:hover .brand-logo {
    transform: rotate(5deg) scale(1.08);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.02rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-mobile-btns { display: none; }

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 5rem;
    background: url('assets/images/player1.webp') top center / cover no-repeat;
    background-position-y: top;
    overflow: hidden;
}

/* Interactive Particle Canvas */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(7, 8, 12, 0.4) 0%, rgba(7, 8, 12, 0.85) 75%, var(--bg-dark) 100%),
                linear-gradient(180deg, rgba(7, 8, 12, 0.5) 0%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Live Status Pill */
.server-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.6rem;
    background: rgba(15, 17, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.server-status-pill:hover {
    transform: scale(1.03);
    border-color: var(--accent-cyan);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-label {
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-sep { color: rgba(255, 255, 255, 0.2); }

.status-players {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.status-players i {
    color: var(--accent-orange);
    margin-right: 0.35rem;
}

/* Offline state */
.pulse-dot.offline {
    background-color: #ef4444 !important;
    box-shadow: 0 0 12px #ef4444 !important;
    animation: none;
}
.status-label.offline { color: #ef4444 !important; }

/* Hero Titles */
.hero-title {
    font-size: clamp(3.8rem, 8.5vw, 6.8rem);
    margin-bottom: 1.25rem;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.35));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    max-width: 740px;
    margin-bottom: 2.75rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Stats Bar */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    text-align: left;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--accent-cyan);
    color: #000;
    transform: rotate(-8deg) scale(1.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */

.section {
    padding: 7.5rem 0;
    position: relative;
}

.section-dark {
    background: #040508;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-heading {
    margin-bottom: 4.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(255, 166, 0, 0.12);
    border: 1px solid rgba(255, 166, 0, 0.35);
    color: var(--accent-orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.85rem;
    box-shadow: 0 0 15px rgba(255, 166, 0, 0.15);
}

.section-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
}

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

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

.feature-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover .card-media img {
    transform: scale(1.12);
}

.card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.tag-cyan { background: var(--accent-cyan); color: #000; }
.tag-orange { background: var(--accent-orange); color: #000; }
.tag-purple { background: var(--accent-purple); color: #fff; }

.card-body {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.65rem;
    margin-bottom: 0.85rem;
    color: var(--accent-cyan);
}

.feature-card:nth-child(2) .card-body h3 { color: var(--accent-orange); }
.feature-card:nth-child(3) .card-body h3 { color: var(--accent-purple); }

.card-body p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
}

.experience-box {
    padding: 3.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.border-orange { border-top: 4px solid var(--accent-orange); }
.border-cyan { border-top: 4px solid var(--accent-cyan); }

.box-icon {
    font-size: 2.8rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}
.border-cyan .box-icon { color: var(--accent-cyan); }

.experience-box:hover .box-icon {
    transform: scale(1.15) rotate(5deg);
}

.experience-box h3 {
    font-size: 2.1rem;
}

.experience-box p {
    color: var(--text-muted);
    font-size: 1.12rem;
}

/* ==========================================================================
   HOW TO PLAY (STEPS)
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    align-items: stretch;
}

.step-card {
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.step-top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: var(--accent-orange);
    transform: translateY(-5px);
}

.step-top h3 {
    font-size: 1.55rem;
    color: #ffffff;
}

.step-top p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.step-footer {
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.step-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.highlight-step {
    border-color: rgba(255, 166, 0, 0.45);
    background: rgba(255, 166, 0, 0.05);
}

/* ==========================================================================
   PHOTOS SECTION
   ========================================================================== */

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.photo-placeholder-card {
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    color: var(--text-muted);
    transition: var(--transition);
}

.photo-placeholder-card:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.06);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.18);
}

.ph-icon {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease;
}

.photo-placeholder-card:hover .ph-icon {
    color: var(--accent-cyan);
    transform: scale(1.15);
}

.photo-placeholder-card span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
}

.photo-placeholder-card small {
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.6rem 2.2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    color: var(--accent-orange);
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
    padding: 0 2.2rem;
    background: rgba(0, 0, 0, 0.25);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.25rem 2.2rem 1.85rem 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* ==========================================================================
   MARQUEE BANNER
   ========================================================================== */

.marquee-wrapper {
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ff7700 100%);
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 0 35px var(--accent-orange-glow);
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #000000;
    letter-spacing: 2px;
    animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.footer {
    background: #020305;
    padding-top: 5.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4.5rem;
}

.footer-brand-col p {
    color: var(--text-muted);
    margin: 1.25rem 0 1.5rem 0;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-orange);
    color: #000000;
    transform: translateY(-4px);
}

.footer-socials a.social-twitch:hover {
    background: #9146FF;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.4);
}

.footer-socials a.social-kick:hover {
    background: #53fc18;
    color: #000000;
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.4);
}

.footer-links-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-col a {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.footer-links-col a:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}

.footer-bottom {
    padding: 1.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    font-size: 0.88rem;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    padding: 1.1rem 1.85rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
    backdrop-filter: blur(12px);
    z-index: 2000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .photos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .features-grid, .steps-grid { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --navbar-height: 70px; }

    .btn-desktop { display: none; }
    .hamburger { display: block; }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: calc(100vh - var(--navbar-height));
        background: rgba(7, 8, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
        gap: 1.75rem;
        border-left: 1px solid var(--glass-border);
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-menu.open { right: 0; }

    .nav-mobile-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 1rem 1.25rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; }

    .server-status-pill {
        flex-direction: row;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .photos-grid { grid-template-columns: 1fr; }
    .faq-question { padding: 1.25rem 1.25rem; font-size: 1rem; }
}

.style-w-100 { width: 100%; }

/* ==========================================================================
   NORMATIVA SEARCH & RULE LISTS
   ========================================================================== */

.search-input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.2rem;
    background: rgba(15, 17, 26, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-hover);
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 35px var(--accent-gold-glow);
    background: rgba(22, 26, 40, 0.95);
}

.rule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0.5rem 0;
}

.rule-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.rule-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.rule-list strong {
    color: #ffffff;
}

.rule-list code {
    background: rgba(255, 215, 0, 0.12);
    color: var(--accent-gold);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
}
