* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #a0a0a0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, #444, #555);
    color: #fff;
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #2d2d2d;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.description {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item img {
    height: 28px;
}

.section {
    padding: 100px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h2 i {
    color: #888;
}

.card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.card-header h3 {
    font-size: 1.3rem;
}

.card-header p {
    color: #666;
}

.card-desc {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #444, #555);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.discord-icon {
    width: 60px;
    height: 60px;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.member-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.member-count i {
    color: #888;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-youtube {
    background: #ff0000;
    border-color: #ff0000;
}

.btn-youtube:hover {
    background: #cc0000;
}

.btn-tiktok {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    border: none;
}

.btn-discord {
    background: #5865f2;
    border-color: #5865f2;
}

.btn-primary {
    background: linear-gradient(135deg, #444, #555);
    border: none;
}

.youtube-card:hover {
    border-color: #ff0000;
}

.tiktok-card:hover {
    border-color: #ff0050;
}

.discord-card:hover {
    border-color: #5865f2;
}

.roblox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.roblox-grid .card {
    text-align: center;
}

.roblox-grid .card h3 {
    margin-bottom: 10px;
}

.roblox-grid .card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-card {
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card > p {
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #555;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .roblox-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}