/* Premium Adult Gaming Website Styles */

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

:root {
    --primary-purple: #9D4EDD;
    --primary-pink: #F72585;
    --accent-gold: #FFB700;
    --neon-cyan: #00F5FF;
    --bg-dark: #0D1117;
    --bg-card: #161B22;
    --bg-secondary: #21262D;
    --text-primary: #F0F6FC;
    --text-secondary: #8B949E;
    --text-muted: #6E7681;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #21262D 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 37, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Offer Banner */
.top-offer-banner {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53, #FFD93D) !important;
    color: white !important;
    padding: 12px 0 !important;
    text-align: center !important;
    position: relative !important;
    z-index: 999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    animation: banner-glow 3s ease-in-out infinite !important;
    display: block !important;
    width: 100% !important;
    min-height: 50px !important;
}

@keyframes banner-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.6); }
}

.offer-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
}

.offer-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.offer-message {
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    display: inline-block !important;
}

.offer-cta {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    display: inline-block !important;
}

.offer-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.offer-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.offer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    border: 2px solid rgba(0, 245, 255, 0.2);
}

.hero-logo {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4), 0 0 30px rgba(0, 245, 255, 0.3);
    border: 3px solid rgba(157, 78, 221, 0.5);
    object-fit: cover;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link.btn-premium {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.nav-link.btn-money {
    background: linear-gradient(45deg, #FFB700, #FF8E53);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 10px;
}

.nav-link.btn-money:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
    background: linear-gradient(45deg, #FFD700, #FFB700);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1C1F26 25%, #2D1B69 50%, #1C1F26 75%, #0D1117 100%);
    overflow: hidden;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gradient-text {
    background: linear-gradient(45deg, #9D4EDD, #F72585, #00F5FF, #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg) saturate(1.2); }
    25% { filter: hue-rotate(90deg) saturate(1.5); }
    50% { filter: hue-rotate(180deg) saturate(1.8); }
    75% { filter: hue-rotate(270deg) saturate(1.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #9D4EDD, #F72585);
    color: white;
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4), 0 0 20px rgba(247, 37, 133, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.5);
}

.btn-secondary {
    background: rgba(13, 17, 23, 0.8);
    color: white;
    border: 2px solid rgba(0, 245, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

.btn-partner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-community {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.btn-download {
    background: linear-gradient(45deg, var(--accent-gold), #ff9500);
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(157, 78, 221, 0.6), 0 0 30px rgba(247, 37, 133, 0.5);
}

.btn-secondary:hover {
    border-color: rgba(0, 245, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.4);
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Offer Section */
.premium-offer {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
    padding: 80px 0;
}

.offer-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 3px solid var(--accent-gold);
    border-radius: 25px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.offer-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 800;
}

.price-section {
    margin: 30px 0;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 15px;
}

.new-price {
    font-size: 3rem;
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 0 0 20px var(--accent-gold);
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 10px;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.offer-features {
    margin: 30px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.offer-feature {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-offer {
    background: linear-gradient(45deg, var(--accent-gold), #ff9500);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
}

/* Earn Money Section */
.earn-money {
    background: var(--bg-card);
    padding: 100px 0;
}

.earn-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.earn-subtitle {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.earn-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.earn-methods {
    margin-bottom: 40px;
}

.earn-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.method-info h4 {
    color: var(--primary-pink);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.method-info p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.earn-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--accent-gold);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.earn-cta {
    background: linear-gradient(135deg, var(--bg-secondary), var(--primary-purple));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--primary-purple);
}

.earn-cta h4 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.earn-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.btn-earn {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(13, 17, 23, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(20px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(22, 27, 34, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
    position: relative;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(33, 38, 45, 0.6));
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 78, 221, 0.5);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #9D4EDD, #F72585);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 20px 0 15px 0;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-feature {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features {
    background: var(--bg-dark);
    padding: 120px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Partners & Community Sections */
.partners, .community {
    background: var(--bg-dark);
}

.partner-card, .community-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 2px solid var(--primary-purple);
    border-radius: 25px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.partner-logo, .community-logo {
    flex-shrink: 0;
}

.partner-image, .community-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-purple);
}

.partner-name, .community-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.partner-description, .community-description {
    color: var(--primary-pink);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-details, .community-details {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.partner-buttons, .community-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Partner & Community Stats */
.partner-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.partner-stat {
    text-align: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-highlight {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--accent-gold);
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.community-achievements {
    margin: 20px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.achievement-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.achievement-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Coming Soon Sections */
.developers, .sponsors {
    background: var(--bg-card);
}

.coming-soon-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 2px solid var(--primary-purple);
    border-radius: 25px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-gold);
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px var(--accent-gold); }
    50% { text-shadow: 0 0 30px var(--accent-gold), 0 0 40px var(--accent-gold); }
}

.coming-soon-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.contact-info {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-email {
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.benefits-section {
    text-align: left;
    margin: 30px 0;
}

.benefits-title {
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
    text-align: center;
}

.benefits-list {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-list li {
    margin-bottom: 8px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.download-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.download-features {
    margin-bottom: 30px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-check {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-section h4 {
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.discord { background: #7289da; }
.social-link.telegram { background: #0088cc; }
.social-link.patreon { background: #f96854; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--primary-purple);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online {
    background: #48bb78;
    box-shadow: 0 0 10px #48bb78;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-message {
        font-size: 0.9rem;
    }
    
    .offer-cta {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .partner-card, .community-card {
        flex-direction: column;
        text-align: center;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .earn-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .earn-stats {
        justify-content: center;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-buttons, .community-buttons {
        flex-direction: column;
    }
}