/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e6ed;
    background: #0a0e13;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PayPal Button Styling */
#paypal-button-container-P-4H308962Y3511635VNBNH5VA,
#paypal-button-container-community {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    height: 60px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.nav-brand .logo {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #e0e6ed;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* Support Button Styling */
.nav-menu .support-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-menu .support-btn:hover {
    background: linear-gradient(135deg, #ff8e53, #ffab73);
    color: #ffffff !important;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.nav-cta .cta-button {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e13;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-cta .cta-button:hover {
    background: linear-gradient(135deg, #0080ff, #00ffff);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Blood Sports Marquee Banner */
.blood-sports-banner {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
    border-bottom: 3px solid #FFD700;
    border-top: 3px solid #FFD700;
    margin-top: 60px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
    height: 50px;
}

.blood-sports-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: bloodGlow 3s ease-in-out infinite alternate;
}

@keyframes bloodGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.marquee-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.marquee-content {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: marqueeScroll 60s linear infinite;
    padding-left: 100%;
}

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

/* Responsive Design for Blood Sports Marquee */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 14px;
        animation: marqueeScroll 50s linear infinite;
    }
}

@media (max-width: 480px) {
    .marquee-text {
        font-size: 12px;
        animation: marqueeScroll 40s linear infinite;
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 14, 19, 0.8) 0%, rgba(26, 31, 46, 0.7) 50%, rgba(10, 14, 19, 0.8) 100%),
        url('https://cdn.mos.cms.futurecdn.net/4PdXkaqoqkEnq5Z9G6kF6Q-1200-80.jpg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titlePulse 2s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.8); }
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-highlight {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e13;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text {
    font-size: 16px;
    color: #b8c5d1;
    line-height: 1.5;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 6px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.stat:hover {
    transform: translateY(-2px);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #8892a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e13;
    border-color: #00ffff;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0080ff, #00ffff);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
    border-color: #0080ff;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid rgba(0, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.btn:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

/* King's Council CTA Section */
.kings-council-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.kings-council-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.kings-council-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e0e6ed;
    font-weight: 300;
    opacity: 0.9;
}

.cta-benefits {
    margin-bottom: 60px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cta-benefits .benefit-item {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-benefits .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-benefits .benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cta-benefits .benefit-item:hover::before {
    left: 100%;
}

.cta-benefits .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.cta-benefits .benefit-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 600;
}

.cta-benefits .benefit-text p {
    color: #b8c5d1;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cta-mounts {
    margin-bottom: 50px;
}

.mount-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.mount-card {
    background: rgba(26, 31, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mount-card.alliance {
    border-color: rgba(0, 102, 204, 0.4);
}

.mount-card.horde {
    border-color: rgba(204, 0, 0, 0.4);
}

.mount-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mount-card.alliance:hover {
    border-color: rgba(0, 102, 204, 0.8);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.mount-card.horde:hover {
    border-color: rgba(204, 0, 0, 0.8);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.2);
}

.mount-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mount-card:hover .mount-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.mount-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.mount-card.alliance .mount-info h4 {
    color: #4a9eff;
}

.mount-card.horde .mount-info h4 {
    color: #ff4a4a;
}

.mount-info p {
    color: #8892a0;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

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

.cta-main-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.cta-main-button::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;
}

.cta-main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

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

.button-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.button-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

.cta-disclaimer {
    margin-top: 20px;
    color: #8892a0;
    font-size: 14px;
    font-style: italic;
}

/* Responsive Design for King's Council CTA */
@media (max-width: 768px) {
    .kings-council-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mount-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-main-button {
        padding: 18px 30px;
    }
    
    .button-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-benefits .benefit-item {
        padding: 20px;
    }
    
    .mount-card {
        padding: 20px;
    }
    
    .mount-image {
        height: 150px;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: 
        linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.02) 0%, transparent 70%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.features h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 40px;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(0, 255, 255, 0.03);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.feature-card:hover {
    background: rgba(0, 255, 255, 0.08);
    border-image: linear-gradient(135deg, #00ffff, #0080ff) 1;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    transition: all 0.2s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.feature-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.feature-card p {
    color: #b8c5d1;
    font-size: 14px;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #0f1419 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 60%);
    position: relative;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    opacity: 0.4;
}

.philosophy h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.philosophy-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 50px;
    font-size: 18px;
    font-style: italic;
}

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

.philosophy-main {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

.philosophy-main h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.philosophy-main > p {
    color: #b8c5d1;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.philosophy-point {
    background: rgba(0, 255, 255, 0.04);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.philosophy-point:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.philosophy-point:hover::before {
    left: 100%;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.philosophy-point:hover .point-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.point-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.point-content p {
    color: #b8c5d1;
    font-size: 15px;
    line-height: 1.6;
}

.philosophy-conclusion {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
}

.philosophy-conclusion p {
    color: #e0e6ed;
    font-size: 16px;
    line-height: 1.7;
}

.philosophy-conclusion strong {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Responsive Design for Philosophy Section */
@media (max-width: 768px) {
    .philosophy {
        padding: 60px 0;
    }
    
    .philosophy h2 {
        font-size: 1.8rem;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-point {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .point-icon {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

/* Support Server Section */
.support-server {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
    position: relative;
    overflow: hidden;
}

.support-server::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.support-server h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.support-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 50px;
    font-size: 18px;
    font-style: italic;
}

.support-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.support-intro {
    background: rgba(0, 255, 255, 0.04);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-intro:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

.support-intro h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    text-align: center;
}

.support-intro > p {
    color: #b8c5d1;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.support-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #e0e6ed;
    font-size: 14px;
    font-weight: 500;
}

.support-tiers {
    background: rgba(0, 255, 255, 0.04);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.support-tiers h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    text-align: center;
}

.tiers-description {
    color: #b8c5d1;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.iframe-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px;
    margin: 25px 0;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.iframe-container:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.iframe-container iframe {
    border-radius: 6px;
    display: block;
    width: 100%;
    min-height: 600px;
}

.support-cta {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.cta-text {
    color: #b8c5d1;
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff8e53, #ffab73);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-icon {
    font-size: 1.1rem;
}

.support-transparency {
    background: rgba(0, 255, 255, 0.04);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.support-transparency h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.support-transparency p {
    color: #b8c5d1;
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Support Section */
@media (max-width: 768px) {
    .support-server {
        padding: 60px 0;
    }
    
    .support-server h2 {
        font-size: 1.8rem;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-intro,
    .support-tiers {
        padding: 25px;
    }
    
    .iframe-container {
        padding: 5px;
    }
    
    .iframe-container iframe {
        min-height: 500px;
    }
    
    .support-transparency {
        padding: 20px;
    }
}

.feature-card p {
    line-height: 1.5;
    transition: all 0.2s ease;
}

.feature-card:hover p {
    color: #e0e6ed;
}

/* Playable Factions Section */
.playable-factions {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.playable-factions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.playable-factions h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.factions-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.6;
}

.factions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.faction-card {
    background: rgba(26, 31, 46, 0.8);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 255, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faction-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

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

.faction-card.alliance {
    border-left: 4px solid #0066cc;
}

.faction-card.horde {
    border-left: 4px solid #cc0000;
}

.faction-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.faction-card.alliance .faction-image-placeholder {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-color: rgba(0, 102, 204, 0.3);
}

.faction-card.horde .faction-image-placeholder {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 100%);
    border-color: rgba(204, 0, 0, 0.3);
}

.placeholder-text {
    color: #8892a0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faction-emblem-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.faction-emblem-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.faction-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.faction-card.alliance h3 {
    color: #0066cc;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.faction-card.horde h3 {
    color: #cc0000;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
}

.faction-description {
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.faction-races {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.race-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.race-name {
    color: #e0e6ed;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.race-classes {
    color: #8892a0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.faction-card.alliance .race-item {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.1);
}

.faction-card.alliance .race-name {
    color: #4a9eff;
}

.faction-card.horde .race-item {
    background: rgba(204, 0, 0, 0.05);
    border-color: rgba(204, 0, 0, 0.1);
}

.faction-card.horde .race-name {
    color: #ff4a4a;
}

.race-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.faction-card.alliance .race-item:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
}

.faction-card.horde .race-item:hover {
    background: rgba(204, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.2);
}

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

.feature-highlight {
    text-align: center;
    padding: 25px 20px;
    background: rgba(26, 31, 46, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(26, 31, 46, 0.8);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-highlight h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.feature-highlight p {
    color: #8892a0;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design for Playable Factions */
@media (max-width: 768px) {
    .playable-factions {
        padding: 60px 0;
    }
    
    .playable-factions h2 {
        font-size: 1.8rem;
    }
    
    .factions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faction-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faction-races {
        gap: 8px;
    }
    
    .race-item {
        padding: 10px;
    }
    
    .race-name {
        font-size: 13px;
    }
    
    .race-classes {
        font-size: 10px;
    }
}

/* Subscription Section */
.subscription {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e13 50%, #1a1f2e 100%);
}

.subscription h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 50px;
    font-size: 16px;
}

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

.benefits-column h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit:hover {
    background: rgba(0, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content {
    flex: 1;
}

.benefit h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit p {
    color: #b8c5d1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto 40px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.price-header h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #8892a0;
    font-weight: 400;
}

.price-description {
    color: #b8c5d1;
    font-size: 14px;
    margin-bottom: 25px;
    font-style: italic;
}

.guarantee {
    margin-top: 15px;
    color: #00ffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    color: #b8c5d1;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

/* Action Buttons Container */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.play-now-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e27;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, #00ffff, #0099ff);
}

.create-account-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e27;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.create-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, #00ffff, #0099ff);
}

.btn-kofi {
    background: linear-gradient(135deg, #ff5f5f, #ff3030);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 95, 95, 0.3);
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-kofi:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 95, 0.4);
    background: linear-gradient(135deg, #ff7070, #ff4040);
}

@media (min-width: 768px) {
    .action-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .play-now-btn {
        flex: 1;
        max-width: 200px;
    }
    
    .btn-kofi {
        flex: 1;
        max-width: 180px;
    }
}

.testimonial {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 255, 0.03);
    border-left: 3px solid #00ffff;
    border-radius: 6px;
}

.testimonial blockquote {
    font-size: 16px;
    color: #e0e6ed;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial cite {
    color: #00ffff;
    font-size: 14px;
    font-weight: 600;
}

/* Content Showcase */
.content-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(0, 255, 255, 0.05);
    color: #8892a0;
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.tab-content {
    display: none;
    text-align: center;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.tab-content p {
    color: #b8c5d1;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.content-item {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    padding: 20px;
    transition: all 0.2s ease;
}

.content-item:hover {
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

.content-placeholder {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.content-item h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.content-item p {
    color: #8892a0;
    font-size: 14px;
    margin: 0;
}

/* Download Section */
.download {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e13 50%, #1a1f2e 100%);
}

.download h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 40px;
    font-size: 16px;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.step:hover {
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #0a0e13;
    border-radius: 50%;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: #b8c5d1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.server-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
}

.server-info h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.info-item {
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 14px;
    color: #b8c5d1;
}

.info-item strong {
    color: #00ffff;
}

/* Community Section */
.community {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
}

.community h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 40px;
    font-size: 16px;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.community-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
    animation: shimmer 2s ease-in-out infinite;
}

.community-cta h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.community-cta p {
    color: #b8c5d1;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.nostalgia-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
}

.nostalgia-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    transition: all 0.3s ease;
}

.nostalgia-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.nostalgia-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.nostalgia-item span:last-child {
    color: #e0e6ed;
    font-size: 14px;
    line-height: 1.4;
}

.nostalgia-cta {
    font-size: 18px;
    color: #00ffff;
    font-weight: 500;
    margin-top: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.nostalgia-era {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 255, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.nostalgia-era-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.nostalgia-era-image::before {
    content: "👑";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.nostalgia-era-content h4 {
    color: #00ffff;
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.nostalgia-era-content p {
    color: #b8c5d1;
    line-height: 1.6;
    font-size: 15px;
}

.nostalgia-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.testimonial {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00ffff;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: #00ffff;
    opacity: 0.3;
}

.testimonial-quote {
    color: #e0e6ed;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 15px;
}

.testimonial-author {
    color: #00ffff;
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}

@media (max-width: 768px) {
    .nostalgia-era {
        flex-direction: column;
        text-align: center;
    }
    
    .nostalgia-testimonials {
        grid-template-columns: 1fr;
    }
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.community-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.community-link:hover {
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

.link-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.link-content h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.link-content p {
    color: #8892a0;
    font-size: 14px;
    margin: 0;
}

/* Rules Section */
.rules {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e13 50%, #1a1f2e 100%);
}

.rules h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rules-subtitle {
    text-align: center;
    color: #8892a0;
    margin-bottom: 40px;
    font-size: 16px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    padding: 30px;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.rule-card:hover {
    background: rgba(0, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.rule-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    padding: 8px 0;
    color: #b8c5d1;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.rule-card li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 10px;
}

.rule-card li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 50px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand .logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
}

.footer-brand p {
    color: #b8c5d1;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

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

.footer-column h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #8892a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    color: #00ffff;
    padding-left: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.footer-column a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #8892a0;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom .legal-disclaimer {
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.4;
    color: #ffff99;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom .legal-disclaimer strong {
    color: #ffff00;
    font-weight: 700;
}

/* Connection Guide Section */
.connection-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.connection-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.connection-guide .container {
    position: relative;
    z-index: 2;
}

.connection-guide h2 {
    text-align: center;
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    font-weight: 700;
}

.connection-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.connection-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.step-number {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-note, .step-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.step-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.step-highlight {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.note-icon, .highlight-icon {
    font-size: 1.2rem;
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.step-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-button:not(.secondary) {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
}

.step-button.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.step-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.realmlist-code {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.realmlist-code code {
    background: none;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
}

.copy-button {
    background: #00d4ff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: #0099cc;
    transform: scale(1.05);
}

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

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.support-card h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-button {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.server-info {
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #b0b0b0;
    font-weight: 500;
}

.info-value {
    color: #00d4ff;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .features-grid,
    .download-steps,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column a {
        padding-left: 0;
    }
    
    .footer-column a::before {
        display: none;
    }
    
    .subscription-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-column {
        order: 2;
    }
    
    .pricing-column {
        order: 1;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Connection Guide Responsive */
    .connection-guide h2 {
        font-size: 2rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .realmlist-code {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .connection-support {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 3rem;
    font-weight: 300;
}

.founder-story {
    max-width: 900px;
    margin: 0 auto;
}

.story-content {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.founder-avatar {
    font-size: 3rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.founder-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.founder-title {
    color: #b0c4de;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text {
    margin-bottom: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e6ed;
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: #00ffff;
    font-weight: 600;
}

.story-text em {
    color: #ffd700;
    font-style: italic;
    font-weight: 500;
}

.story-games {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.story-games h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.game-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(26, 31, 46, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.game-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.game-item span {
    color: #e0e6ed;
    font-weight: 500;
    font-size: 0.95rem;
}

.story-mission {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.mission-icon {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
}

.mission-content h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mission-content p {
    color: #e0e6ed;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .founder-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .founder-info h3 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .story-mission {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mission-icon {
         align-self: center;
     }
 }

/* Personal Touch Section */
.personal-touch {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.gm-presence {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 128, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 128, 255, 0.1);
}

.gm-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    gap: 0.5rem;
    flex-shrink: 0;
}

.placeholder-icon {
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.gm-kai-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.gm-kai-image:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.placeholder-text {
    color: #b0c4de;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gm-description {
    flex: 1;
}

.gm-description h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.gm-description p {
    color: #e0e6ed;
    line-height: 1.7;
    font-size: 1.05rem;
}

.gm-description strong {
    color: #ffd700;
    font-weight: 600;
}

.special-features {
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.special-features h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.special-features > p {
    color: #e0e6ed;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 31, 46, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.feature-item .feature-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.feature-content h5 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: #e0e6ed;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Personal Touch */
@media (max-width: 768px) {
    .gm-presence {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .gm-image-placeholder {
        align-self: center;
        min-width: 120px;
        height: 120px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item .feature-icon {
        align-self: center;
    }
}

/* Jobs Section */
.jobs {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 50%, #0a0e13 100%);
    position: relative;
}

.jobs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.jobs h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jobs-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 3rem;
    font-weight: 300;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.1);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.job-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.job-title-section {
    flex: 1;
}

.job-title-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ffff;
    margin: 0 0 0.25rem 0;
}

.job-type {
    color: #b0c4de;
    font-size: 0.9rem;
    font-weight: 400;
}

.job-status {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-description {
    margin-bottom: 1.5rem;
}

.job-description p {
    color: #e0e6ed;
    line-height: 1.6;
    font-size: 1rem;
}

.job-requirements,
.job-benefits {
    margin-bottom: 1.5rem;
}

.job-requirements h4,
.job-benefits h4 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-requirements ul,
.job-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li,
.job-benefits li {
    color: #e0e6ed;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.job-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.job-apply {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.apply-button {
    display: inline-block;
    background: linear-gradient(135deg, #0080ff, #0066cc);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.2);
}

.apply-button:hover {
    background: linear-gradient(135deg, #0099ff, #0080ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 255, 0.3);
    border-color: rgba(0, 128, 255, 0.5);
}

.apply-note {
    color: #b0c4de;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Jobs Section Responsive */
@media (max-width: 768px) {
    .jobs h2 {
        font-size: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .job-title-section {
        text-align: center;
    }
    
    .apply-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .jobs {
        padding: 60px 0;
    }
    
    .jobs h2 {
        font-size: 1.75rem;
    }
    
    .jobs-subtitle {
        font-size: 1rem;
    }
    
    .job-card {
        padding: 1.25rem;
    }
    
    .job-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .job-title-section h3 {
        font-size: 1.25rem;
    }
}