/* CryptoLotto - mobile.css */
/* Styles for mobile screens to create a native app feel */

@media (max-width: 768px) {
    /* Hide desktop-specific elements */
    .desktop-nav {
        display: none;
    }

    /* Main body padding to prevent content from being hidden by fixed nav */
    body {
        padding-bottom: 80px; /* Height of the mobile nav bar + some space */
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    /* Mobile Navigation Bar (Bottom Tab Bar) */
    .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 0.7rem;
        flex-grow: 1;
        transition: color 0.3s ease;
    }

    .mobile-nav a.active,
    .mobile-nav a:hover {
        color: var(--accent-primary);
    }

    .mobile-nav .nav-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
    }

    /* Adjust footer margin for mobile */
    .site-footer {
        margin-bottom: 70px; /* Avoid overlapping with nav */
    }
}