/* First Visit Modal Styles */
.first-visit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.first-visit-content {
    background: linear-gradient(135deg, #2bace2 0%, #f7941d 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    color: white;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.first-visit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
}

.first-visit-content h2 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.first-visit-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.step-number {
    background: white;
    color: #2bace2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: white;
    line-height: 1.6;
}

/* Sound Toggle Button */
.sound-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(43, 172, 226, 0.9);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-toggle:hover {
    background: rgba(43, 172, 226, 1);
    transform: scale(1.1);
}

.sound-toggle.muted {
    background: rgba(150, 150, 150, 0.9);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .custom-btn {
    padding: 12px 25px;
    font-size: 16px;
}

/* Ambient Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatSats {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-sats {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: floatSats 3s ease-in-out infinite;
    pointer-events: none;
}

/* Parallax Water Effect */
.parallax-water {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(43, 172, 226, 0.2), transparent);
    pointer-events: none;
    animation: waterFlow 4s ease-in-out infinite;
}

@keyframes waterFlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode .custom-block,
body.dark-mode .featured-block,
body.dark-mode .news-block {
    background: #2a2a2a;
    color: #e0e0e0;
}

/* Sats Mode Toggle */
.currency-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
    margin: 10px 0;
}

.currency-toggle button {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-toggle button.active {
    background: #f7941d;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .custom-btn {
        width: 100%;
        text-align: center;
    }
    
    .first-visit-content {
        padding: 25px;
    }
    
    .sound-toggle {
        bottom: 70px;
        width: 45px;
        height: 45px;
    }
}
