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

:root {
    --discord-blurple: #5865F2;
    --discord-dark: #2C2F33;
    --discord-darker: #23272A;
    --discord-light: #99AAB5;
    --accent-purple: #7289DA;
    --accent-green: #43B581;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--discord-darker);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.navbar {
    background: rgba(35, 39, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-brand i {
    color: var(--discord-blurple);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--discord-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fff;
}

.btn-invite {
    background: var(--discord-blurple);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-invite:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #23272A 0%, #2C2F33 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--discord-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--discord-blurple);
    color: #fff;
}

.btn-primary:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--discord-blurple);
}

.btn-secondary:hover {
    background: var(--discord-blurple);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--discord-blurple);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-item p {
    color: var(--discord-light);
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-avatar {
    width: 350px;
    height: 350px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.5);
    animation: float 3s ease-in-out infinite;
}

.bot-avatar i {
    font-size: 10rem;
    color: #fff;
}

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

.features {
    padding: 100px 0;
    background: var(--discord-dark);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--discord-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.section-subtitle code {
    background: rgba(88, 101, 242, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    color: var(--discord-blurple);
    font-family: 'Courier New', monospace;
}

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

.feature-card {
    background: rgba(35, 39, 42, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
    border-color: var(--discord-blurple);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--discord-light);
    line-height: 1.8;
}

.commands {
    padding: 100px 0;
    background: var(--discord-darker);
}

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

.command-category {
    background: rgba(44, 47, 51, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s;
}

.command-category:hover {
    border-color: var(--discord-blurple);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(88, 101, 242, 0.3);
}

.category-header i {
    font-size: 1.8rem;
    color: var(--discord-blurple);
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

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

.command-item {
    background: rgba(35, 39, 42, 0.6);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--discord-blurple);
}

.command-item code {
    font-family: 'Courier New', monospace;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1rem;
}

.command-item .args {
    color: var(--discord-light);
    font-size: 0.9rem;
    font-style: italic;
}

.command-item p {
    color: var(--discord-light);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.invite-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C2F33 0%, #23272A 100%);
}

.invite-card {
    background: rgba(88, 101, 242, 0.1);
    border: 2px solid var(--discord-blurple);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.invite-card i {
    font-size: 5rem;
    color: var(--discord-blurple);
    margin-bottom: 1.5rem;
}

.invite-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.invite-card p {
    color: var(--discord-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.invite-note {
    font-size: 0.9rem !important;
    color: #f5c542 !important;
    margin-top: 1.5rem !important;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.footer {
    background: var(--discord-darker);
    padding: 3rem 0;
    border-top: 1px solid rgba(88, 101, 242, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--discord-blurple);
    font-size: 2rem;
}

.footer p {
    color: var(--discord-light);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bot-avatar {
        width: 250px;
        height: 250px;
    }
    
    .bot-avatar i {
        font-size: 7rem;
    }
    
    .features-grid,
    .commands-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .invite-card {
        padding: 2rem;
    }
    
    .invite-card h2 {
        font-size: 1.8rem;
    }
}

html {
    scroll-behavior: smooth;
}

.legal-page {
    padding: 120px 0 80px;
    background: var(--discord-darker);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(44, 47, 51, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--discord-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(88, 101, 242, 0.2);
}

.legal-section {
    margin-bottom: 2.5rem;
}

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

.legal-section p {
    color: var(--discord-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--discord-light);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.legal-section a {
    color: var(--discord-blurple);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: #4752C4;
    text-decoration: underline;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
