@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
  font-family: "Josefin Sans", sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}

.glass-bg {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(56, 182, 255, 0.2);
    filter: blur(5px);
    z-index: -1;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal {
    transition: opacity 0.3s ease;
}

#gameIframe {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 8px;
}

#dnsmiCookiesThankYou {
    top: -60px;
}

.game-modal {
    height: 600px;
}

.cookie-text-box {
    width: 50%;
}

@media (max-width: 768px) {
    #gameIframe {
        height: 60vh;
    }

    .game-modal {
        height: 300px;
    }

    .cookie-text-box {
        width: 100%;
    }
}
