/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Background Patterns */
.bg-pattern {
    background-image: radial-gradient(rgba(26, 122, 64, 0.8) 1px, transparent 1px), 
                      radial-gradient(rgba(26, 122, 64, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 20px 20px;
    animation: patternMove 60s linear infinite;
}

.bg-pattern-2 {
    background-image: radial-gradient(rgba(26, 122, 64, 0.8) 1px, transparent 1px), 
                      radial-gradient(rgba(26, 122, 64, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 20px 20px;
    animation: patternMove 60s linear infinite reverse;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 20px 20px;
    }
    100% {
        background-position: 40px 40px, 60px 60px;
    }
}

/* Spotlight Effect */
.spotlight {
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.15), transparent 50%);
    animation: spotlightMove 20s ease-in-out infinite;
}

@keyframes spotlightMove {
    0%, 100% {
        background-position: 50% 50%;
    }
    25% {
        background-position: 25% 25%;
    }
    50% {
        background-position: 75% 75%;
    }
    75% {
        background-position: 75% 25%;
    }
}

/* Navigation */
.nav-link {
    position: relative;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #ffc107;
}

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

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #ffc107;
}

/* Logo Animation */
.logo-container {
    position: relative;
    overflow: hidden;
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-light {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.6), transparent 70%);
    z-index: 1;
    animation: logoLight 5s ease-in-out infinite;
}

@keyframes logoLight {
    0%, 100% {
        transform: translate(-30%, -30%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(30%, 30%) scale(1.2);
        opacity: 0.8;
    }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    z-index: 1;
}

.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.7s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
}

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

.cta-button-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    z-index: 1;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.8);
}

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

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(30, 136, 229, 0.2);
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 1px solid rgba(30, 136, 229, 0.5);
}

.secondary-button:hover {
    background: rgba(30, 136, 229, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

/* Hero Section */
.hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    animation: heroTitleFloat 6s ease-in-out infinite;
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(5deg);
    }
}

.text-shadow-glow {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.7), 
                 0 0 20px rgba(255, 193, 7, 0.5), 
                 0 0 30px rgba(255, 193, 7, 0.3);
}

