/* Vegas Neon Color Palette */
:root {
    --neon-pink: #ff006e;
    --neon-purple: #8338ec;
    --neon-blue: #3a86ff;
    --neon-cyan: #00f5ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffbe0b;
    --neon-orange: #fb5607;
    --neon-red: #ff0050;
}

/* Vegas Background Effects */
.vegas-lights-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at top, rgba(131, 56, 236, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(58, 134, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 190, 11, 0.2) 0%, transparent 40%);
    animation: vegas-pulse 8s ease-in-out infinite;
    z-index: -2;
}

.neon-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 0, 110, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 56, 236, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

/* Neon Text Effects */
.neon-text-primary {
    color: #fff;
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-pink),
        0 0 40px var(--neon-purple),
        0 0 70px var(--neon-purple),
        0 0 80px var(--neon-purple),
        0 0 100px var(--neon-purple),
        0 0 150px var(--neon-purple);
    animation: neon-flicker 2s infinite alternate;
}

.neon-text-secondary {
    color: #fff;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 40px var(--neon-blue),
        0 0 70px var(--neon-blue),
        0 0 80px var(--neon-blue);
}

.neon-text-yellow {
    color: #fff;
    text-shadow: 
        0 0 10px var(--neon-yellow),
        0 0 20px var(--neon-yellow),
        0 0 30px var(--neon-orange),
        0 0 40px var(--neon-orange);
}

.neon-text-green {
    color: #fff;
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 30px var(--neon-green),
        0 0 40px var(--neon-green);
}

.neon-text-orange {
    color: #fff;
    text-shadow: 
        0 0 10px var(--neon-orange),
        0 0 20px var(--neon-orange),
        0 0 30px var(--neon-red),
        0 0 40px var(--neon-red);
}

/* Vegas Title */
.vegas-title {
    font-weight: 900;
    letter-spacing: 0.1em;
    transform: perspective(500px) rotateY(-15deg);
    animation: vegas-3d 8s ease-in-out infinite;
}

.vegas-section-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .vegas-section-title {
        font-size: 4rem;
    }
}

/* Neon Logo */
.neon-logo {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.neon-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    color: var(--neon-pink);
    text-align: center;
    margin-top: -5px;
}

/* Lucky Seven */
.lucky-seven {
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-yellow);
    transform: rotate(15deg);
    animation: spin-slow 20s linear infinite;
    text-shadow: 
        0 0 20px var(--neon-yellow),
        0 0 40px var(--neon-orange),
        0 0 60px var(--neon-orange);
}

/* Neon Navigation */
.neon-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.neon-nav-item:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.neon-nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: width 0.3s;
}

.neon-nav-item:hover::after {
    width: 100%;
}

/* Neon Buttons */
.neon-button-primary {
    position: relative;
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.neon-button-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.neon-button-mega {
    position: relative;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.neon-button-mega:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 50px rgba(255, 0, 110, 1),
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.neon-button-secondary {
    position: relative;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.5),
        inset 0 0 20px rgba(0, 245, 255, 0.1);
}

.neon-button-secondary:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.8),
        inset 0 0 30px rgba(0, 245, 255, 0.2);
}

/* Neon Bonus Box */
.neon-bonus-box {
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple), var(--neon-yellow));
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
    border-radius: 2rem;
}

.neon-bonus-inner {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem;
    border-radius: calc(2rem - 3px);
    backdrop-filter: blur(10px);
}

/* Neon Stars */
.neon-star {
    color: var(--neon-yellow);
    font-size: 2rem;
    margin: 0 0.5rem;
    animation: star-pulse 1s ease-in-out infinite;
}

.star-1 { animation-delay: 0s; }
.star-2 { animation-delay: 0.3s; }
.star-3 { animation-delay: 0.6s; }

/* Neon Badge */
.neon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-orange));
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
    animation: badge-glow 2s ease-in-out infinite;
}

