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

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-purple: #1a0033;
    --darker-purple: #0d0015;
    --accent-red: #ff3366;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1a0033 0%, #0d0015 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 0, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.header-actions {
    display: flex;
    gap: 10px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

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

.btn-login:hover {
    background: var(--primary-gold);
    color: var(--dark-purple);
}

.btn-signup {
    background: var(--gradient-primary);
    color: var(--dark-purple);
    border: 2px solid transparent;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--dark-purple);
    padding: 15px 40px;
    font-size: 18px;
    border: 2px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-cta::before {
    content: "\2713";
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
    opacity: 1;
}

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

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

.btn-play {
    background: var(--gradient-primary);
    color: var(--dark-purple);
    padding: 8px 20px;
    font-size: 14px;
}

.btn-play::before {
    content: "\25B6";
    margin-right: 6px;
    font-size: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(255, 215, 0, 0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 25px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav ul li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding-left: 35px;
}

.mobile-nav ul li a::after {
    content: "\203A";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav ul li a:hover::after {
    opacity: 1;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(13, 0, 21, 0.95) 100%);
}

.slider-container {
    position: relative;
    min-height: 400px;
}

.slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

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

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

.slide-badge {
    display: inline-block;
    background: var(--accent-red);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

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

.slide-title {
    font-size: 56px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.slide-text {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-purple);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

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

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-gold);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.5);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature-card h3::before {
    content: "\2605";
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover h3::before {
    opacity: 1;
}

.feature-card p {
    color: var(--text-gray);
}

/* Bonus Comparison Table */
.casino-info {
    padding: 80px 0;
}

.table-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
}

.table-responsive {
    overflow-x: auto;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: rgba(255, 215, 0, 0.1);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold);
}

.comparison-table .highlight-col {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 18px 20px;
    color: var(--text-white);
}

.comparison-table td:first-child {
    color: var(--text-gray);
    font-weight: 600;
}

.table-cta {
    text-align: center;
    margin-top: 40px;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.5);
}

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

.game-card {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 15px;
    color: var(--primary-gold);
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-icon {
    color: var(--primary-gold);
    font-size: 24px;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before {
    content: "\002B";
    font-weight: 300;
}

.faq-item.active .faq-icon::before {
    content: "\2212";
}

.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-gray);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.5);
}

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

.testimonial-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--dark-purple);
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-gold);
    font-size: 16px;
}

.author-info span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
}

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

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.5);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Stats Counter Section */
.stats-counter {
    background: linear-gradient(135deg, #1a0033 0%, #0d0015 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.stats-counter h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Preview Section */
.game-preview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.game-preview h2 {
    text-align: center;
    color: #1a0033;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

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

.game-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.game-card h3 {
    color: #1a0033;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.game-play-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0033;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.game-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .stats-counter h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .game-preview h2 {
        font-size: 2rem;
    }
    
    .game-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .game-image {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    background: var(--darker-purple);
    padding: 60px 0 30px;
    border-top: 2px solid var(--primary-gold);
}

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

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-section ul li a::before {
    content: "\203A";
    margin-right: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.age-restriction {
    color: var(--accent-red);
    font-weight: 600;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.fab {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.fab-signup {
    background: var(--gradient-primary);
    color: var(--dark-purple);
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .floating-actions {
        display: flex;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-text {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .payment-icons {
        justify-content: center;
    }

    .info-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .info-table td:first-child {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .bonus-amount {
        font-size: 36px;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Golden Introduction Section Styles */
.golden-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--darker-purple) 100%);
    position: relative;
    overflow: hidden;
}

.golden-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.golden-intro h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 700;
}

.golden-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.intro-image {
    text-align: center;
    margin-top: 40px;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Golden Games Section */
.golden-games {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.golden-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.golden-games > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-category {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
    border-color: var(--primary-gold);
}

.game-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.game-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.game-category p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Golden Bonuses Section */
.golden-bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.golden-bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.golden-bonuses > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.bonus-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.bonus-step {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.bonus-step img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bonus-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.bonus-step p {
    color: var(--text-gray);
    font-weight: 500;
}

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

.offer-card {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--secondary-gold);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.25);
}

.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-gold);
}

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

.terms-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 30px;
}

/* Golden Security Section */
.golden-security {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.golden-security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.golden-security > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.security-feature {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.security-feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

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

.withdrawal-info {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.withdrawal-info ul {
    list-style: none;
    padding: 0;
}

.withdrawal-info li {
    color: var(--text-gray);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.withdrawal-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.withdrawal-info li strong {
    color: var(--text-white);
}

/* Golden Commitment Section */
.golden-commitment {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.golden-commitment h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.golden-commitment > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

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

.commitment-feature {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.commitment-feature img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.commitment-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

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

/* Golden CTA Section */
.golden-cta {
    padding: 80px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.golden-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.golden-cta > .container > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.final-tagline {
    font-size: 1.3rem !important;
    color: var(--text-white) !important;
    margin: 30px 0 !important;
    font-weight: 600;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-purple);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .golden-intro h1,
    .golden-games h2,
    .golden-bonuses h2,
    .golden-security h2,
    .golden-commitment h2,
    .golden-cta h2 {
        font-size: 2rem;
    }
    
    .golden-intro p,
    .golden-games > .container > p,
    .golden-bonuses > .container > p,
    .golden-security > .container > p,
    .golden-commitment > .container > p {
        font-size: 1rem;
    }
    
    .bonus-steps {
        grid-template-columns: 1fr;
    }
    
    .special-offers,
    .security-features,
    .commitment-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .final-tagline {
        font-size: 1.1rem !important;
    }
}