* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #FF4444;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav a:hover {
    color: #FF4444;
}

/* Hero Section */
.hero {
    background: #e8e8e8;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Casino Cards */
.casinos-section {
    padding: 40px 0;
}

.casino-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 50px 100px 1fr auto auto;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.casino-rank {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.casino-logo {
    grid-row: 1 / 3;
}

.casino-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.casino-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.score {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.casino-bonus {
    grid-column: 3;
    grid-row: 2;
}

.bonus-text {
    font-size: 16px;
    color: #6B8E23;
    font-weight: 600;
}

.casino-cta {
    grid-column: 4;
    grid-row: 1 / 3;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #76b800 0%, #6B8E23 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.4);
}

.casino-note {
    grid-column: 5;
    grid-row: 1 / 3;
    max-width: 150px;
}

.casino-note p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* Content Sections */
.content-section {
    padding: 50px 0;
    background: white;
}

.content-section.gray-bg {
    background: #f9f9f9;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    border-radius: 5px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.footer-logo .logo-text {
    color: #FF4444;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF4444;
}

.footer-text {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-text p {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 13px;
    color: #FF4444;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .casino-card {
        grid-template-columns: 50px 80px 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .casino-rank {
        grid-row: 1 / 4;
    }
    
    .casino-logo {
        grid-row: 1 / 4;
    }
    
    .casino-logo img {
        width: 80px;
        height: 80px;
    }
    
    .casino-info {
        grid-column: 3;
        grid-row: 1;
    }
    
    .casino-bonus {
        grid-column: 3;
        grid-row: 2;
    }
    
    .casino-cta {
        grid-column: 3;
        grid-row: 3;
    }
    
    .casino-note {
        grid-column: 3;
        grid-row: 4;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
        padding: 20px;
    }
    
    .casino-rank {
        grid-row: 1;
        grid-column: 1;
        margin: 0 auto 15px;
    }
    
    .casino-logo {
        grid-row: 2;
        grid-column: 1;
        margin: 0 auto 15px;
    }
    
    .casino-info {
        grid-row: 3;
        grid-column: 1;
    }
    
    .casino-bonus {
        grid-row: 4;
        grid-column: 1;
    }
    
    .casino-cta {
        grid-row: 5;
        grid-column: 1;
        margin: 15px 0;
    }
    
    .casino-note {
        grid-row: 6;
        grid-column: 1;
        max-width: 100%;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Back to Home Button */
.back-to-home {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin: 30px 0;
    transition: all 0.3s;
}

.back-to-home:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.page-header {
    background: #e8e8e8;
    color: #333;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
}
