/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 70px;
    /* Space for bottom navbar */
    background-color: #f3f4f6;
}

/* Hide scrollbar for cleaner app look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 80px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 50;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.bottom-nav a.active {
    color: #4f46e5;
}

.bottom-nav a svg {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bingo-grid {
    display: grid;
    gap: 4px;
    margin-top: 20px;
}

.bingo-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    border: 2px solid #4f46e5;
    border-radius: 8px;
    color: #1f2937;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pop {
    animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.ball-drawn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4f46e5, #312e81);
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media print {
    body {
        padding: 0;
        background: white;
        margin: 0;
    }

    .bottom-nav,
    .no-print {
        display: none !important;
    }

    .app-container {
        box-shadow: none;
        max-width: none;
        padding: 0;
    }

    .print-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        page-break-inside: avoid;
    }

    .print-card {
        border: 2px dashed #ccc;
        padding: 15px;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
}