.font-orbitron { font-family: 'Orbitron', monospace; }
.font-inter { font-family: 'Inter', sans-serif; }

.gradient-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.glow {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.glow-purple {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.wave-animation {
    animation: wave 4s linear infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

@keyframes wave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    animation: particle-float 6s linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.font-orbitron { font-family: 'Orbitron', monospace; }

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-purple {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5), 0 0 40px rgba(147, 51, 234, 0.3);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(6, 182, 212, 0.5); }
    50% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.6); }
}

.wave-animation {
    animation: wave 3s linear infinite;
    width: 100%;
}

@keyframes wave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

.game-iframe {
    border: 3px solid;
    border-image: linear-gradient(45deg, #06b6d4, #8b5cf6, #ec4899) 1;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.game-star-rating {
    display: flex;
    gap: 4px;
}

.game-star {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.game-star:hover,
.game-star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.control-btn {
    transition: all 0.3s;
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.ad-left-right {
    min-width: 200px;
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 25px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    font-family: sans-serif;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.alert-hidden {
    display: none;
}

.alert-visible {
    display: block;
    opacity: 1;
}

#lang-suggestion-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background-color: #262626;
    color: #ffffff;
    padding: 16px 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transform: translateY(100%);
    visibility: hidden;
    transition: transform 0.4s ease-out, visibility 0.4s ease-out;
}

#lang-suggestion-banner.visible {
    transform: translateY(0);
    visibility: visible;
}

#lang-suggestion-banner p {
    margin: 0;
    padding-right: 20px;
    font-size: 15px;
}

.lang-banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-banner-switch-btn {
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.lang-banner-switch-btn:hover {
    background-color: #0056b3;
}

.lang-banner-close-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.2s;
}

.lang-banner-close-btn:hover {
    color: #ffffff;
}