/* styles.css */
:root {
    --primary: #7388d2;
    --primary-dark: #5a72c5;
    --primary-light: #8fa0e0;
    --secondary: #2e96a5;
    --secondary-dark: #247a87;
    --secondary-light: #3ab2c4;
    --black: #060606;
    --dark: #0f0f0f;
    --darker-gray: #1a1a1a;
    --dark-gray: #252525;
    --medium-gray: #3d3d3d;
    --white: #ffffff;
    --light-gray: #e0e0e0;
    --border: rgba(115, 136, 210, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, #7388d2 0%, #2e96a5 100%);
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Remove all underlines */
a, a:hover, a:focus, a:active {
    text-decoration: none !important;
}

/* Particle background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black);
}

/* Glowing accent elements */
.accent {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.accent-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.accent-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
}

/* Header - Glass morphism effect */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.back-button {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

/* Main content */
main {
    margin-top: 6rem;
    padding: 3rem;
}

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

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.policy-header h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.policy-header p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    background: var(--dark);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.policy-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    position: relative;
    padding-left: 1.8rem;
}

.policy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.policy-section a {
    color: var(--primary-light);
    transition: var(--transition);
}

.policy-section a:hover {
    color: var(--primary);
}

.note-box {
    background: rgba(115, 136, 210, 0.1);
    border-left: 3px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
    margin: 2rem 0;
}

.note-box p {
    margin-bottom: 0;
    color: var(--primary-light);
}

.last-updated {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Footer - Minimalist */
footer {
    padding: 3rem;
    background: var(--black);
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    main {
        padding: 2rem 1rem;
        margin-top: 5rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}