/* Neon Ticker */
.neon-ticker-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 0, 110, 0.3);
    border-bottom: 1px solid rgba(255, 0, 110, 0.3);
}

.neon-ticker {
    display: flex;
    gap: 4rem;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

.neon-ticker span {
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Vegas Spotlights */
.vegas-spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
}

.spotlight-1 {
    top: -150px;
    left: -150px;
    background: var(--neon-pink);
    animation: spotlight-move-1 15s ease-in-out infinite;
}

.spotlight-2 {
    top: 50%;
    right: -150px;
    background: var(--neon-purple);
    animation: spotlight-move-2 20s ease-in-out infinite;
}

.spotlight-3 {
    bottom: -150px;
    left: 50%;
    background: var(--neon-cyan);
    animation: spotlight-move-3 18s ease-in-out infinite;
}

/* Floating Neon Elements */
.floating-neon-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.neon-card, .neon-chip, .neon-dice {
    position: absolute;
    font-size: 3rem;
    animation: float-random 20s ease-in-out infinite;
    opacity: 0.6;
}

.neon-card {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.neon-chip {
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
}

.neon-dice {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 20%; right: 15%; animation-delay: 5s; }
.card-3 { bottom: 30%; left: 20%; animation-delay: 10s; }
.card-4 { bottom: 10%; right: 10%; animation-delay: 15s; }
.chip-1 { top: 40%; left: 5%; animation-delay: 2s; }
.chip-2 { bottom: 20%; right: 25%; animation-delay: 7s; }
.dice-1 { top: 15%; left: 50%; animation-delay: 12s; }

/* Neon Step Cards */
.neon-step-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
}

.neon-step-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 110, 0.3),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

.neon-step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 0, 110, 0.2);
}

.neon-step-icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

/* Neon Warning Box */
.neon-warning-box {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 190, 11, 0.1);
    border: 2px solid var(--neon-yellow);
    border-radius: 1rem;
    box-shadow: 
        0 0 20px rgba(255, 190, 11, 0.3),
        inset 0 0 20px rgba(255, 190, 11, 0.1);
}

.neon-warning-box i {
    color: var(--neon-yellow);
    animation: warning-blink 1s ease-in-out infinite;
}

/* Neon Promo Cards */
.neon-promo-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid transparent;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
}

.neon-promo-card[data-color="purple"] {
    border-color: rgba(131, 56, 236, 0.3);
}

.neon-promo-card[data-color="purple"]:hover {
    border-color: var(--neon-purple);
    box-shadow: 
        0 0 30px rgba(131, 56, 236, 0.5),
        inset 0 0 30px rgba(131, 56, 236, 0.1);
}

.neon-promo-card[data-color="pink"] {
    border-color: rgba(255, 0, 110, 0.3);
}

.neon-promo-card[data-color="pink"]:hover {
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.5),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

.neon-promo-card[data-color="green"] {
    border-color: rgba(0, 255, 136, 0.3);
}

.neon-promo-card[data-color="green"]:hover {
    border-color: var(--neon-green);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.neon-promo-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
}

.neon-promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* Crab Section */
.crab-section-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(251, 146, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(239, 68, 68, 0.2) 0%, transparent 50%);
    animation: crab-bg-pulse 4s ease-in-out infinite;
}

.neon-feature-box {
    padding: 3px;
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-red), var(--neon-yellow));
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
    border-radius: 2rem;
}

.neon-feature-box > div {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem;
    border-radius: calc(2rem - 3px);
}

.neon-reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.neon-reward-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.neon-reward-item i {
    font-size: 1.5rem;
}

/* Crab Animation */
.crab-animation-container {
    position: relative;
    width: 250px;
    height: 250px;
}

.neon-crab {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--neon-orange);
    text-shadow: 
        0 0 30px var(--neon-orange),
        0 0 60px var(--neon-red);
    animation: crab-dance 3s ease-in-out infinite;
}

