* {
    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: #000000;
    background-color: #ffffff;
}

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

.header {
    background: #000000;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333333;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #cccccc;
}

.cta-button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.age-restriction {
    background: #333333;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.hero-cta {
    margin-top: 2rem;
}

.hero .disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #cccccc;
    font-weight: 500;
}

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

.casino-cards {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    position: relative;
}

.casino-cards::before {
    content: '♠ ♥ ♣ ♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #000000;
    letter-spacing: 1rem;
}

section {
    padding: 4rem 0;
}

.welcome {
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.welcome > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #333333;
}

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

.feature {
    padding: 2rem;
    border: 2px solid #000000;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.loyalty {
    background: #f8f8f8;
    text-align: center;
}

.loyalty h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.loyalty > p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #333333;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tier {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tier.featured {
    border-color: #000000;
    transform: scale(1.05);
}

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

.tier.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.tier h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tier ul {
    list-style: none;
    text-align: left;
}

.tier li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.tier li::before {
    content: '✓';
    margin-right: 0.5rem;
    font-weight: bold;
}

.loyalty-disclaimer {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    margin-top: 2rem;
}

.comparison {
    text-align: center;
}

.comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-table {
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #000000;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
}

.comparison-header > div {
    padding: 1rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row > div:first-child {
    text-align: left;
    font-weight: 600;
}

.check {
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
}

.cross {
    color: #999999;
    font-size: 1.5rem;
}

.benefits {
    background: #f8f8f8;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #000000;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news {
    text-align: center;
}

.news h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.news-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: none;
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.news-item.active {
    display: block;
}

.news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-item p {
    margin-bottom: 1rem;
    color: #333333;
}

.news-item .date {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.carousel-controls {
    margin-top: 2rem;
}

.carousel-controls button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.carousel-controls button:hover {
    background: #333333;
}

.age-banner {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 3rem 0;
}

.age-banner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: #cccccc;
}

.footer {
    background: #f8f8f8;
    border-top: 2px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #666666;
}

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

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

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #666666;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0;
    text-align: center;
}

.disclaimers {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.disclaimers span {
    background: #000000;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: #666666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-disclaimer {
    background: #f8f8f8;
    border: 2px solid #000000;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.legal-disclaimer strong {
    color: #000000;
}

.legal-page section {
    margin-bottom: 2rem;
    padding: 0;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

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

.legal-page a {
    color: #000000;
    font-weight: 600;
}

.legal-page a:hover {
    color: #666666;
}

.legal-reminder {
    background: #000000;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav {
        gap: 1rem;
    }

    .hero {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .casino-cards {
        width: 250px;
        height: 150px;
    }

    .casino-cards::before {
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .welcome h2,
    .loyalty h2,
    .comparison h2,
    .benefits h2,
    .news h2 {
        font-size: 2rem;
    }

    .welcome-features,
    .loyalty-tiers,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tier.featured {
        transform: none;
    }

    .tier.featured:hover {
        transform: translateY(-5px);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
        font-size: 0.9rem;
    }

    .comparison-header > div,
    .comparison-row > div {
        padding: 0.75rem 0.5rem;
    }

    .responsible-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .disclaimers {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .legal-page {
        padding: 1rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .welcome h2,
    .loyalty h2,
    .comparison h2,
    .benefits h2,
    .news h2 {
        font-size: 1.5rem;
    }

    .age-banner h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .cta-button.large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}