/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.maple-leaf {
    font-size: 36px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo h1 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 50%, #c62828 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍁';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Casino Section */
.casinos-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Casino Cards */
.casino-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(211, 47, 47, 0.2);
    border-color: #d32f2f;
}

.casino-card.featured {
    border: 3px solid #d32f2f;
    background: linear-gradient(to bottom, #fff9f9 0%, #ffffff 100%);
}

.casino-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.casino-badge.hot {
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    animation: glow 2s ease-in-out infinite;
}

.casino-badge.new {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(255, 87, 34, 0.8); }
}

.casino-header {
    padding: 30px 30px 20px;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #eee;
}

.casino-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.casino-logo img {
    max-width: 220px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 700;
    font-size: 18px;
    color: #d32f2f;
    background: #fff3f3;
    padding: 5px 15px;
    border-radius: 20px;
}

.casino-body {
    padding: 30px;
}

.casino-body h3 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-info {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.bonus-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.bonus-amount {
    font-size: 42px;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
}

.bonus-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-extra {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.free-spins {
    color: white;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
}

.casino-features {
    list-style: none;
    margin-bottom: 25px;
}

.casino-features li {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.casino-features li:last-child {
    border-bottom: none;
}

.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.terms {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #fff3f3;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.1);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d32f2f;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d32f2f;
}

.footer-section a {
    color: #d32f2f;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin-bottom: 10px;
    font-size: 14px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .casinos-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}