.crab-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.crab-sparkles i {
    position: absolute;
    color: var(--neon-yellow);
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 10%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 20%; left: 30%; animation-delay: 1s; }

.crab-bonus-text {
    position: absolute;
    top: -20px;
    right: -20px;
    padding: 0.5rem 1rem;
    background: var(--neon-yellow);
    color: black;
    font-weight: 900;
    border-radius: 50px;
    transform: rotate(15deg);
    animation: bonus-bounce 1s ease-in-out infinite;
}

.neon-tip-box {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 190, 11, 0.05);
    border: 1px solid rgba(255, 190, 11, 0.3);
    border-radius: 1rem;
}

.neon-tip-box i {
    color: var(--neon-yellow);
}

/* Trust & License */
.neon-trust-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 2rem;
    transition: all 0.3s;
}

.neon-trust-box:hover {
    border-color: var(--neon-green);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 30px rgba(0, 255, 136, 0.05);
}

.neon-license-badge {
    padding: 1rem 2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.neon-security-badges {
    display: flex;
    gap: 2rem;
}

.neon-security-badges i {
    animation: security-pulse 2s ease-in-out infinite;
}

/* Payment Methods */
.neon-section-bg-alt {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(58, 134, 255, 0.1) 50%, transparent 100%);
}

.neon-payment-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 2rem;
}

.neon-payment-card {
    padding: 2rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.neon-payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.neon-payment-card i {
    color: var(--neon-cyan);
}

.neon-payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s;
}

.neon-payment-icon:hover {
    transform: scale(1.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.neon-limit-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

/* FAQ */
.neon-faq-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(131, 56, 236, 0.3);
    border-radius: 1rem;
    transition: all 0.3s;
}

.neon-faq-item:hover {
    border-color: var(--neon-purple);
    transform: translateX(10px);
    box-shadow: 
        0 0 30px rgba(131, 56, 236, 0.3),
        inset 0 0 30px rgba(131, 56, 236, 0.05);
}

.neon-faq-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131, 56, 236, 0.1);
    border-radius: 1rem;
    font-size: 1.5rem;
    color: var(--neon-purple);
}

/* About Section */
.neon-about-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(131, 56, 236, 0.3);
    border-radius: 2rem;
}

/* Image Placeholders */
.neon-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    min-height: 200px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.neon-image-placeholder:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.neon-image-placeholder.large {
    min-height: 300px;
}

.neon-image-placeholder i {
    margin-bottom: 1rem;
}

/* Neon Table */
.neon-table-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    background: rgba(0, 245, 255, 0.02);
}

.neon-table-cell {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s;
}

.neon-table-wrapper tr:hover .neon-table-cell {
    background: rgba(0, 245, 255, 0.05);
}

.neon-table-wrapper tr:last-child .neon-table-cell {
    border-bottom: none;
}

/* Game Categories */
.neon-game-category {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.neon-game-category:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.3);
}

.neon-game-category i {
    color: var(--neon-purple);
}

