* {
    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: #333;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a8a;
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.btn-accept {
    background-color: white;
    color: #1e3a8a;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept:hover {
    background-color: #f0f0f0;
}

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #1e3a8a;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #1e3a8a;
}

.btn-register {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3b82f6;
    color: white;
}

.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.fortune-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-container {
    text-align: center;
}

#wheelCanvas {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-spin {
    margin-top: 20px;
    background-color: white;
    color: #1e3a8a;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-spin:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.welcome-section,
.loyalty-program,
.comparison-table,
.benefits,
.popular-games,
.news-carousel,
.celebrate,
.faq,
.reviews-preview {
    padding: 80px 0;
}

.welcome-section h2,
.loyalty-program h2,
.comparison-table h2,
.benefits h2,
.popular-games h2,
.news-carousel h2,
.celebrate h2,
.faq h2,
.reviews-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.welcome-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.welcome-card,
.benefit-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.welcome-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.welcome-card h3,
.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

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

.tier-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.tier-card.featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.05);
}

.tier-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.tier-card.featured h3 {
    color: white;
}

.tier-card p {
    margin: 10px 0;
}

.comparison {
    width: 100%;
    margin-top: 40px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison th,
.comparison td {
    padding: 20px;
    text-align: center;
}

.comparison thead {
    background-color: #1e3a8a;
    color: white;
}

.comparison tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.check {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
}

.cross {
    color: #ef4444;
    font-size: 24px;
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.game-image {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.game-card h3 {
    padding: 20px 20px 10px;
    color: #1e3a8a;
}

.game-card p {
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.game-rating {
    padding: 10px 20px;
    color: #fbbf24;
    font-size: 18px;
}

.btn-play {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-play:hover {
    background-color: #2563eb;
}

.carousel {
    position: relative;
    background-color: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    min-height: 200px;
}

.carousel-item {
    display: none;
    text-align: center;
}

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

.carousel-item h3 {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.carousel-controls {
    text-align: center;
    margin-top: 30px;
}

.carousel-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: #2563eb;
}

.celebrate {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.celebrate p {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    font-weight: 600;
    color: #1e3a8a;
}

.age-banner {
    background-color: #fef3c7;
    padding: 40px 0;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.age-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.age-icon {
    background-color: #f59e0b;
    color: white;
    font-size: 48px;
    font-weight: bold;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.age-text h3 {
    color: #92400e;
    margin-bottom: 10px;
}

.age-text p {
    color: #78350f;
}

.disclaimer-section {
    background-color: #f1f5f9;
    padding: 60px 0;
}

.disclaimer-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.disclaimer-content p {
    margin-bottom: 15px;
}

.support-links {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.support-links h3 {
    margin-bottom: 20px;
    color: #1e3a8a;
}

.support-links a {
    display: inline-block;
    margin: 0 15px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #1e3a8a;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.modal-content input:focus {
    outline: none;
    border-color: #3b82f6;
}

.age-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-checkbox input[type="checkbox"] {
    width: auto;
}

.modal-content p {
    text-align: center;
    margin-top: 15px;
}

.modal-content a {
    color: #3b82f6;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-choose-details {
    padding: 80px 0;
}

.feature-detail {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-detail.reverse {
    grid-template-columns: 1fr 150px;
}

.feature-detail.reverse .feature-icon {
    order: 2;
}

.feature-detail.reverse .feature-content {
    order: 1;
}

.feature-icon {
    font-size: 80px;
    text-align: center;
}

.feature-content h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
}

.feature-content ul {
    margin-top: 20px;
    padding-left: 20px;
}

.feature-content li {
    margin-bottom: 10px;
}

.additional-benefits {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.additional-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.benefits-grid .benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefits-grid .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.benefits-grid .benefit-item h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefits-grid .benefit-item p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.game-section {
    padding: 80px 0;
}

.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-header h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background-color: white;
    color: #333;
    border: 2px solid #ddd;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.games-library {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.game-thumbnail {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.game-item h3 {
    padding: 20px 20px 10px;
    color: #1e3a8a;
}

.game-item p {
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.game-info {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.game-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.game-info > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.reviews-full {
    padding: 80px 0;
}

.review-detailed {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.review-header {
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.reviewer-info h3 {
    color: #1e3a8a;
    margin-bottom: 5px;
}

.review-rating {
    color: #fbbf24;
    font-size: 18px;
    margin: 5px 0;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-body h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 20px;
}

.review-body p {
    line-height: 1.8;
    color: #333;
}

.stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.legal-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
    text-align: center;
    font-size: 16px;
}

.legal-section {
    margin-bottom: 40px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    color: #1e3a8a;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
}

.legal-section h3 {
    color: #3b82f6;
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section ul {
    padding-left: 30px;
    margin: 20px 0;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.legal-section strong {
    color: #1e3a8a;
    font-weight: 600;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.resource-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
}

.resource-card p {
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.7;
}

.resource-card .btn-secondary {
    background-color: white;
    color: #1e3a8a;
    border: none;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .feature-detail,
    .feature-detail.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-detail.reverse .feature-icon,
    .feature-detail.reverse .feature-content {
        order: unset;
    }

    .age-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}