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

:root {
    --rose-gold: #E8B4B8;
    --blush: #F5E6E8;
    --deep-rose: #8B5A5A;
    --charcoal: #2D2226;
    --cream: #FDF8F5;
    --accent: #D4A5A5;
}

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

header {
    background: var(--charcoal);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 40px;
}

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

nav a {
    color: var(--blush);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover, nav a.active {
    color: var(--rose-gold);
}

.hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
    border-bottom: 3px solid var(--rose-gold);
}

.hero-badge {
    display: inline-block;
    background: var(--charcoal);
    color: var(--rose-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 400;
}

.hero h1 span {
    color: var(--deep-rose);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--deep-rose);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

.btn-rose {
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-rose.primary {
    background: var(--charcoal);
    color: var(--rose-gold);
    border: 2px solid var(--charcoal);
}

.btn-rose.primary:hover {
    background: var(--deep-rose);
    border-color: var(--deep-rose);
}

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

.btn-rose.secondary:hover {
    background: var(--charcoal);
    color: var(--rose-gold);
}

.stats-bar {
    background: var(--charcoal);
    padding: 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2rem;
    font-weight: 400;
    color: var(--rose-gold);
}

.stat-item .stat-label {
    color: var(--blush);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.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.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.section-header h2 span {
    color: var(--deep-rose);
    font-style: italic;
}

.section-header p {
    color: var(--deep-rose);
}

.casino-grid {
    display: grid;
    gap: 1.5rem;
}

.casino-card {
    background: white;
    border-radius: 4px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--blush);
    box-shadow: 0 4px 20px rgba(45, 34, 38, 0.05);
    transition: all 0.3s;
}

.casino-card:hover {
    box-shadow: 0 8px 30px rgba(45, 34, 38, 0.1);
    border-color: var(--rose-gold);
}

.rank-badge {
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--rose-gold);
}

.casino-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.casino-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 5px;
    border: 1px solid var(--blush);
}

.casino-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
    font-weight: 500;
}

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

.rating-stars {
    color: var(--rose-gold);
}

.rating-text {
    color: var(--deep-rose);
    font-size: 0.9rem;
}

.casino-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.feature-tag {
    background: var(--blush);
    color: var(--deep-rose);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-size: 0.8rem;
}

.casino-bonus {
    text-align: right;
    min-width: 200px;
}

.bonus-label {
    font-size: 0.85rem;
    color: var(--deep-rose);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.visit-btn {
    display: inline-block;
    background: var(--charcoal);
    color: var(--rose-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.visit-btn:hover {
    background: var(--deep-rose);
}

.terms-text {
    display: block;
    font-size: 0.75rem;
    color: var(--deep-rose);
    margin-top: 0.5rem;
}

.features-section {
    padding: 4rem 2rem;
    background: var(--blush);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(232, 180, 184, 0.3);
}

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

.feature-card h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-card p {
    color: var(--deep-rose);
    font-size: 0.9rem;
    line-height: 1.6;
}

footer {
    background: var(--charcoal);
    padding: 3rem 2rem 1rem;
}

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

.footer-about h3 {
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-about p {
    color: var(--blush);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-responsible {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(232, 180, 184, 0.1);
    border-radius: 4px;
}

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

.footer-links h4 {
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--blush);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 180, 184, 0.2);
    text-align: center;
    color: var(--blush);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-main {
        flex-direction: column;
    }
    
    .casino-bonus {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
