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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 60px 70px, #fff, transparent),
        radial-gradient(1px 1px at 50px 50px, #ddd, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 90px 10px, #eee, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(78, 205, 196, 0.5); }
    to { text-shadow: 0 0 30px rgba(78, 205, 196, 0.8), 0 0 40px rgba(78, 205, 196, 0.4); }
}

.tagline {
    font-size: 1.2rem;
    color: #95e1d3;
    font-weight: 300;
}

.hero {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.hero h2 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #b8b8b8;
}

.discord-section {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.15) 100%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(88, 101, 242, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-section h3 {
    color: #7289da;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.discord-section p {
    color: #c8c8c8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-discord {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
}

.card h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.card p {
    margin-bottom: 1rem;
    color: #c8c8c8;
}

.features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #d0d0d0;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a8a0 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

.btn-secondary {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateY(-2px);
}

.mod-status {
    margin: 1rem 0;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon {
    font-weight: 600;
    color: #95e1d3;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(68, 168, 160, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.cta h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.social-links {
    margin-top: 1.5rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    color: #888;
}

footer p {
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.4rem;
    }
}
