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

.game-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.game-wrapper {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
}

.game-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 10px;
}

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

.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: #ff6600;
}

.logo-text {
    background: linear-gradient(45deg, #ff6600, #ffaa66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600;
}

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

.register-btn {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background: linear-gradient(45deg, #e55a00, #ff6600);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

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

.age-badge {
    background: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-right: 1rem;
    font-weight: 700;
}

.hero-banner {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 102, 0, 0.2);
    border: 2px solid #ff6600;
    color: #ff6600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background: linear-gradient(45deg, #e55a00, #ff6600);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.disclaimer {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
}

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

.card {
    width: 60px;
    height: 90px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 1s; }
.card:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.welcome-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

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

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.welcome-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.welcome-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.welcome-card p {
    color: #666666;
    line-height: 1.6;
}

.responsibility-notice {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.loyalty-program {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.loyalty-program .section-title {
    color: #ffffff;
}

.loyalty-program .section-subtitle {
    color: #cccccc;
}

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

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-card.featured {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.05);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

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

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tier-badge.bronze {
    background: linear-gradient(45deg, #CD7F32, #E6A65D);
    color: #000000;
}

.tier-badge.silver {
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8);
    color: #000000;
}

.tier-badge.gold {
    background: linear-gradient(45deg, #FFD700, #FFF176);
    color: #000000;
}

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

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

.tier-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.program-note {
    text-align: center;
    font-style: italic;
    color: #cccccc;
    margin-top: 2rem;
}

.comparison-table {
    padding: 5rem 0;
    background: #ffffff;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison th,
.comparison td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eeeeee;
}

.comparison th {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.us-column {
    background: rgba(255, 102, 0, 0.05);
    border-left: 3px solid #ff6600;
    border-right: 3px solid #ff6600;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.cross {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.table-disclaimer {
    text-align: center;
    font-style: italic;
    color: #666666;
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.benefits-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6600;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.benefit-item p {
    color: #666666;
    line-height: 1.6;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.news-carousel {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.news-carousel .section-title {
    color: #ffffff;
}

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

.carousel-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-slide.active {
    opacity: 1;
}

.news-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(10px);
}

.news-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6600;
}

.news-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-date {
    background: #ff6600;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(255, 102, 0, 0.2);
    border: 2px solid #ff6600;
    color: #ff6600;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #ff6600;
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6600;
    transform: scale(1.3);
}

.age-banner {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 3rem 0;
}

.age-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.age-icon {
    background: #000000;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.age-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.age-text p {
    font-size: 1.1rem;
    line-height: 1.5;
}

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

.help-link {
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.help-link:hover {
    background: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff6600;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
}

.disclaimers {
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid #ff6600;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimers p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.disclaimers p:first-child {
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}

.legal-page {
    padding: 2rem 0;
    background: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #ff6600;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.last-updated {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.legal-disclaimer {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6600;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000000;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #333333;
}

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

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

.legal-section p {
    margin-bottom: 1rem;
}

.contact-info {
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 3px solid #ff6600;
}

.important-notices {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.important-notices h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.important-notices ul {
    list-style: none;
    margin-left: 0;
}

.important-notices li {
    padding: 0.3rem 0;
    font-weight: 600;
}

.help-resources {
    background: #f8f8f8;
    border: 2px solid #666666;
    border-radius: 15px;
    padding: 2rem;
}

.help-resources h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.help-resources a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

.help-resources a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .tier-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .age-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .responsibility-links {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .welcome-card,
    .benefit-item {
        padding: 2rem 1.5rem;
    }
    
    .news-card {
        padding: 2rem;
    }
    
    .age-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}