.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

.player-load-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-container .shape {
    width: 15px;
    height: 15px;
    margin: 5px;
    background: #00e676;
    animation: bounce 1s infinite ease-in-out;
}
.loading-container .shape-2 { animation-delay: 0.1s; }
.loading-container .shape-3 { animation-delay: 0.2s; }
.loading-container .shape-4 { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.game-launch-screen {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.game-launch-screen img {
    max-width: 100%;
    width: 380px;
    height: auto;
    max-height: 200px;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: contain;
}

.game-launch-screen h2 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
    padding: 0 10px;
}

.play-btn {
    background: linear-gradient(90deg, #00e676, #1de9b6);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.play-btn:hover {
    background: #00c853;
    transform: scale(1.05);
    color: #fff; /* Yaz覺 beyaz olacak */
}


@media screen and (max-width: 775px) {
    .game-launch-screen img {
        width: 150px;
        max-height: 140px;
    }

    .game-launch-screen h2 {
        font-size: 1rem;
    }

    .play-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}

iframe#gameFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.beeteam368-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 oran: 9/16 = 0.5625 */
    height: auto !important;
}

  #skipAdBtn {
    position: absolute;
    top: 5px;
    right: 7px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background: #ccc;
    color: #000;
    cursor: not-allowed;
    z-index: 9999;
    transition: background 0.4s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  #skipAdBtn:hover {
    background: #bfbfbf; /* Hover'da biraz daha koyu gri */
    color: #111;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transform: scale(1.03);
  }

  #skipAdBtn:enabled {
    background: #ff4b2b;
    color: #fff;
    cursor: pointer;
  }

  #skipAdBtn:enabled:hover {
    background: #ff6a45; /* Hover'da daha açık bir kırmızı-turuncu */
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 107, 69, 0.5);
    transform: scale(1.05);
  }