/* Game Providers */
.neon-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.neon-provider-card {
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.neon-provider-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.provider-logo {
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

/* VIP Levels */
.neon-vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.vip-level {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid transparent;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.vip-level[data-level="bronze"] {
    border-color: rgba(205, 127, 50, 0.5);
}

.vip-level[data-level="bronze"]:hover {
    border-color: #cd7f32;
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.5);
}

.vip-level[data-level="bronze"] i {
    color: #cd7f32;
}

.vip-level[data-level="silver"] {
    border-color: rgba(192, 192, 192, 0.5);
}

.vip-level[data-level="silver"]:hover {
    border-color: #c0c0c0;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.vip-level[data-level="silver"] i {
    color: #c0c0c0;
}

.vip-level[data-level="gold"] {
    border-color: rgba(255, 215, 0, 0.5);
}

.vip-level[data-level="gold"]:hover {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.vip-level[data-level="gold"] i {
    color: #ffd700;
}

.vip-level[data-level="platinum"] {
    border-color: rgba(229, 228, 226, 0.5);
}

.vip-level[data-level="platinum"]:hover {
    border-color: #e5e4e2;
    box-shadow: 0 0 30px rgba(229, 228, 226, 0.5);
}

.vip-level[data-level="platinum"] i {
    color: #e5e4e2;
}

/* Security Features */
.neon-security-feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.neon-security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Support Methods */
.neon-support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.support-method {
    padding: 2rem;
    background: rgba(0, 245, 255, 0.02);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.support-method:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

/* Summary Box */
.neon-summary-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--neon-yellow), var(--neon-pink)) 1;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.neon-summary-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-pink));
    border-radius: 1rem;
    opacity: 0.3;
    z-index: -1;
    animation: gradient-shift 4s ease infinite;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .neon-about-box {
        padding: 1.5rem;
    }
    
    .neon-vip-levels,
    .neon-support-methods {
        grid-template-columns: 1fr;
    }
    
    .neon-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Featured Slots Section */
.neon-slot-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 190, 11, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.neon-slot-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-yellow);
    box-shadow: 
        0 20px 40px rgba(255, 190, 11, 0.3),
        inset 0 0 30px rgba(255, 190, 11, 0.05);
}

/* Slot Image Wrapper */
.slot-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.slot-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 190, 11, 0.1) 100%);
    position: relative;
}

.slot-image-placeholder i {
    opacity: 0.8;
    animation: icon-float 3s ease-in-out infinite;
}

/* Hover Overlay */
.slot-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.neon-slot-card:hover .slot-hover-overlay {
    opacity: 1;
}

.play-button, .demo-button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.play-button {
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-orange));
    color: black;
    box-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 190, 11, 0.8);
}

.demo-button {
    background: transparent;
    color: white;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.demo-button:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

/* Slot Labels */
.slot-provider {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
}

.slot-rtp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--neon-green);
}

.slot-volatility {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 80, 0.2);
    border: 1px solid var(--neon-red);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--neon-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Slot Info */
.slot-info {
    padding: 1.5rem;
}

.slot-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 190, 11, 0.5);
}

.slot-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Feature Tags */
.slot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(131, 56, 236, 0.1);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #e9d5ff;
    transition: all 0.3s;
}

.feature-tag:hover {
    background: rgba(131, 56, 236, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(131, 56, 236, 0.3);
}

/* Slot Card Animation on Load */
@keyframes slot-card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-slot-card {
    animation: slot-card-entrance 0.6s ease-out;
    animation-fill-mode: both;
}

.neon-slot-card:nth-child(1) { animation-delay: 0.1s; }
.neon-slot-card:nth-child(2) { animation-delay: 0.2s; }
.neon-slot-card:nth-child(3) { animation-delay: 0.3s; }
.neon-slot-card:nth-child(4) { animation-delay: 0.4s; }
.neon-slot-card:nth-child(5) { animation-delay: 0.5s; }
.neon-slot-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Slots */
@media (max-width: 768px) {
    .slot-features {
        justify-content: center;
    }
    
    .slot-title {
        font-size: 1.25rem;
    }
    
    .slot-hover-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .play-button, .demo-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Footer */
.neon-footer-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(255, 0, 110, 0.1) 100%);
    z-index: -1;
}

.neon-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    color: #e5e7eb;
}

.neon-contact-item i {
    width: 30px;
    text-align: center;
    color: var(--neon-green);
}

.neon-disclaimer {
    padding: 1.5rem;
    background: rgba(255, 190, 11, 0.05);
    border: 1px solid rgba(255, 190, 11, 0.2);
    border-radius: 1rem;
}

