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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    color: #ecf0f1;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 27, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.logo-placeholder {
    width: 160px;
    height: 160px;
    background: rgba(94, 179, 224, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #5eb3e0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #f5a855;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff8c42;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 220px auto 80px;
    padding: 0 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(94, 179, 224, 0.2);
}

.page-header h1 {
    font-size: 48px;
    color: #f5a855;
    margin-bottom: 20px;
}

.page-header .last-updated {
    color: #bdc3c7;
    font-size: 16px;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    font-size: 32px;
    color: #5eb3e0;
    margin-bottom: 20px;
    margin-top: 40px;
}

.terms-section h3 {
    font-size: 24px;
    color: #f5a855;
    margin-bottom: 15px;
    margin-top: 30px;
}

.terms-section p {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-section ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.terms-section li {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.contact-box {
    background: rgba(15, 22, 33, 0.7);
    border: 1px solid rgba(94, 179, 224, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.contact-box h3 {
    color: #5eb3e0;
    margin-bottom: 15px;
}

.contact-box p {
    color: #ecf0f1;
    margin-bottom: 10px;
}

.contact-box a {
    color: #f5a855;
    text-decoration: none;
}

.contact-box a:hover {
    color: #ff8c42;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0d1621 0%, #0a0e1a 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(94, 179, 224, 0.2);
}

.footer p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .main-content {
        margin-top: 100px;
        padding: 0 20px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .terms-section h2 {
        font-size: 28px;
    }
}