/* Base Styles */
: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 {
    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: rgba(115, 136, 210, 0.1);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button:hover {
    background: rgba(115, 136, 210, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.back-button i {
    font-size: 0.9rem;
}

/* Main Content Styles */
main {
    margin-top: 6rem;
    padding: 0 3rem 4rem;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 12px;
    padding: 4rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

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

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

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

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-section {
    background: var(--darker-gray);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-section p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.policy-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

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

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

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

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

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

.last-updated p {
    margin-bottom: 0.5rem;
}

.last-updated strong {
    color: var(--white);
    font-weight: 600;
}

/* Footer - Matching main site */
footer {
    padding: 4rem 3rem;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-about p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(115, 136, 210, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    color: var(--light-gray);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .policy-container {
        padding: 3rem;
    }
}

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

    main {
        padding: 0 1.5rem 3rem;
        margin-top: 5rem;
    }

    .policy-container {
        padding: 2rem;
    }

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

    .policy-section {
        padding: 2rem 1.5rem;
    }
}

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

    .policy-header p {
        font-size: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        margin-bottom: 1rem;
    }
}