/* Base styles - loaded by all pages */

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

/* CSS Variables */
:root {
    --primary-color: #FFD600;
    --secondary-color: #FFEA00;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #4169E1;
}

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--darker-bg);
}

/* Container - default for legal pages */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Basic Link Styles */
a {
    color: var(--text-light);
    text-decoration: none;
}

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

/* Back Link Button */
.back-link {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: var(--dark-bg);
    color: var(--primary-color);
    border: 1px solid rgba(255, 214, 0, 0.15);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.15s ease, transform 0.12s ease;
}

.back-link:hover {
    background: rgba(255, 214, 0, 0.06);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 214, 0, 0.2);
}

footer p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive - Footer */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
