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

body {
    font-family: 'Poppins', sans-serif;
    background: #0F1419;
    color: #FFFFFF;
    line-height: 1.6;
}

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

/* Header */
header {
    background: #1C2526;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #00D4FF;
}

.desktop-nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #00D4FF;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1C2526;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
}

.mobile-nav.active {
    display: flex;
}

/* Hero */
#hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F1419, #1C2526);
}

#hero h2 {
    font-size: 48px;
    font-weight: 800;
    color: #00D4FF;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 212, 255, 0.3);
}

#hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: #00D4FF;
    color: #0F1419;
}

.btn-secondary {
    background: transparent;
    color: #00D4FF;
    border: 2px solid #00D4FF;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Bots Section */
#bots {
    padding: 80px 0;
}

#bots h3 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #00D4FF;
    margin-bottom: 50px;
}

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

.bot-card {
    background: #1C2526;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.bot-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #00D4FF;
    margin-bottom: 15px;
}

.bot-card p {
    font-size: 16px;
}

.coming-soon {
    opacity: 0.7;
    border: 2px dashed #00D4FF;
}

/* About */
#about {
    padding: 60px 0;
    background: #0F1419;
    text-align: center;
}

#about h3 {
    font-size: 32px;
    font-weight: 800;
    color: #00D4FF;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #1C2526;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #00D4FF;
}

.footer-links a {
    color: #00D4FF;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
    #hero {
        padding: 60px 0;
    }
    #hero h2 {
        font-size: 32px;
    }
    #hero p {
        font-size: 16px;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    #bots h3 {
        font-size: 28px;
    }
    .bot-grid {
        grid-template-columns: 1fr;
    }
    #about h3 {
        font-size: 24px;
    }
    #about p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    #hero h2 {
        font-size: 28px;
    }
}

/* Policy Pages */
#privacy, #terms {
    padding: 80px 0;
    background: #0F1419;
}

#privacy h2, #terms h2 {
    font-size: 40px;
    font-weight: 800;
    color: #00D4FF;
    text-align: center;
    margin-bottom: 20px;
}

#privacy p, #terms p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #00D4FF;
    margin: 30px 0 15px;
}

.policy-content p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    #privacy h2, #terms h2 {
        font-size: 32px;
    }
    .policy-content h3 {
        font-size: 20px;
    }
    .policy-content p {
        font-size: 14px;
    }
}

/* Ensure full height layout */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background: #1C2526;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #00D4FF;
}