/* Custom CSS for Pistolo Casino */

/* Base Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-emoji:nth-child(odd) {
    animation-delay: -2s;
}

.floating-emoji:nth-child(even) {
    animation-delay: -4s;
}

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

/* 3D Text Effects */
.logo-3d {
    text-shadow: 
        0 1px 0 #1e40af,
        0 2px 0 #1e3a8a,
        0 3px 0 #1e3a8a,
        0 4px 0 #1e3a8a,
        0 5px 10px rgba(0,0,0,0.3);
}

.hero-title {
    text-shadow: 
        0 2px 0 #1e40af,
        0 4px 0 #1e3a8a,
        0 6px 0 #1e3a8a,
        0 8px 0 #1e3a8a,
        0 10px 20px rgba(0,0,0,0.4);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 
            0 2px 0 #1e40af,
            0 4px 0 #1e3a8a,
            0 6px 0 #1e3a8a,
            0 8px 0 #1e3a8a,
            0 10px 20px rgba(0,0,0,0.4);
    }
    to {
        text-shadow: 
            0 2px 0 #1e40af,
            0 4px 0 #1e3a8a,
            0 6px 0 #1e3a8a,
            0 8px 0 #1e3a8a,
            0 10px 20px rgba(0,0,0,0.4),
            0 0 30px rgba(71, 216, 42, 0.5);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 2px 0 #1e40af,
        0 4px 0 #1e3a8a,
        0 6px 10px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #47d82a, #ffffff, #47d82a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    animation: gradientShift 3s ease infinite;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 
        0 2px 0 #1e40af,
        0 4px 0 #1e3a8a,
        0 6px 10px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #47d82a, #ffffff, #47d82a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    animation: gradientShift 3s ease infinite;
}

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

/* Button Styles */
.cta-button-large {
    background: linear-gradient(45deg, #47d82a, #3bc922);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 0 #2ea018,
        0 8px 20px rgba(71, 216, 42, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #2ea018,
        0 12px 25px rgba(71, 216, 42, 0.4);
}

.cta-button-large:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #2ea018,
        0 4px 10px rgba(71, 216, 42, 0.3);
}

.cta-button-secondary {
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid #47d82a;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 0 rgba(71, 216, 42, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-secondary:hover {
    background: linear-gradient(45deg, #47d82a, #3bc922);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 rgba(71, 216, 42, 0.3),
        0 12px 25px rgba(71, 216, 42, 0.2);
}

.cta-button-small {
    background: linear-gradient(45deg, #47d82a, #3bc922);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 2px 0 #2ea018,
        0 4px 10px rgba(71, 216, 42, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-small:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 3px 0 #2ea018,
        0 6px 15px rgba(71, 216, 42, 0.4);
}

/* Navigation */
.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #47d82a;
    text-shadow: 0 0 10px rgba(71, 216, 42, 0.5);
}

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

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

/* Spotlight Effects */
.spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(71, 216, 42, 0.2) 0%, transparent 70%);
    animation: spotlight 8s linear infinite;
}

.spotlight-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.spotlight-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes spotlight {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.3;
    }
}

/* Content Boxes */
.content-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.bonus-box {
    animation: bonusGlow 2s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
    from {
        box-shadow: 0 0 20px rgba(71, 216, 42, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(71, 216, 42, 0.6);
    }
}

/* Step Cards */
.step-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: slid