/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-container {
        max-width: 1320px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-container {
        gap: var(--spacing-xl);
    }
    
    .hero-cards {
        max-width: 350px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        margin-bottom: var(--spacing-sm);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Typography */
    h1 { font-size: var(--font-size-4xl); }
    h2 { font-size: var(--font-size-3xl); }
    h3 { font-size: var(--font-size-2xl); }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    /* Sections */
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .casino-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Mobile */
@media (max-width: 480px) {
    /* Spacing */
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-container {
        padding: 0 var(--spacing-xs);
    }
    
    /* Typography */
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    h3 { font-size: var(--font-size-xl); }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    /* Stats */
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    /* Cards */
    .card {
        padding: var(--spacing-md);
    }
    
    .bonus-card {
        padding: var(--spacing-lg);
    }
    
    .sport-card {
        padding: var(--spacing-lg);
    }
    
    .casino-card {
        padding: var(--spacing-md);
    }
    
    /* Navigation */
    .nav-buttons {
        display: none;
    }
    
    .logo-text {
        font-size: var(--font-size-xs);
    }
    
    .logo-diamond {
        width: 30px;
        height: 30px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-cards {
        max-width: 250px;
    }
    
    .card {
        padding: var(--spacing-sm);
    }
    
    .card-icon {
        font-size: var(--font-size-2xl);
    }
    
    .card h3 {
        font-size: var(--font-size-base);
    }
    
    .card p {
        font-size: var(--font-size-xs);
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-container {
        gap: var(--spacing-lg);
    }
    
    .hero-cards {
        max-width: 200px;
    }
    
    .card {
        padding: var(--spacing-sm);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .diamond-shape {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
    
    .card:hover {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    }
}

/* Print Styles */
@media print {
    .header,
    .nav-buttons,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        background: white;
        color: black;
    }
    
    .card,
    .bonus-card,
    .sport-card,
    .casino-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .diamond-shape {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --black: #000000;
        --dark-gray: #1a1a1a;
        --medium-gray: #333333;
        --light-gray: #666666;
        --white: #ffffff;
    }
}

/* Light Mode Support */
@media (prefers-color-scheme: light) {
    :root {
        --black: #000000;
        --dark-gray: #1a1a1a;
        --medium-gray: #333333;
        --light-gray: #666666;
        --white: #ffffff;
    }
} 