/* Responsive Styles for Gigadat Casino */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .casinos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    /* Sections */
    .casinos-section,
    .benefits-section,
    .advantages-section,
    .deposit-guide-section,
    .security-section,
    .payment-speed-section,
    .withdrawal-guide-section,
    .mobile-section,
    .detailed-reviews-section,
    .comparison-section,
    .final-section,
    .faq-section {
        padding: 2rem 0;
    }
    
    /* Grid Adjustments */
    .casinos-grid,
    .advantages-grid,
    .security-features,
    .payment-info-grid,
    .mobile-features-grid,
    .detailed-reviews-grid,
    .comparison-grid,
    .eeat-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards */
    .casino-card,
    .advantage-card,
    .security-card,
    .payment-info-card,
    .withdrawal-step,
    .mobile-feature,
    .detailed-review-card,
    .comparison-point,
    .faq-item {
        padding: 1.5rem;
    }
    
    /* Step Cards */
    .step-card {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Calculator */
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Share Buttons */
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Utility */
    .hide-mobile {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .casino-card {
        padding: 1.25rem;
    }
    
    .feature-badge {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .hero-cta,
    .btn,
    .social-share-section,
    .main-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
}