/* --- Hued Games Terms of Use Style Sheet --- */

:root {
    --bg-dark: #070410;
    --surface-color: #120d28;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --primary-neon: #a855f7;
    --secondary-neon: #ec4899;
    --border-neon: rgba(168, 85, 247, 0.25);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(168, 85, 247, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
}

.container {
    max-width: 800px;
    margin: 80px auto;
    padding: 3rem;
    background-color: var(--surface-color);
    border-radius: 20px;
    border: 1px solid var(--border-neon);
    box-shadow: var(--shadow);
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-neon);
    padding-bottom: 0.5rem;
}

p {
    margin: 1rem 0;
    color: var(--text-secondary);
}

ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

a {
    color: var(--primary-neon);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-neon);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    h1 {
        font-size: 2rem;
    }
}