.neon-logo-footer {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

/* Floating Elements */
.floating-element {
    position: fixed;
    bottom: -50px;
    color: var(--neon-pink);
    text-shadow: 0 0 20px currentColor;
    animation: float-up 20s linear;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

/* Animations */
@keyframes vegas-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 0.9; }
    93% { opacity: 1; }
    94% { opacity: 0.8; }
    95% { opacity: 1; }
}

@keyframes vegas-3d {
    0%, 100% { transform: perspective(500px) rotateY(-15deg); }
    50% { transform: perspective(500px) rotateY(15deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
    from { transform: rotate(15deg); }
    to { transform: rotate(375deg); }
}

@keyframes star-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes badge-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 190, 11, 0.8);
    }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes spotlight-move-1 {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% { 
        transform: translate(200px, 100px);
        opacity: 0.5;
    }
}

@keyframes spotlight-move-2 {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-150px, -50px);
        opacity: 0.4;
    }
}

@keyframes spotlight-move-3 {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-100px, -100px);
        opacity: 0.4;
    }
}

@keyframes float-random {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% { 
        transform: translate(-30px, -60px) rotate(180deg);
    }
    75% { 
        transform: translate(-60px, -30px) rotate(270deg);
    }
}

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

@keyframes warning-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes crab-bg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes crab-dance {
    0%, 100% { 
        transform: rotate(-10deg) scale(1);
    }
    25% { 
        transform: rotate(10deg) scale(1.05);
    }
    50% { 
        transform: rotate(-10deg) scale(1);
    }
    75% { 
        transform: rotate(10deg) scale(1.05);
    }
}

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

@keyframes bonus-bounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

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

@keyframes float-up {
    to {
        transform: translateY(-120vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vegas-title {
        transform: none;
    }
    
    .neon-bonus-inner {
        padding: 2rem;
    }
    
    .neon-step-card {
        padding: 1.5rem;
    }
    
    .lucky-seven {
        font-size: 2rem;
    }
    
    .floating-neon-elements {
        display: none;
    }
}

/* Glow Effects on Hover */
*:hover {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;
    border: 1px solid rgba(255, 0, 110, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-purple));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--neon-purple), var(--neon-pink));
}

/* Loading Animation */
@keyframes neon-loading {
    0% { 
        background-position: -200% center;
    }
    100% { 
        background-position: 200% center;
    }
}

.neon-loading {
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-pink),
        var(--neon-purple),
        var(--neon-cyan),
        transparent
    );
    background-size: 200% 100%;
    animation: neon-loading 2s linear infinite;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .vegas-lights-bg,
    .neon-grid,
    .floating-neon-elements,
    .vegas-spotlight {
        display: none;
    }
}

