/* Slotrus - Legal Pages (Terms, Privacy, Cookies) - matches the bright landing theme */

:root {
    --purple-deep: #2b0a6e;
    --purple: #6321d6;
    --magenta: #d61f9e;
    --pink: #ff3d81;
    --gold: #ffd23f;
    --gold-deep: #f5a623;
    --green: #46d34e;
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.78);
    --card: rgba(255, 255, 255, 0.10);
    --card-line: rgba(255, 255, 255, 0.28);
}

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

body {
    font-family: 'Fredoka', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, #9a3bff 0%, transparent 55%),
        radial-gradient(circle at 100% 20%, rgba(214, 31, 158, 0.55) 0%, transparent 45%),
        radial-gradient(circle at 0% 60%, rgba(255, 210, 63, 0.18) 0%, transparent 40%),
        linear-gradient(180deg, #4a13a8 0%, #35108a 40%, #2b0a6e 100%);
    background-attachment: fixed;
}

/* Baloo 2 - fun chunky rounded display for titles (matches landing) */
.logo, main h1, section h2 {
    font-family: 'Baloo 2', 'Fredoka', sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
}

/* Nav */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(43, 10, 110, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 210, 63, 0.22);
}
.nav-inner {
    max-width: 960px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.7rem 1.5rem;
}
.logo {
    text-decoration: none; color: var(--text);
    font-size: 1.4rem; letter-spacing: 0.01em;
    display: flex; align-items: center; gap: 0.5rem;
}
.logo-img {
    display: block; height: 30px; width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.breadcrumb {
    font-size: 0.95rem; color: var(--text-dim); font-weight: 500;
    display: flex; align-items: center; gap: 0.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { opacity: 0.4; }

/* Content */
main {
    max-width: 760px;
    margin: 0 auto;
    padding: 7rem 1.5rem 4rem;
}

main h1 {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
    text-shadow: 0 0 40px var(--gold-glow, rgba(255,210,63,0.4)), 2px 2px 0 var(--magenta);
}

.updated {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

section {
    margin-bottom: 1.6rem;
    background: var(--card);
    border: 1px solid var(--card-line);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
}

section h2 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

section p {
    font-size: 1.02rem;
    color: var(--text-dim);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}
section p:last-child { margin-bottom: 0; }

section p strong { color: var(--text); font-weight: 600; }

/* Table (cookies page) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.6rem 0;
    font-size: 0.95rem;
}
th, td {
    text-align: left;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
th {
    color: var(--gold);
    font-weight: 700;
}
td { color: var(--text-dim); }

/* Footer */
footer {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
footer a { color: var(--gold); text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--pink); }

.sep { margin: 0 0.5rem; opacity: 0.4; }

/* Mobile */
@media (max-width: 768px) {
    main h1 { font-size: 2rem; }
    section h2 { font-size: 1.1rem; }
    section p { font-size: 0.98rem; }
    .logo { font-size: 1.2rem; }
}
