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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
}

.logo-text:hover {
    text-decoration: none;
    color: #e74c3c;
}

.age-warning {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    line-height: 1.7;
}

/* Casino List */
.casino-list {
    padding: 2rem 0;
}

.casino-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.casino-card.featured {
    border: 2px solid #e74c3c;
    position: relative;
}

.casino-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.casino-rank {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem 0;
}

.rank-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    min-width: 40px;
}

.rank-badge {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.casino-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
}

.casino-logo {
    min-width: 120px;
}

.logo-placeholder {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    color: white;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder.betclic {
    background: linear-gradient(135deg, #1a5490, #2980b9);
}

.logo-placeholder.grosvenor {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.logo-placeholder.casino888 {
    background: linear-gradient(135deg, #e17055, #d63031);
}

.logo-placeholder.red32 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.logo-placeholder.lottoland {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.logo-placeholder.lottomart {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.casino-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.highlights h3 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.highlights p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.editor-review {
    text-align: center;
    min-width: 120px;
}

.review-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    margin-bottom: 1rem;
}

.score {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    display: block;
    margin-bottom: 0.3rem;
}

.stars {
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1rem;
    margin: 0 1px;
}

.star.filled {
    color: #ffa502;
}

.star.half {
    color: #ffa502;
    opacity: 0.6;
}

.payment-methods {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.payment-icon {
    font-size: 1.2rem;
}

.casino-action {
    text-align: center;
    padding: 0 2rem 1.5rem;
}

.btn-play {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    min-width: 140px;
}

.btn-play:hover {
    background: linear-gradient(135deg, #00cec9, #00b894);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
    text-decoration: none;
    color: white;
}

.country-flags {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.flag {
    font-size: 1.2rem;
}

.disclaimer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    border-top: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

/* Content Section */
.content {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
}

.content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: bold;
}

.content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: none;
}

.separator {
    margin: 0 1rem;
    color: #7f8c8d;
}

.footer-disclaimer {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.responsible-gaming {
    margin-bottom: 2rem;
}

.gaming-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
}

.age-badge, .gamble-aware, .ncpg {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.age-badge:hover,
.gamble-aware:hover,
.ncpg:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
}

.copyright {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .casino-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .casino-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-rank {
        justify-content: center;
        padding: 1rem 1rem 0;
    }
    
    .casino-main {
        padding: 1rem;
    }
    
    .casino-action {
        padding: 0 1rem 1.5rem;
    }
    
    .disclaimer {
        padding: 1rem;
    }
    
    .gaming-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .content {
        padding: 2rem 0;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .content h3 {
        font-size: 1.4rem;
    }
    
    .rank-number {
        font-size: 1.5rem;
    }
    
    .rank-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.casino-card:hover .logo-placeholder {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.btn-play:active {
    transform: translateY(0);
}