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

:root {
    --gold-primary: #FFD700;
    --gold-secondary: #FFA500;
    --purple-dark: #1a0033;
    --purple-darker: #0d0015;
    --purple-light: #2d0052;
    --red-accent: #ff3366;
    --white: #ffffff;
    --gray-light: #cccccc;
    --gray-dark: #666666;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--purple-darker) 0%, var(--purple-dark) 100%);
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.15);
    border-bottom: 2px solid var(--gold-primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.brand img {
    height: 45px;
    width: auto;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn-auth {
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.btn-register {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--purple-dark);
    border: 2px solid transparent;
}

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 70px;
    left: -300px;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 2px solid var(--gold-primary);
}

.sidebar.active {
    left: 0;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-link {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 15px;
    position: relative;
}

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

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

.nav-link:hover::after {
    opacity: 1;
}

/* Main Content */
.main-content {
    padding-top: 90px;
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(13, 0, 21, 0.8) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

.hero-heading {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.bonus-display {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.bonus-value {
    font-size: 72px;
    font-weight: 900;
    color: var(--purple-dark);
    line-height: 1;
}

.bonus-label {
    font-size: 20px;
    color: var(--purple-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--purple-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
}

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

.btn-outline {
    padding: 15px 40px;
    background: transparent;
    color: var(--gold-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
    text-transform: uppercase;
}

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

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 40%;
    animation-delay: 2s;
}

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

/* Quick Stats */
.quick-stats {
    padding: 60px 0;
    background: rgba(26, 0, 51, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item:hover .stat-label::before {
    content: "\2713";
    margin-right: 5px;
    color: var(--gold-primary);
}

/* Casino Details */
.casino-details {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.details-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

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

.details-table tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.label-cell {
    padding: 20px;
    color: var(--gold-primary);
    font-weight: 700;
    width: 45%;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.label-cell::before {
    content: "\2022";
    position: absolute;
    left: 20px;
    font-size: 20px;
}

.value-cell {
    padding: 20px;
    color: var(--white);
    font-size: 16px;
}

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

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

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

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

.game-thumb {
    position: relative;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-item:hover .game-thumb img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 0, 21, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--purple-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.play-btn:hover {
    transform: scale(1.1);
}

.game-title {
    padding: 20px;
    text-align: center;
    color: var(--gold-primary);
    font-size: 18px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid var(--gold-primary);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

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

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

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

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

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

.faq-q {
    flex: 1;
    padding-right: 15px;
}

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

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

.faq-card.active .faq-toggle::before {
    content: "\2212";
}

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

.faq-card.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 0 20px 20px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* 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.9;
    color: var(--gray-light);
    margin-bottom: 25px;
}

/* Payment Comparison Section */
.payment-comparison {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.payment-comparison .section-heading {
    text-align: center;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

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

.payment-comparison .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-comparison .comparison-table thead {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-darker) 100%);
    color: #fff;
}

.payment-comparison .comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
}

.payment-comparison .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

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

.payment-comparison .comparison-table .highlight-row {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.payment-comparison .comparison-table .highlight-row:hover {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
}

/* Features Progress Section */
.features-progress {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-darker) 100%);
}

.features-progress .section-heading {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 60px;
}

.progress-items {
    max-width: 900px;
    margin: 0 auto;
}

.progress-item {
    margin-bottom: 35px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.progress-value {
    color: var(--gold-primary);
    font-size: 1.3rem;
    font-weight: bold;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 15px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-bar.animated {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-comparison .comparison-table {
        font-size: 0.9rem;
    }
    
    .payment-comparison .comparison-table th,
    .payment-comparison .comparison-table td {
        padding: 12px 10px;
    }
    
    .progress-label {
        font-size: 1rem;
    }
    
    .progress-value {
        font-size: 1.1rem;
    }
    
    .progress-bar-container {
        height: 25px;
    }
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title {
    color: var(--gold-primary);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

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

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-methods img {
    height: 40px;
    width: auto;
}

.copyright {
    color: var(--gray-light);
    margin-bottom: 10px;
}

.disclaimer {
    color: var(--red-accent);
    font-weight: 700;
    font-size: 14px;
}

/* Mobile FAB */
.mobile-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 997;
}

.fab-btn {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.fab-register {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--purple-dark);
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        display: none;
    }

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-fab {
        display: flex;
    }

    .hero-heading {
        font-size: 36px;
    }

    .bonus-value {
        font-size: 56px;
    }

    .section-heading {
        font-size: 32px;
    }

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

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

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

    .payment-methods {
        flex-wrap: wrap;
    }

    .label-cell,
    .value-cell {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .bonus-value {
        font-size: 48px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* Enhanced Welcome Section */
.enhanced-welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95) 0%, rgba(45, 0, 82, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-title {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.welcome-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--white);
}

.welcome-stats {
    display: flex;
    gap: 40px;
}

.stat-highlight {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid var(--gold-primary);
}

.stat-highlight .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stat-highlight .stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.welcome-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.security-badge {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(1.1);
}

.security-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Game Universe Section */
.game-universe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-darker) 0%, var(--purple-dark) 100%);
}

.universe-content {
    margin-bottom: 50px;
}

.universe-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

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

.category-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-category h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-category p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.providers-showcase {
    text-align: center;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--gold-primary);
}

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

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 80px 0;
    background: var(--purple-dark);
}

.bonus-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.bonus-tier {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.bonus-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.bonus-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bonus-tier h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.bonus-percentage {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.bonus-min {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.no-deposit-bonus {
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.no-deposit-content h3 {
    color: var(--purple-dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-deposit-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 30px 0;
}

.no-deposit-option {
    background: rgba(26, 0, 51, 0.9);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    max-width: 250px;
}

.option-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.option-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 5px;
}

.option-detail {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.bonus-disclaimer {
    color: var(--purple-darker);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Ongoing Promotions Section */
.ongoing-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-darker) 0%, var(--purple-dark) 100%);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

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

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

.promotion-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.promotion-card h3 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.promotion-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--white);
    margin: 10px 0;
}

.loyalty-program {
    text-align: center;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid var(--gold-primary);
    margin-top: 40px;
}

/* Banking Section */
.banking-section {
    padding: 80px 0;
    background: var(--purple-dark);
}

.banking-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.banking-category {
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--gold-primary);
}

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

.withdrawal-times {
    margin: 20px 0;
    padding-left: 20px;
}

.withdrawal-times li {
    margin-bottom: 10px;
    color: var(--white);
}

.withdrawal-times li strong {
    color: var(--gold-primary);
}

.withdrawal-disclaimer {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 20px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
    text-align: center;
}

.final-cta .section-heading {
    color: var(--purple-dark);
    margin-bottom: 30px;
}

.final-cta p {
    color: var(--purple-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--purple-darker);
    margin: 30px 0;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .welcome-grid,
    .security-content,
    .banking-methods {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .bonus-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .no-deposit-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .enhanced-welcome,
    .security-section,
    .game-universe-section,
    .welcome-bonus-section,
    .ongoing-promotions,
    .banking-section {
        padding: 40px 0;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .bonus-tiers {
        grid-template-columns: 1fr;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .no-deposit-bonus {
        padding: 30px 20px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Brand Logo Styling */
.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* NEW HERO SECTION - COMPLETELY REBUILT */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--purple-darker) 0%, var(--purple-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::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;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-hero {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--purple-dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

.hero-features {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.5;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Mobile Responsive for New Hero */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
}
