/* Rajshree Grand Lottery - Coming Soon */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #c41e3a;
    --primary-dark: #9a1830;
    --text: #1a1a1a;
    --text-muted: #5c5c5c;
    --bg: #fafafa;
    --white: #ffffff;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
}

/* Header */
.header {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
}

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

/* Main */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(196, 30, 58, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 800px;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.legal-links {
    margin-top: 12px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
}

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

.legal-links span {
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.2);
}

/* Legal pages */
.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-page .date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 12px;
}

.legal-page p, .legal-page li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-page ul {
    margin: 0 0 16px 24px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .header {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 16px;
    }
}
