:root {
    --blood-red: #8B0000;
    --dark-red: #4B0000;
    --crimson: #DC143C;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --glow-red: rgba(220, 20, 60, 0.8);
    --shadow-dark: rgba(0, 0, 0, 0.9);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    --gradient-blood: linear-gradient(135deg, #8B0000 0%, #4B0000 50%, #220000 100%);
    
    /* Class Colors */
    --warrior-color: #C79C6E;
    --paladin-color: #F58CBA;
    --hunter-color: #ABD473;
    --rogue-color: #FFF569;
    --priest-color: #FFFFFF;
    --deathknight-color: #C41F3B;
    --shaman-color: #0070DE;
    --mage-color: #69CCF0;
    --warlock-color: #9482C9;
    --druid-color: #FF7D0A;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.loading-logo {
    width: 150px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--crimson);
    width: 0;
    animation: loading 2s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

/* Blood Drip Effect */
@keyframes bloodDrip {
    0% { 
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

.blood-drip {
    position: fixed;
    top: -50px;
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, var(--blood-red) 50%, var(--dark-red) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: bloodDrip 8s infinite;
    z-index: 3;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

@keyframes glowPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px var(--glow-red)) drop-shadow(0 0 40px var(--dark-red));
    }
    50% { 
        filter: drop-shadow(0 0 30px var(--glow-red)) drop-shadow(0 0 60px var(--crimson));
    }
}

@keyframes floatAnimation {
    0%, 100% { 
        transform: translateY(0) rotate(-1deg);
    }
    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    50% { 
        transform: translateY(-5px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px var(--glow-red), 0 0 20px var(--dark-red); }
    50% { text-shadow: 0 0 20px var(--glow-red), 0 0 40px var(--crimson); }
}

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

/* Scroll Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Section - SEAMLESS TRANSITION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(139, 0, 0, 0.1) 50%, rgba(0,0,0,0.95) 100%);
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(75, 0, 0, 0.2) 0%, transparent 60%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0.5rem 2rem;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* BIGGER LOGO WITH GREYSCALE HOVER EFFECT */
.hero-logo {
    width: 400px;
    max-width: 70vw;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0.7) drop-shadow(0 10px 30px rgba(139, 0, 0, 0.5));
    animation: floatAnimation 6s ease-in-out infinite;
    transition: filter 0.5s ease;
}

.hero-logo:hover {
    filter: grayscale(0%) brightness(1) drop-shadow(0 15px 40px rgba(139, 0, 0, 0.8));
    cursor: pointer;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-word {
    background: linear-gradient(135deg, var(--white) 0%, var(--crimson) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--crimson);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--glow-red);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-description .highlight {
    color: var(--crimson);
    font-weight: 600;
    text-shadow: 0 0 10px var(--glow-red);
}

/* Server Notice Banner */
.server-notice {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 2px solid var(--crimson);
    border-radius: 15px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.server-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.server-notice-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
}

.server-notice-title {
    color: var(--crimson);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--glow-red);
}

.server-notice-text {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(139, 0, 0, 0.1);
    padding: 1.25rem;
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    min-width: 140px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--crimson);
    text-shadow: 0 0 20px var(--glow-red);
    display: block;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* REMOVE ALL SCROLL INDICATOR STYLES */
.scroll-indicator {
    display: none !important;
}

/* Enhanced Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.15rem;
}

.btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--blood-red) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    border: 1px solid rgba(220, 20, 60, 0.5);
}

.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: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--crimson);
    border: 2px solid var(--crimson);
}

.btn-secondary:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.5);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.4);
}

/* Download Section - SEAMLESS TRANSITION */
.download-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(139, 0, 0, 0.1) 50%, rgba(0,0,0,0.95) 100%);
    margin-top: 0;
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--glow-red));
}

.download-title {
    font-size: 2.5rem;
    color: var(--crimson);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.download-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.download-stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-stat-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Quick Start Section */
.quick-start-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%);
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-start-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
    border-color: var(--crimson);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0;
    filter: drop-shadow(0 0 15px var(--glow-red));
}

.quick-start-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.quick-start-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(139, 0, 0, 0.05) 50%, rgba(0,0,0,0.95) 100%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.title-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.title-decoration {
    color: var(--crimson);
    filter: drop-shadow(0 0 10px var(--glow-red));
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.features-showcase {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card.large-card {
    grid-column: span 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(220, 20, 60, 0.3);
    border-color: var(--crimson);
}

.feature-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--glow-red));
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-stat {
    background: rgba(220, 20, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--crimson);
    border: 1px solid rgba(220, 20, 60, 0.3);
}

/* Classes Section */
.classes-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.9) 100%);
}

.classes-showcase {
    margin-top: 3rem;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.class-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.class-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
    border-color: var(--crimson);
}

.class-card-inner {
    position: relative;
    z-index: 2;
}

.class-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.class-icon {
    width: 60px;
    height: 60px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.class-card:hover .class-icon {
    filter: grayscale(0%) drop-shadow(0 0 20px var(--glow-red));
    transform: scale(1.1);
}

.class-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--crimson) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.class-card:hover .class-glow {
    opacity: 0.5;
}

.class-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.class-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.class-specs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spec {
    background: rgba(220, 20, 60, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid rgba(220, 20, 60, 0.2);
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(139, 0, 0, 0.05) 50%, rgba(0,0,0,0.95) 100%);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-features {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
    border-color: var(--crimson);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px var(--glow-red));
}

.info-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
}

.info-card-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-list {
    list-style: none;
}

.info-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--crimson);
}

.server-features {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.features-title {
    color: var(--crimson);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(220, 20, 60, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--text-primary);
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

/* Discord Section */
.discord-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(88, 101, 242, 0.05) 50%, rgba(0,0,0,0.95) 100%);
}

.discord-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.discord-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.discord-widget-container {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.2);
}

.discord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

.discord-header h3 {
    color: #5865F2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #43B581;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.discord-members {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.discord-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.discord-member:hover {
    background: rgba(88, 101, 242, 0.1);
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.member-info {
    flex: 1;
}

.member-name {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
}

.member-status {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.member-badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.member-badge.online { background: #43B581; }
.member-badge.idle { background: #FAA61A; }
.member-badge.dnd { background: #F04747; }
.member-badge.offline { background: #747F8D; }

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

.discord-info {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.discord-info h3 {
    color: var(--crimson);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--glow-red);
}

.discord-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--glow-red));
}

.benefit-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--glow-red));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--crimson);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.5);
}

.footer-title {
    color: var(--crimson);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--crimson);
    text-shadow: 0 0 10px var(--glow-red);
}

.footer-info {
    list-style: none;
}

.footer-info li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-year {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .feature-card.large-card {
        grid-column: span 1;
    }
    
    .discord-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 50px;
    }
    
    .hero-logo {
        width: 300px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}