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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    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;
    flex-wrap: wrap;
}

.logo-link {
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e8f5e8;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Section Styles */
.casino-section,
.features-section,
.articles-section {
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2e7d32;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Casino Cards */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.casino-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    background: #bebebe;
}

.casino-rating {
    text-align: right;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    display: block;
}

.rating-text {
    font-weight: 600;
    color: #4caf50;
    font-size: 0.9rem;
}

.casino-name {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.casino-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.casino-features {
    list-style: none;
    margin-bottom: 2rem;
}

.casino-features li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.95rem;
}

.casino-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.casino-button {
    flex: 1;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.casino-button.primary {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.casino-button.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.casino-button.secondary {
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
}

.casino-button.secondary:hover {
    background: #4caf50;
    color: white;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.5;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-title {
    margin-bottom: 1rem;
}

.article-title a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.article-title a:hover {
    color: #4caf50;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #c2185b;
}

/* Responsible Gambling Section */
.responsible-gambling {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8eaf6 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 10px;
}

.rg-resources {
    margin-top: 2rem;
}

.rg-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.rg-logos a {
    transition: transform 0.3s ease;
}

.rg-logos a:hover {
    transform: scale(1.05);
}

.rg-logos img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.age-restriction {
    text-align: center;
    margin-bottom: 1.5rem;
}

.age-badge {
    background: #f44336;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.age-text {
    color: #555;
    font-weight: 500;
}

.rg-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.rg-disclaimer a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
}

.rg-disclaimer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #81c784;
}

.footer-content {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.copyright {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .casino-button {
        min-width: 100%;
    }
    
    .features-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .rg-logos {
        gap: 1rem;
    }
    
    .rg-logos img {
        height: 50px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .casino-section,
    .features-section,
    .articles-section {
        padding: 2rem 0;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .age-badge {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .casino-actions,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .casino-card,
    .feature-card,
    .article-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
