:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-gold: #B8860B;
    --burgundy: #722F37;
    --deep-black: #0A0A0A;
    --charcoal: #1A1A1A;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-dark: #333333;
    --accent-red: #DC143C;
    --success-green: #228B22;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--deep-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--deep-black) 100%);
    border-bottom: 3px solid var(--primary-gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--deep-black);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    margin-top: 78px;
    height: 600px;
    background: url('../images/hero-banner.png') center/cover;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(114, 47, 55, 0.7) 50%, 
        rgba(10, 10, 10, 0.9) 100%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--cream) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--cream);
    letter-spacing: 1px;
}

.hero-bonus {
    display: inline-block;
    margin-bottom: 30px;
    border: 3px solid var(--primary-gold);
    border-radius: 10px;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    overflow: hidden;
}

.hero-bonus::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--burgundy), var(--primary-gold));
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

.bonus-badge {
    font-size: 14px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--deep-black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--charcoal) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

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

.feature-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0; }
}

.feature-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Sections */
.main-content {
    padding: 60px 0;
    background: var(--deep-black);
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: var(--primary-gold);
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.content-block {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border-left: 4px solid var(--primary-gold);
    border-radius: 10px;
}

.content-block h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-block.left-right,
.content-block.right-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.content-block.right-left {
    direction: rtl;
}

.content-block.right-left .content-text {
    direction: ltr;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-gold);
    opacity: 1 !important;
    visibility: visible !important;
}

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

.game-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(114, 47, 55, 0.2));
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    color: var(--primary-gold);
    padding: 20px 20px 10px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-play {
    display: block;
    margin: 0 20px 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--deep-black);
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

.grid-item {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-item h4 {
    padding: 20px 20px 10px;
    color: var(--primary-gold);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grid-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Promotion Section */
.promotion-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
}

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

.promo-card {
    background: rgba(26, 26, 26, 0.9);
    border: 3px solid var(--primary-gold);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card.featured {
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--burgundy), var(--primary-gold));
}

.promo-header {
    margin-bottom: 20px;
}

.promo-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.promo-amount {
    font-size: 28px;
    color: var(--secondary-gold);
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.promo-features {
    list-style: none;
    margin: 20px 0;
}

.promo-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.promo-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.btn-claim {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--deep-black);
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    color: var(--primary-gold);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--deep-black);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-cta-secondary:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
}

/* Footer */
.footer {
    background: var(--charcoal);
    border-top: 3px solid var(--primary-gold);
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Ensure all images are visible */
img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent content blocks from hiding images */
.content-block img,
.grid-item img,
.game-card img,
.promo-card img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Icons */
.icon-shield::before { content: '🛡️'; font-size: 30px; }
.icon-clock::before { content: '⏰'; font-size: 30px; }
.icon-gift::before { content: '🎁'; font-size: 30px; }
.icon-lightning::before { content: '⚡'; font-size: 30px; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .content-block.left-right,
    .content-block.right-left {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 50px;
    }
    
    .promotion-cards {
        grid-template-columns: 1fr;
    }
    
    .promo-card.featured {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}