/* ============================================
   GummyMC - Neon Theme CSS
   ============================================ */

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

:root {
    --primary: #d946ef;
    --primary-light: #ec4899;
    --secondary: #a855f7;
    --accent: #06b6d4;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --border: #333333;
    --neon-pink: #ff006e;
    --neon-purple: #b537f2;
    --neon-cyan: #00f5ff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

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

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background-color: var(--surface);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-pink);
    background-color: rgba(217, 70, 239, 0.1);
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ip {
    background-color: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 0 20px rgba(184, 85, 242, 0.3);
}

.hero-ip strong {
    color: var(--neon-pink);
    font-size: 1.3rem;
    margin-left: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(184, 85, 242, 0.1);
    box-shadow: 0 0 20px rgba(184, 85, 242, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.copy-btn {
    background-color: var(--neon-cyan);
    color: var(--background);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.copy-btn:hover {
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    transform: scale(1.05);
}

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: 4rem 0;
    background-color: var(--background);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(184, 85, 242, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
}

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

/* ============================================
   Stats Section
   ============================================ */

.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05), rgba(184, 85, 242, 0.05));
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    padding: 4rem 0;
    background-color: var(--surface);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta > .container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-ip {
    background-color: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(184, 85, 242, 0.3);
}

.cta-ip strong {
    display: block;
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin: 0.5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Main Content
   ============================================ */

.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.rules-section {
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.rules-section:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(184, 85, 242, 0.2);
}

.rules-section h2 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.rules-section p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ============================================
   Discord Section
   ============================================ */

.discord-section {
    background-color: var(--surface);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.discord-section:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(184, 85, 242, 0.2);
}

.discord-section h2 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.discord-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.discord-list {
    list-style: none;
    margin-left: 0;
}

.discord-list li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.discord-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: bold;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.channel-card {
    background-color: rgba(217, 70, 239, 0.05);
    border: 2px solid var(--neon-purple);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.channel-card:hover {
    background-color: rgba(217, 70, 239, 0.1);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
    transform: translateY(-3px);
}

.channel-card h3 {
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.channel-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--surface);
    border-top: 2px solid var(--border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--neon-pink);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features h2,
    .cta h2,
    .main-content h1 {
        font-size: 1.8rem;
    }

    .hero-ip {
        flex-direction: column;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: 300px;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    .features-grid,
    .stats-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
}
