/* Home Page Styles */

.home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
}

.hero-content {
    text-align: left;
}

.mascot {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(138, 92, 245, 0.4));
}

.title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.browse-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--purple), var(--purple-dim));
    color: var(--text);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition);
}

.browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 92, 245, 0.3);
    color: var(--text);
}

.external-link {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.external-link:hover {
    color: var(--purple);
}

.footer {
    padding: 2rem;
    text-align: center;
}

.email {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .title {
        font-size: 2.5rem;
    }

    .mascot {
        width: 250px;
        order: -1;
    }
}

/* Age Verification Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-modal {
    background: linear-gradient(145deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 520px;
    margin: 1rem;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.age-modal-overlay.active .age-modal {
    transform: scale(1) translateY(0);
}

.age-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.age-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.age-modal-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.age-btn-confirm {
    background: linear-gradient(135deg, var(--purple), var(--purple-dim));
    color: var(--text);
}

.age-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(138, 92, 245, 0.4);
}

.age-btn-cancel {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.age-btn-cancel:hover {
    background: var(--surface-2);
    border-color: var(--text-muted);
}