/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ffbf00;
    --secondary-green: #00C853;
    --accent-blue: #00E5FF;
    --aztec-red: #D84315;
    --text-dark: #212121;
    --text-light: #F5F5F5;
    --background-light: #FAFAFA;
    --background-dark: #004148;
    --header-dark: #004148;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    background-color: var(--background-light);
}

h1, h2, h3 {
    font-family: 'Roboto Slab', serif;
    margin-bottom: 1rem;
    
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-dark);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.9rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.logo-text {
    color: var(--primary-gold);
    font-family: 'Roboto Slab', serif;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu li a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    text-decoration: none;
}

.main-menu li a:hover,
.main-menu li a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* CTA Button */
.cta-button {
    background: var(--primary-gold);
    color: var(--background-dark);
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 229, 59, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 229, 59, 0.7);
    background: #FFF45E;
}

.cta-button.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    margin-top: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
                linear-gradient(135deg, #004148, #2C2C2C);
    padding: 65px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--primary-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../image/banner.jpg");
    background-repeat: no-repeat;

}

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

.hero h1 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 var(--primary-gold), -1px -1px 0 var(--primary-gold);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Section Styles */
.section {
    padding: 40px 0;
}

.section.bg-light {
    background: var(--background-light);
}

.section.bg-dark {
    background: var(--background-dark);
    color: var(--text-light);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Detailed Review Section Styles */
.detailed-content {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
}

.detailed-content p {
    margin-bottom: 1.5rem;
}

.detailed-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.detailed-content ul, .detailed-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.detailed-content li {
    margin-bottom: 0.8rem;
}

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

.bonus-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin: 15px 0;
}

.bonus-feature {
    font-size: 1.3rem;
    color: var(--secondary-green);
    margin-bottom: 20px;
}

.bonus-details {
    list-style: none;
    margin-bottom: 25px;
}

.bonus-details li {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonus-details li::before {
    content: '✓';
    color: var(--secondary-green);
}

/* Registration Steps */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
}

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

.advantage {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.review {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.review-author {
    text-align: right;
    font-style: italic;
    margin-top: 20px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

/* FAQ Section */
.faq-list {
    max-width: 1200px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-text {
    color: #bbb;
    margin-bottom: 10px;
}

.age-restriction {
    background: #ff0000;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
}

.gambling-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.gambling-icons img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    height: 40px;
    width: auto;
}

.gambling-icons img:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .fixed-header .container {
        padding: 8px 15px;
    }
    
    .main-menu {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 0 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .main-menu::-webkit-scrollbar {
        display: none;
    }
    
    .main-menu li {
        white-space: nowrap;
    }
    
    .main-menu li a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .bonus-feature {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .detailed-content {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .gambling-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .review {
        padding: 20px;
    }
    
    .advantage {
        padding: 20px;
    }
    
    .advantage-icon {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll Animation */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .fixed-header, .cta-button, .faq-toggle {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero, .section.bg-dark {
        background: #fff;
        color: #000;
    }
}

/* Aztec Theme Elements */
.aztec-pattern {
    background-pattern: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(216, 67, 21, 0.05) 20px,
        rgba(216, 67, 21, 0.05) 40px
    );
}

/* Loading animation */
.loading {
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Form styles */
input, button, select {
    font-family: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DBA000;
}

/* Cookie consent styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--header-dark);
    color: var(--text-light);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--primary-gold);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-accept {
    background: var(--primary-gold);
    color: var(--background-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}