/* McLuck Casino — Mobile Responsive CSS */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        min-width: 50%;
    }
}

@media (max-width: 768px) {

    .site-nav {
        display: none;
    }

    /* Show only the CTA button in mobile header, hide Log In */
    .header-login .btn-ghost {
        display: none;
    }

    .burger {
        display: flex;
    }


    .hero {
        padding: 72px 0 56px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    .section {
        padding: 52px 0;
    }

    .section-sm {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        flex-direction: column;
    }

    .feature-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .feature-strip-item:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .chart-wrap {
        height: 240px !important;
        width: 100% !important;
        position: relative !important;
        overflow: hidden;
    }

    .chart-wrap canvas {
        max-width: 100% !important;
        width: 100% !important;
    }

    .coins-box {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .coin-divider {
        width: 100%;
        height: 1px;
    }

    .data-table {
        font-size: 0.82rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px 12px;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .card {
        padding: 20px;
    }

    .rating-wrap {
        padding: 20px;
    }

    .rating-score-big {
        font-size: 3.5rem;
    }

    .chart-wrap {
        height: 200px !important;
    }

    .chart-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
}