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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Brand Logo Container */
.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    line-height: 0.8;
}

.brand-primary-text {
    font-size: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-secondary-text {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 3px;
    margin-top: -2px;
}

/* Primary Navigation */
.primary-navigation-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #10b981;
    z-index: 1000;
}

.navigation-inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation-menu-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navigation-menu-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.navigation-menu-list a:hover {
    color: #10b981;
}

.navigation-action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-button {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

.signup-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.signup-button:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-1px);
}

.login-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #374151;
}

.login-button:hover {
    border-color: #10b981;
    color: #10b981;
}

.primary-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.primary-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-cta-button:hover::before {
    left: 100%;
}

.primary-cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

/* Hero Banner Section */
.hero-banner-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features-showcase {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-highlight-icon {
    font-size: 16px;
}

/* Casino Game Visual */
.hero-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.casino-game-visual {
    position: relative;
    width: 300px;
    height: 400px;
}

.virtual-slot-machine {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 3px solid #10b981;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.slot-display-screen {
    width: 160px;
    height: 120px;
    background: #000;
    border-radius: 10px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #10b981;
    position: relative;
    overflow: hidden;
}

.spinning-reel-symbols {
    font-size: 24px;
    animation: spin 2s infinite linear;
    margin-bottom: 10px;
}

.jackpot-winner-text {
    color: #10b981;
    font-weight: bold;
    font-size: 14px;
    animation: glow 1.5s infinite alternate;
}

.slot-control-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slot-control-btn {
    width: 30px;
    height: 30px;
    background: linear-gradient(145deg, #10b981, #059669);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

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

.animated-casino-chips {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.casino-chip {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: white;
    animation: float 3s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.red-chip {
    background: linear-gradient(145deg, #dc2626, #b91c1c);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.blue-chip {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.green-chip {
    background: linear-gradient(145deg, #16a34a, #15803d);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

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

@keyframes glow {
    0% { text-shadow: 0 0 5px #10b981; }
    100% { text-shadow: 0 0 20px #10b981, 0 0 30px #10b981; }
}

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

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.dark-theme-section {
    background-color: #111827;
}

.main-section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Welcome Bonus Package */
.welcome-bonus-package {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #10b981;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-package-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-package-header h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #10b981;
}

.bonus-package-header p {
    font-size: 18px;
    color: #d1d5db;
}

.bonus-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.deposit-bonus-tier {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.deposit-bonus-tier:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.tier-number-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 16px;
    color: white;
}

.tier-bonus-details h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff;
}

.tier-bonus-details p {
    color: #d1d5db;
    font-size: 14px;
}

/* Promotions Showcase Grid */
.promotions-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.premium-offers-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-promotion-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 2px solid #10b981;
    padding: 40px;
    position: relative;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
}

.premium-promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.premium-icon-badge {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.premium-promotion-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.premium-value-display {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #10b981;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.premium-promotion-card p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #d1d5db;
    position: relative;
    z-index: 1;
}

.promotion-offer-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #4b5563;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.promotion-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.promotion-offer-card:hover::before {
    opacity: 1;
}

.promotion-offer-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.promotion-icon-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.promotion-offer-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.promotion-value-display {
    font-size: 1.8rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.promotion-offer-card p {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.promotion-terms-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.promotion-terms-info span {
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.claim-bonus-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.claim-bonus-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

.premium-claim-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.premium-claim-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

/* Gaming Categories Grid */
.gaming-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.game-category-tile {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.game-category-tile:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-visual-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.game-category-tile h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.games-count-display {
    font-size: 1.1rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 12px;
}

.game-category-tile p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

/* Featured Games Section */
.featured-games-section {
    margin-bottom: 60px;
}

.featured-games-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 32px;
    color: #ffffff;
}

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

.individual-game-tile {
    text-align: center;
    transition: transform 0.3s;
}

.individual-game-tile:hover {
    transform: translateY(-5px);
}

.game-preview-thumbnail {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 2px solid #4b5563;
    transition: border-color 0.3s;
}

.individual-game-tile:hover .game-preview-thumbnail {
    border-color: #10b981;
}

.game-artwork {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.game-artwork.starburst-theme {
    background: radial-gradient(circle, #9333ea, #4c1d95);
}

.game-artwork.book-of-dead-theme {
    background: radial-gradient(circle, #b45309, #92400e);
}

.game-artwork.gonzo-theme {
    background: radial-gradient(circle, #059669, #047857);
}

.game-artwork.sweet-bonanza-theme {
    background: radial-gradient(circle, #ec4899, #be185d);
}

.game-artwork.mega-moolah-theme {
    background: radial-gradient(circle, #f59e0b, #d97706);
}

.game-artwork.reactoonz-theme {
    background: radial-gradient(circle, #06b6d4, #0891b2);
}

.game-artwork.gates-olympus-theme {
    background: radial-gradient(circle, #7c3aed, #a855f7);
}

.game-artwork.wolf-gold-theme {
    background: radial-gradient(circle, #f59e0b, #d97706);
}

.game-artwork.dead-alive-theme {
    background: radial-gradient(circle, #8b5cf6, #7c3aed);
}

.game-artwork.extra-chilli-theme {
    background: radial-gradient(circle, #ef4444, #dc2626);
}

.individual-game-tile h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.individual-game-tile p {
    font-size: 12px;
    color: #9ca3af;
}

.view-all-games-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.view-all-games-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.games-cta-container {
    text-align: center;
}

/* Software Providers Grid */
.software-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.provider-showcase-tile {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.provider-showcase-tile:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.provider-brand-logo {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    color: white;
}

.provider-brand-logo.netent-brand {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.provider-brand-logo.microgaming-brand {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.provider-brand-logo.playngo-brand {
    background: linear-gradient(135deg, #059669, #10b981);
}

.provider-brand-logo.pragmatic-brand {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.provider-brand-logo.evolution-brand {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.provider-brand-logo.yggdrasil-brand {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.provider-brand-logo.redtiger-brand {
    background: linear-gradient(135deg, #be123c, #e11d48);
}

.provider-brand-logo.btg-brand {
    background: linear-gradient(135deg, #4338ca, #6366f1);
}

.provider-brand-logo.quickspin-brand {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.provider-brand-logo.nolimit-brand {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.provider-showcase-tile p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.4;
    min-height: 2.8rem;
}

.additional-providers-info {
    text-align: center;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.additional-providers-info p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
}

/* Intermediate Call to Action */
.intermediate-call-to-action {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #10b981;
    border-bottom: 2px solid #10b981;
}

.intermediate-call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content-block {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-main-headline {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-supporting-text {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 16px 24px;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.cta-badge-icon {
    font-size: 20px;
}

.cta-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.primary-action-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.primary-action-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-action-cta:hover::before {
    left: 100%;
}

.primary-action-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.secondary-action-cta {
    background: transparent;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.secondary-action-cta:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.cta-legal-disclaimer {
    margin-top: 24px;
}

.cta-legal-disclaimer p {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

/* Payment Methods */
.payment-methods-intro {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods-intro p {
    font-size: 18px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.payment-options-table-wrapper {
    max-width: 1100px;
    margin: 0 auto 60px;
    overflow-x: auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 1px solid #4b5563;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.banking-methods-table thead {
    background: linear-gradient(135deg, #111827, #1f2937);
}

.banking-methods-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #10b981;
    border-bottom: 2px solid #10b981;
    font-size: 14px;
}

.banking-methods-table tbody tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.banking-methods-table tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.1);
}

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

.banking-methods-table td {
    padding: 16px 12px;
    color: #d1d5db;
    font-size: 14px;
    vertical-align: middle;
}

.banking-method-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.payment-provider-icon {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    color: white;
}

.payment-provider-icon.visa-brand {
    background: linear-gradient(135deg, #1a1f71, #2563eb);
}

.payment-provider-icon.mastercard-brand {
    background: linear-gradient(135deg, #eb001b, #ff5f00);
}

.payment-provider-icon.orange-brand {
    background: linear-gradient(135deg, #ff6600, #ff8c00);
}

.payment-provider-icon.mtn-brand {
    background: linear-gradient(135deg, #ffcc00, #ffd700);
    color: #000;
}

.payment-provider-icon.moov-brand {
    background: linear-gradient(135deg, #0066cc, #0080ff);
}

.payment-provider-icon.wave-brand {
    background: linear-gradient(135deg, #00d4aa, #00e6cc);
}

.payment-provider-icon.bitcoin-brand {
    background: linear-gradient(135deg, #f7931a, #ffb74d);
}

.payment-provider-icon.bank-brand {
    background: linear-gradient(135deg, #4b5563, #6b7280);
}

.banking-method-info span {
    font-weight: 500;
    color: #ffffff;
}

.deposit-action-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.deposit-action-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Security Assurance Section */
.security-assurance-section {
    max-width: 1000px;
    margin: 0 auto;
}

.security-section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 32px;
    color: #ffffff;
}

.security-features-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.security-assurance-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #4b5563;
    transition: all 0.3s;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.security-assurance-card:hover {
    border-color: #10b981;
    transform: translateY(-3px);
}

.security-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.security-assurance-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.security-assurance-card p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.4;
}

/* Customer Reviews */
.testimonials-header-section {
    text-align: center;
    margin-bottom: 48px;
}

.aggregate-rating-display {
    display: inline-block;
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 24px 32px;
    border-radius: 16px;
    border: 2px solid #10b981;
}

.overall-rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 8px;
}

.rating-stars-display {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.rating-star {
    color: #10b981;
    font-size: 24px;
    margin: 0 2px;
}

.rating-star.empty-star {
    color: #6b7280;
}

.rating-summary-text {
    color: #d1d5db;
    font-size: 14px;
}

.customer-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.individual-review-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.individual-review-card:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.review-rating-stars {
    display: flex;
    margin-bottom: 16px;
}

.review-rating-stars .rating-star {
    color: #10b981;
    font-size: 18px;
}

.reviewer-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.reviewer-profile-details {
    display: flex;
    flex-direction: column;
}

.reviewer-full-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 2px;
}

.reviewer-geographic-location {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.review-publication-date {
    font-size: 12px;
    color: #6b7280;
}

.customer-review-content {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.review-helpfulness-indicator {
    font-size: 12px;
    color: #9ca3af;
    text-align: right;
}

/* FAQ */
.frequently-asked-questions-container {
    max-width: 900px;
    margin: 0 auto;
}

.question-answer-item {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.question-answer-item:hover {
    border-color: #10b981;
}

.customer-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.customer-question::before {
    content: "▶";
    margin-right: 12px;
    color: #10b981;
    font-size: 14px;
}

.detailed-answer {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 15px;
}

/* Casino Info Table */
.casino-info-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.casino-details-table {
    width: 100%;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #4b5563;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.casino-details-table tr {
    border-bottom: 1px solid #4b5563;
    transition: background-color 0.3s;
}

.casino-details-table tr:hover {
    background-color: rgba(16, 185, 129, 0.1);
}

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

.casino-details-table td {
    padding: 16px 24px;
    vertical-align: top;
}

.casino-details-table td:first-child {
    font-weight: 600;
    color: #10b981;
    width: 30%;
}

.casino-details-table td:last-child {
    color: #d1d5db;
    line-height: 1.6;
}

/* Informational Content Blocks */
.informational-content-section {
    padding: 60px 0;
    overflow-x: hidden;
}

.content-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.informational-content-block {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.informational-content-block:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.informational-content-block h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #10b981;
    line-height: 1.3;
}

.informational-content-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #ffffff;
    line-height: 1.4;
}

.informational-content-block p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.informational-content-block p:last-child {
    margin-bottom: 0;
}

/* Final Call to Action Section */
.final-call-to-action-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-call-to-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content-block {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-supporting-message {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.6;
}

.final-cta-benefits-showcase {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.final-cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 600;
}

.final-cta-benefit-icon {
    font-size: 20px;
}

.final-cta-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta-primary-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.final-cta-primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.final-cta-primary-button:hover::before {
    left: 100%;
}

.final-cta-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.final-cta-secondary-button {
    background: transparent;
    color: #ffffff;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.final-cta-secondary-button:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.final-cta-legal-notice {
    margin-top: 24px;
}

.final-cta-legal-notice p {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

/* Site Footer */
.site-footer {
    background-color: #000000;
    padding: 60px 0 20px;
    border-top: 2px solid #10b981;
}

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

.footer-links-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #10b981;
}

.footer-brand-section p {
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-brand-logo {
    margin-bottom: 20px;
}

.licensing-information {
    margin-top: 16px;
}

.licensing-information p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.footer-navigation-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-navigation-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-navigation-links a:hover {
    color: #10b981;
}

.footer-navigation-links a::before {
    content: "▶";
    margin-right: 8px;
    font-size: 10px;
    color: #10b981;
}

.age-verification-notice {
    margin-top: 16px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.age-verification-notice p {
    color: #10b981;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.footer-bottom-section {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-bottom-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content-wrapper p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.footer-certification-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.certification-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .brand-primary-text {
        font-size: 20px;
    }

    .brand-secondary-text {
        font-size: 10px;
    }

    .navigation-menu-list {
        display: none;
    }

    .navigation-action-buttons {
        gap: 8px;
    }

    .navigation-action-buttons .action-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-text-content p {
        font-size: 16px;
    }

    .hero-features-showcase {
        justify-content: center;
    }

    .casino-game-visual {
        width: 250px;
        height: 320px;
    }

    .virtual-slot-machine {
        width: 160px;
        height: 240px;
    }

    .slot-display-screen {
        width: 120px;
        height: 90px;
        margin: 15px auto;
    }

    .spinning-reel-symbols {
        font-size: 20px;
    }

    .jackpot-winner-text {
        font-size: 12px;
    }

    .casino-chip {
        width: 45px;
        height: 45px;
        font-size: 10px;
    }

    .main-section-heading {
        font-size: 2rem;
    }

    .welcome-bonus-package {
        padding: 24px;
    }

    .bonus-package-header h3 {
        font-size: 1.8rem;
    }

    .bonus-breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .content-blocks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .informational-content-block {
        padding: 24px 16px;
    }
    
    .informational-content-block h3 {
        font-size: 1.3rem;
    }
    
    .informational-content-block h4 {
        font-size: 1.1rem;
    }
    
    .informational-content-block p {
        font-size: 14px;
        text-align: left;
    }

    .promotions-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-offers-collection {
        grid-template-columns: 1fr;
    }
    
    .premium-promotion-card {
        padding: 24px;
    }

    .gaming-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .games-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .software-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .payment-options-table-wrapper {
        margin: 0 -20px 40px;
        border-radius: 0;
    }

    .banking-methods-table th,
    .banking-methods-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    .banking-method-info {
        min-width: 100px;
        gap: 8px;
    }

    .payment-provider-icon {
        width: 32px;
        height: 22px;
        font-size: 10px;
    }

    .deposit-action-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .security-features-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .security-assurance-card {
        max-width: 400px;
        width: 100%;
    }

    .customer-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .final-cta-main-title {
        font-size: 2.2rem;
    }

    .final-cta-supporting-message {
        font-size: 18px;
    }

    .final-cta-benefits-showcase {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .final-cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-main-headline {
        font-size: 2rem;
    }

    .cta-supporting-text {
        font-size: 16px;
    }

    .cta-features-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-feature-badge {
        min-width: 200px;
        padding: 20px 16px;
    }

    .cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-action-cta,
    .secondary-action-cta {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
    }

    .final-cta-primary-button,
    .final-cta-secondary-button {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
    }

    .footer-bottom-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-primary-text {
        font-size: 18px;
    }

    .brand-secondary-text {
        font-size: 9px;
    }

    .navigation-action-buttons .action-button {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

    .primary-cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    .casino-game-visual {
        width: 200px;
        height: 280px;
    }

    .virtual-slot-machine {
        width: 140px;
        height: 200px;
    }

    .games-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .software-providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gaming-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .security-features-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .security-assurance-card {
        min-width: 260px;
        max-width: 100%;
    }

    .provider-showcase-tile {
        padding: 16px;
    }

    .provider-brand-logo {
        font-size: 1rem;
        padding: 8px;
        margin-bottom: 8px;
    }

    .provider-showcase-tile p {
        font-size: 12px;
    }

    .final-cta-main-title {
        font-size: 1.8rem;
    }

    .cta-main-headline {
        font-size: 1.8rem;
    }

    .cta-supporting-text {
        font-size: 15px;
    }

    .cta-feature-badge {
        min-width: 160px;
        padding: 16px 12px;
    }

    .cta-feature-badge span {
        font-size: 14px;
    }

    .final-cta-supporting-message {
        font-size: 16px;
    }
}