/* Nature Casino - Earthy Natural Theme */
:root {
    --bg-cream: #FFF8F0;
    --bg-light: #FDF5E6;
    --bg-card: #FFFFFF;
    --forest-green: #2D5016;
    --sage-green: #6B8E23;
    --olive: #808000;
    --brown: #8B4513;
    --tan: #D2B48C;
    --terracotta: #CD853F;
    --text-dark: #3D2914;
    --text-muted: #6B5B4F;
    --border-natural: #E8DCC8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-bottom: 3px solid var(--forest-green);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--forest-green);
}

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

/* Hero Section */
.hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='%232D501610'/%3E%3Ccircle cx='30' cy='70' r='25' fill='%236B8E2308'/%3E%3Ccircle cx='70' cy='30' r='30' fill='%238B451308'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--forest-green);
    color: var(--bg-cream);
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--forest-green);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-natural {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-natural.primary {
    background: var(--forest-green);
    color: var(--bg-cream);
    border: 2px solid var(--forest-green);
}

.btn-natural.primary:hover {
    background: var(--sage-green);
    border-color: var(--sage-green);
}

.btn-natural.secondary {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--brown);
}

.btn-natural.secondary:hover {
    background: var(--brown);
    color: var(--bg-cream);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.organic-shape {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--bg-cream);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.organic-shape .stat-value {
    font-size: 3rem;
    font-weight: 700;
}

.organic-shape .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Stats Strip */
.stats-strip {
    background: var(--forest-green);
    padding: 1.5rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: var(--bg-cream);
}

.stat-item .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-item .label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-family: Arial, sans-serif;
}

/* Casino Section */
.casino-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header h2 span {
    color: var(--forest-green);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Cards - Organic Style */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-card {
    background: var(--bg-card);
    border: 2px solid var(--border-natural);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.05);
}

.casino-logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
}

.casino-card:hover {
    border-color: var(--forest-green);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
    transform: translateY(-3px);
}

.rank-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-size: 1.3rem;
    font-weight: 700;
}

.casino-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--terracotta);
    font-size: 1rem;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-pill {
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-natural);
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
    color: var(--text-muted);
}

.casino-bonus {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    min-width: 200px;
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--sage-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.visit-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--forest-green);
    color: var(--bg-cream);
    text-decoration: none;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    background: var(--sage-green);
}

.terms-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-family: Arial, sans-serif;
}

/* Why Trust Section */
.trust-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--bg-card);
    border: 2px solid var(--border-natural);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--forest-green);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: Arial, sans-serif;
}

/* Footer */
footer {
    background: var(--forest-green);
    color: var(--bg-cream);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-about h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.footer-responsible {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.footer-responsible p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-family: Arial, sans-serif;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-page h1 span {
    color: var(--forest-green);
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-family: Arial, sans-serif;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin: 2.5rem 0 1rem;
    color: var(--forest-green);
}

.legal-page p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

.legal-page ul {
    color: var(--text-muted);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--forest-green);
}

/* Alert Boxes */
.alert-box {
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.alert-box.success {
    background: rgba(45, 80, 22, 0.1);
    border: 2px solid var(--forest-green);
}

.alert-box.warning {
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid var(--brown);
}

.alert-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.alert-box p {
    margin: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: var(--bg-card);
    border: 2px solid var(--border-natural);
    border-radius: 15px;
    padding: 1.5rem;
}

.tip-card:hover {
    border-color: var(--forest-green);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.tip-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-bonus {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