.neon-terms-nav-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50px;
color: #e5e7eb;
text-decoration: none;
transition: all 0.3s;
font-weight: 500;
}
.neon-terms-nav-item:hover {
background: rgba(131, 56, 236, 0.1);
border-color: var(--neon-purple);
color: white;
transform: translateY(-2px);
box-shadow: 0 5px 20px rgba(131, 56, 236, 0.3);
}
.neon-terms-nav-item i {
color: var(--neon-purple);
}
/* Terms Sections */
.neon-terms-section {
scroll-margin-top: 120px;
}
.neon-terms-title {
display: flex;
align-items: center;
gap: 1rem;
font-size: 2rem;
font-weight: bold;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid transparent;
border-image: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), transparent) 1;
}
.neon-terms-title i {
font-size: 2.5rem;
color: var(--neon-pink);
text-shadow: 0 0 20px var(--neon-pink);
}
.neon-terms-content {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 1rem;
padding: 2rem;
}
.terms-subtitle {
font-size: 1.25rem;
font-weight: bold;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--neon-cyan);
text-shadow: 0 0 10px var(--neon-cyan);
}
.neon-terms-content > h3:first-child {
margin-top: 0;
}
.terms-list {
list-style: none;
space-y: 0.5rem;
}
.terms-list li {
padding-left: 1.5rem;
position: relative;
margin-bottom: 0.5rem;
}
.terms-list li::before {
content: '•';
position: absolute;
left: 0;
color: var(--neon-purple);
font-size: 1.5rem;
}
/* Info Cards */
.neon-info-card {
padding: 1.5rem;
background: rgba(131, 56, 236, 0.05);
border: 1px solid rgba(131, 56, 236, 0.3);
border-radius: 0.75rem;
transition: all 0.3s;
}
.neon-info-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(131, 56, 236, 0.2);
}
/* Bonus Terms Box */
.neon-bonus-terms-box {
padding: 2rem;
background: linear-gradient(135deg, rgba(255, 190, 11, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
border: 2px solid transparent;
border-image: linear-gradient(45deg, var(--neon-yellow), var(--neon-pink)) 1;
border-radius: 1rem;
margin: 1.5rem 0;
}
/* Payment Info Cards */
.neon-payment-info-card {
padding: 1.5rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 0.75rem;
transition: all 0.3s;
}
.neon-payment-info-card:hover {
transform: scale(1.02);
border-color: var(--neon-cyan);
box-shadow: 0 0 25px rgba(0, 245, 255, 0.2);
}
/* KYC Box */
.neon-kyc-box {
padding: 1.5rem;
background: rgba(0, 245, 255, 0.05);
border: 1px solid rgba(0, 245, 255, 0.3);
border-radius: 0.75rem;
margin: 1.5rem 0;
}
/* Responsible Gaming Cards */
.neon-responsible-card {
padding: 2rem;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 1rem;
text-align: center;
transition: all 0.3s;
}
.neon-responsible-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.neon-responsible-card i {
margin-bottom: 1rem;
}
/* Warning Signs Box */
.neon-warning-signs {
padding: 1.5rem;
background: rgba(255, 146, 0, 0.05);
border: 1px solid rgba(255, 146, 0, 0.3);
border-radius: 0.75rem;
margin: 1.5rem 0;
}
/* Help Cards */
.neon-help-card {
padding: 1.5rem;
background: rgba(255, 255, 255, 0.02);
border: 2px solid transparent;
border-radius: 0.75rem;
transition: all 0.3s;
}
.neon-help-card:first-child {
border-color: rgba(0, 255, 136, 0.3);
}
.neon-help-card:first-child:hover {
border-color: var(--neon-green);
box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}
.neon-help-card:last-child {
border-color: rgba(58, 134, 255, 0.3);
}
.neon-help-card:last-child:hover {
border-color: var(--neon-blue);
box-shadow: 0 0 25px rgba(58, 134, 255, 0.3);
}
/* Accept Box */
.neon-accept-box {
padding: 3rem;
background: linear-gradient(135deg, rgba(131, 56, 236, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
border: 2px solid transparent;
border-image: linear-gradient(45deg, var(--neon-purple), var(--neon-pink)) 1;
border-radius: 1rem;
position: relative;
overflow: hidden;
}
.neon-accept-box::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
border-radius: 1rem;
opacity: 0.2;
z-index: -1;
animation: gradient-shift 4s ease infinite;
}
/* Scroll to Top Button */
#scrollToTop {
z-index: 100;
cursor: pointer;
}
#scrollToTop:hover {
transform: translateY(-3px);
}
/* Table Enhancements for Terms */
.neon-table-header {
padding: 1rem;
background: rgba(131, 56, 236, 0.2);
border-bottom: 2px solid var(--neon-purple);
font-weight: bold;
text-align: left;
}
/* Responsive adjustments for Terms page */
@media (max-width: 768px) {
.neon-terms-nav-item {
padding: 0.5rem 1rem;
font-size: 0.875rem;
}
.neon-terms-title {
    font-size: 1.5rem;
}

.neon-terms-title i {
    font-size: 2rem;
}

.neon-terms-content {
    padding: 1.5rem;
}

.neon-bonus-terms-box,
.neon-accept-box {
    padding: 1.5rem;
}
}