* {
    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;
}

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

/* Leon Casino Logo */
.leon-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    line-height: 0.8;
}

.leon-text {
    font-size: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

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

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

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

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

.nav-menu a:hover {
    color: #ff6b35;
}

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

.btn {
    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;
}

.btn-signup {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    transform: translateY(-1px);
}

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

.btn-login:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.btn-claim {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: white;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-claim::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;
}

.btn-claim:hover::before {
    left: 100%;
}

.btn-claim:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e63946 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

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

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

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

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

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

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

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

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

/* Casino Visual */
.header-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

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

.slot-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 #ff6b35;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.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);
}

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

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

.chip-green {
    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 #ff6b35; }
    100% { text-shadow: 0 0 20px #ff6b35, 0 0 30px #ff6b35; }
}

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

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

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

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

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

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

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

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

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

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

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

.deposit-bonus:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

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

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

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

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

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

.bonus-card.premium {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 2px solid #ff6b35;
    padding: 40px;
    position: relative;
}

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

.bonus-card.premium .bonus-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 24px;
}

.bonus-card.premium h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.bonus-card.premium .bonus-amount {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bonus-card.premium p {
    font-size: 16px;
    margin-bottom: 24px;
}

.bonus-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;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

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

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

.bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

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

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

.bonus-terms span {
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-claim-small {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    padding: 12px 24px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-claim-small:hover {
    background: linear-gradient(135deg, #e55a2b, #e63946);
    transform: translateY(-2px);
}

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

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

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

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

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

.category-count {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 12px;
}

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

/* Popular Games */
.popular-games {
    margin-bottom: 60px;
}

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

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

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

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

.game-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;
}

.game-item:hover .game-thumbnail {
    border-color: #ff6b35;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-all-games {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-all-games:hover {
    background: linear-gradient(135deg, #e55a2b, #e63946);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.provider-item p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.4;
}

.more-providers {
    text-align: center;
    padding: 24px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

/* Mid-Page CTA Section */
.mid-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

.mid-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

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

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

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

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

.btn-mid-cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 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(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-mid-cta-primary::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;
}

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

.btn-mid-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-mid-cta-secondary {
    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;
}

.btn-mid-cta-secondary:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

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

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

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

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

.payment-table-container {
    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);
}

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

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

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

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

.payment-table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

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

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

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

.payment-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-icon.visa {
    background: linear-gradient(135deg, #1a1f71, #2563eb);
}

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

.payment-icon.paypal {
    background: linear-gradient(135deg, #003087, #009cde);
}

.payment-icon.skrill {
    background: linear-gradient(135deg, #862165, #b83dba);
}

.payment-icon.neteller {
    background: linear-gradient(135deg, #00ac41, #7cb518);
}

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

.payment-icon.ethereum {
    background: linear-gradient(135deg, #627eea, #8c9eff);
}

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

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

.btn-deposit {
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    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;
}

.btn-deposit:hover {
    background: linear-gradient(135deg, #e55a2b, #e63946);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Security Features */
.security-features {
    max-width: 1000px;
    margin: 0 auto;
}

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

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

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

.security-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.review-card .star {
    color: #ff6b35;
    font-size: 18px;
}

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

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

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

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

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

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

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

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

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

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

.faq-item:hover {
    border-color: #ff6b35;
}

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

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

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

/* Info Table */
.table-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-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);
}

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

.info-table tr:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

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

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

.info-table td:first-child {
    font-weight: 600;
    color: #ff6b35;
    width: 30%;
}

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

/* SEO Content Blocks */
.seo-content {
    padding: 60px 0;
    overflow-x: hidden;
}

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

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

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

.seo-block h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6b35;
    line-height: 1.3;
}

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

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-weight: 600;
}

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

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

.cta-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 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(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-highlight::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;
}

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

.cta-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
    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;
}

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

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

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

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

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

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

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

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

.license-info {
    margin-top: 16px;
}

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

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

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

.footer-links a:hover {
    color: #ff6b35;
}

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

.age-restriction {
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.age-restriction p {
    color: #ff6b35;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

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

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

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

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

.cert-badge {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

    .casino-text {
        font-size: 10px;
    }

    .nav-menu {
        display: none;
    }

    .nav-buttons {
        gap: 8px;
    }

    .nav-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

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

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

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

    .header-features {
        justify-content: center;
    }

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

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

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

    .slot-reel {
        font-size: 20px;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .welcome-package {
        padding: 24px;
    }

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

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

    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-bonuses {
        grid-template-columns: 1fr;
    }
    
    .bonus-card.premium {
        padding: 24px;
    }

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

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

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

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

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

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

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

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

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

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

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

    .cta-subtitle {
        font-size: 18px;
    }

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

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

    .mid-cta-title {
        font-size: 2rem;
    }

    .mid-cta-subtitle {
        font-size: 16px;
    }

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

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

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

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

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

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

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

    .casino-text {
        font-size: 9px;
    }

    .nav-buttons .btn {
        padding: 6px 12px;
        font-size: 11px;
    }

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

    .btn-claim {
        padding: 14px 32px;
        font-size: 16px;
    }

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

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

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

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

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

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

    .provider-item {
        padding: 16px;
    }

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

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

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

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

    .mid-cta-subtitle {
        font-size: 15px;
    }

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

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

    .cta-subtitle {
        font-size: 16px;
    }
}