:root {
    --bg-color: #0b0c10;
    --card-bg: rgba(31, 40, 51, 0.6);
    --text-primary: #c5c6c7;
    --text-secondary: #8b929a;
    --accent-color: #66fcf1;
    --accent-hover: #45a29e;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic background gradients */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.15) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

body::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(69, 162, 158, 0.1) 0%, rgba(11, 12, 16, 0) 60%);
    z-index: -1;
    filter: blur(50px);
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.2);
    border: 2px solid rgba(102, 252, 241, 0.1);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

p.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.content {
    text-align: center;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-content {
    text-align: left;
}

.privacy-content h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

a.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(102, 252, 241, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

a.button:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.4);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}
