html, body {
    height: 100%;
    margin: 0;
    font-family: Roboto, sans-serif;
    overscroll-behavior: none;
}

:root {
    --md-sys-color-primary: #6750A4;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-primary-container: #EADDFF;
    --md-sys-color-on-primary-container: #21005D;

    --md-sys-color-secondary: #625B71;
    --md-sys-color-on-secondary: #FFFFFF;

    --md-sys-color-surface: #FEF7FF;
    --md-sys-color-on-surface: #1D1B20;
    --md-sys-color-surface-variant: #E7E0EB;
    --md-sys-color-on-surface-variant: #49454F;

    --md-sys-color-outline: #79747E;
}

/* Main Section */
.earth {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('./pictures/earth.jpg') center / cover no-repeat;
    background-attachment: fixed;
}

.hero {
    height: calc(100% - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-card {
    width: 950px;
    height: flex;
    padding: 30px;
    border-radius: 28px;
    background-color: var(--md-sys-color-surface);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.home-card h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #532273;
    letter-spacing: -1px;
}

.home-card p {
    margin: 0;
    font-size: 20px;
    color: var(--md-sys-color-on-surface-variant);
}

.home-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 12px;
}

md-filled-button,
md-filled-tonal-button {
    width: 100%;
    height: 55px; /* Taller buttons */
    font-size: 18px; /* Larger text */
    font-weight: 600;
}

md-filled-button::part(label),
md-filled-tonal-button::part(label) {
    font-size: 18px;
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 420px;
    max-width: 90%;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    transition: transform 0.4s ease;
    z-index: 3000;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text {
    font-size: 14px;
    color: var(--md-sys-color-on-surface-variant);
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}