:root {
    --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --bg-color: #0b0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-color: #bb86fc;
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(106, 17, 203, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 117, 252, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(187, 134, 252, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.effective-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin: 30px 0;
}

.highlight {
    background: rgba(187, 134, 252, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 4px;
    font-style: italic;
}

.warning {
    color: #ffb74d;
    font-weight: 500;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px dashed var(--glass-border);
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }

    .content {
        padding: 25px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}