.bonus-box {
    background: rgba(26, 122, 64, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.bonus-box-bg {
    background: linear-gradient(135deg, 
                rgba(26, 122, 64, 0.6), 
                rgba(30, 136, 229, 0.2));
    filter: blur(10px);
}

.hero-image-container {
    position: relative;
    transform-style: preserve-3d;
    animation: heroImageFloat 8s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.hero-image {
    border: 3px solid rgba(255, 193, 7, 0.3);
    transition: all 0.5s;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(255, 193, 7, 0.2), 
                rgba(30, 136, 229, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.card-ace {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Crect width='450' height='630' rx='30' ry='30' fill='%23fff' stroke='%23000' stroke-width='10'/%3E%3Cpath d='M225 150l-90 240h40l20-60h120l20 60h40l-90-240h-60zm30 60l40 120h-80l40-120z' fill='%23ff0000'/%3E%3C/svg%3E");
    animation: floatElement 15s ease-in-out infinite;
}

.card-king {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Crect width='450' height='630' rx='30' ry='30' fill='%23fff' stroke='%23000' stroke-width='10'/%3E%3Cpath d='M225 150v240h40v-90l30 90h30l30-90v90h40v-240h-60l-25 75-25-75h-60z' fill='%23ff0000'/%3E%3C/svg%3E");
    animation: floatElement 18s ease-in-out infinite 2s;
}

.dice {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Crect width='400' height='400' rx='50' ry='50' fill='%23fff' stroke='%23000' stroke-width='10'/%3E%3Ccircle cx='100' cy='100' r='40' fill='%23000'/%3E%3Ccircle cx='300' cy='300' r='40' fill='%23000'/%3E%3Ccircle cx='200' cy='200' r='40' fill='%23000'/%3E%3Ccircle cx='100' cy='300' r='40' fill='%23000'/%3E%3Ccircle cx='300' cy='100' r='40' fill='%23000'/%3E%3C/svg%3E");
    animation: floatElement 12s ease-in-out infinite 1s;
}

.chip-blue {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Ccircle cx='256' cy='256' r='200' fill='%231e88e5' stroke='%23fff' stroke-width='20'/%3E%3Ccircle cx='256' cy='256' r='150' fill='none' stroke='%23fff' stroke-width='10' stroke-dasharray='20,10'/%3E%3C/svg%3E");
    animation: floatElement 20s ease-in-out infinite 3s;
}

.chip-red {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Ccircle cx='256' cy='256' r='200' fill='%23e53935' stroke='%23fff' stroke-width='20'/%3E%3Ccircle cx='256' cy='256' r='150' fill='none' stroke='%23fff' stroke-width='10' stroke-dasharray='20,10'/%3E%3C/svg%3E");
    animation: floatElement 17s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(10deg);
    }
    75% {
        transform: translateY(30px) rotate(5deg);
    }
}

/* Bonus Steps */
.bonus-step {
    background: rgba(26, 122, 64, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 193, 7, 0.8);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 16px;
    animation: pulseIcon 3s ease-in-out infinite;
}

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

/* Game Cards */
.game-card {
    perspective: 1000px;
    height: 300px;
}

.game-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.game-card:hover .game-card-inner {
    transform: rotateY(180deg);
}

.game-card-front, .game-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.game-card-front {
    background: #000;
}

.game-card-back {
    background: linear-gradient(135deg, #1a7a40, #145e31);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    border: 2px solid rgba(255, 193, 7, 0.5);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.game-play-button {
    display: inline-block;
    padding: 8px 16px;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    margin-top: 10px;
}

.game-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}

/* Provider Pills */
.provider-pill {
    background: rgba(30, 136, 229, 0.2);
    border: 1px solid rgba(30, 136, 229, 0.4);
    border-radius: 20px;
    padding: 6px 12px;
    text-align: center;
    transition: all 0.3s;
}

.provider-pill:hover {
    background: rgba(30, 136, 229, 0.3);
    transform: translateY(-2px);
}

/* VIP Levels */
.vip-level {
    background: rgba(26, 122, 64, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
}

.vip-level-name {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.vip-benefits {
    padding: 15px;
    list-style-type: none;
}

.vip-benefits li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.vip-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
}

/* Support Options */
.support-option {
    background: rgba(26, 122, 64, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
}

/* Promo Cards */
.promo-card {
    perspective: 1000px;
}

.promo-card-inner {
    background: rgba(26, 122, 64, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s;
    transform-style: preserve-3d;
}

.promo-card:hover .promo-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.6);
}

.promo-divider {
    width: 60px;
    height: 3px;
    background: #ffc107;
    margin: 15px auto;
}

.promo-button {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(30, 136, 229, 0.2);
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid rgba(30, 136, 229, 0.5);
}

.promo-button:hover {
    background: rgba(30, 136, 229, 0.3);
    transform: scale(1.05);
}

/* Bonus Crab */
.bonus-crab-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: crabFloat 6s ease-in-out infinite;
}

@keyframes crabFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.bonus-crab-image {
    width: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 193, 7, 0.5);
}

.bonus-crab-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.5), transparent 70%);
    filter: blur(15px);
    animation: crabGlow 4s ease-in-out infinite;
}

@keyframes crabGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Trust Badges */
.trust-badge {
    text-align: center;
    padding: 20px;
    background: rgba(26, 122, 64, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    background: rgba(26, 122, 64, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(26, 122, 64, 0.5);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-icon i {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Final CTA */
.final-bonus-box {
    background: rgba(26, 122, 64, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.final-bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.3), transparent 70%);
    animation: finalGlow 10s ease-in-out infinite;
}

@keyframes finalGlow {
    0%, 100% {
        transform: translate(-30%, -30%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(30%, 30%) scale(1.2);
        opacity: 0.6;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-element {
        width: 40px;
        height: 40px;
    }
    
    .game-card {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .game-card {
        height: 200px;
    }
}
