* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.nav-brand i {
    color: #ff6b35;
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    list-style: none;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Policy Pages (Privacy, Terms, Disclaimer, Thanks) */
.privacy, .terms, .disclaimer, .thanks {
    padding: 3rem 0;
    background: #111111;
}

.policy-content {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
}

.policy-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.policy-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.policy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #ff6b35;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.thanks-content {
    text-align: center;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
}

.thanks-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.thanks-content .btn-primary {
    width: auto;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    .header .container {
        padding: 1rem 20px;
    }

    .nav-brand {
        font-size: 1.5rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .privacy, .terms, .disclaimer, .thanks {
        padding: 6rem 0;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h3 {
        font-size: 1.5rem;
    }

    .policy-content p {
        font-size: 1rem;
    }

    .policy-content ul li {
        font-size: 1rem;
    }

    .thanks-content {
        padding: 2rem;
    }

    .thanks-content p {
        font-size: 1rem;
    }

    .btn-primary {
        width: auto;
        padding: 1rem 2rem;
    }

  
}

@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}