:root {
    --gold: #D4AF37;
    --dark-blue: #0A1A2F;
    --light-blue: #1A3A5F;
    --cream: #F5F0E6;
    --slate: #4A5C6A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-blue);
    color: var(--cream);
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 20%, rgba(26, 58, 95, 0.8) 0%, rgba(10, 26, 47, 1) 90%);
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 26, 47, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #F5F0E6, var(--gold));
}

header {
    text-align: center;
    padding: 40px 30px 20px;
    position: relative;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(245, 240, 230, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.date {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    margin: 20px 0;
}

.section {
    padding: 30px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.guidance-card {
    background: rgba(26, 58, 95, 0.4);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.guidance-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.guidance-card h3 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.guidance-card p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.numbers-container, .colors-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    background: linear-gradient(135deg, var(--gold), #F5D27D);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.color {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #F5D27D);
    color: var(--dark-blue);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.premium-section {
    text-align: center;
    padding-top: 0;
}

.premium-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 58, 95, 0.3));
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.btn-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #F5D27D);
    color: var(--dark-blue);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.security-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(245, 240, 230, 0.7);
}

.refresh-container {
    text-align: center;
    padding-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.6);
}

/* Loading States */
.loading {
    color: rgba(245, 240, 230, 0.7);
    font-style: italic;
}

.loading-numbers, .loading-colors {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.number-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 58, 95, 0.4);
    animation: pulse 1.5s infinite;
}

.color-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: rgba(26, 58, 95, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

/* Stars Background */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: var(--opacity); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 20px;
    }
    
    .number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .color {
        width: 80px;
        height: 80px;
    }
    
    .premium-cta {
        padding: 20px;
    }
}

@import url('privacy-style.css');