/* Mobile Responsive Styles for Gigadat Casino */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timing-grid,
    .benefits-grid,
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Casino Cards */
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Content Sections */
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Steps */
    .step-card {
        padding-left: 3rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        left: 1rem;
        font-size: 1rem;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Mobile Features */
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    /* Security */
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .eeat-badges {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Share Buttons */
    .share-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Calculator */
    .calculator-widget {
        padding: 1.5rem;
    }
    
    /* Review Cards */
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    /* Timing */
    .timing-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .casino-name {
        font-size: 1.25rem;
    }
    
    .bonus-amount {
        font-size: 1rem;
    }
    
    .casino-features li {
        font-size: 0.9rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .comparison-item {
        padding: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
        padding-left: 2.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .hero-visual,
    .casino-cta,
    .btn-primary,
    .btn-hero-primary,
    .btn-hero-secondary,
    .social-share-section,
    .calculator-section,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero-section {
        background: none;
        padding: 1rem 0;
    }
    
    .casino-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}