* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Prevent text selection and context menus on mobile */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile viewport fix for canvas and game elements */
canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

html {
    overflow: hidden;
    /* Mobile viewport fix */
    height: 100%;
    width: 100%;
    /* CSS custom property for mobile viewport height */
    --vh: 1vh;
}

body {
    font-family: english_font, sans-serif;
    /*font-family: Arial, sans-serif;*/
    background-color: #f0f0f0;
    position: relative;
    /* Mobile viewport fix - use CSS custom property instead of 100vh */
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Additional mobile-specific prevention */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    /* Prevent pinch zoom on mobile */
    touch-action: pan-x pan-y;
    /* iOS Safari specific fixes */
    -webkit-overflow-scrolling: touch;
    /* Prevent iOS Safari bounce */
    overscroll-behavior: none;
    /* Ensure no gaps on mobile */
    min-height: calc(var(--vh, 1vh) * 100);
}

@font-face {
    font-family: 'english_font';
    src: url('fonts/CookieRun-Bold.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'russian_font';
    /* src: url('fonts/troika.otf') format('opentype'); */
    src: url('fonts/Nunito-VariableFont_wght.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.level-bar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* gap: 5px; */
    z-index: 1000;
}

.warning-icon {
    position: absolute;
    top: -1px;
    right: 3px;
    width: 20px !important; /* !important ekleyerek kesin olarak bu boyutu almasını sağlayalım */
    height: 20px !important;
    z-index: 3;
}

.star-icon {
    position: relative;
    width: 60px; /* Star boyutunu artırdık */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-right: -20px;
}

.star-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    user-select: none;
    pointer-events: none;
}

.level-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 24px; /* Star içindeki sayıyı büyüttük */
    font-weight: bold;
    font-family: english_font, sans-serif;
    pointer-events: none;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.progress-container {
    position: relative;
    width: 200px; /* Genişliği artırdık */
    height: 35px; /* Yüksekliği artırdık */
    background: linear-gradient(to right, #152454 60%, #0a1333 100%);
    border-radius: 7px;
    overflow: visible;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-container .level-text {
    font-size: 20px !important; /* Yazı boyutunu artırdık */
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 35px !important;
}


.shop-button-container {
    position: absolute;
    top: 150px;
    left: 40px;
    display: flex;
    align-items: center;
    z-index: 1001;
    cursor: pointer;
    animation: shopPulse 1.5s ease-in-out infinite; /* Daha hızlı ve daha belirgin animasyon */
}

.shop-bg {
    position: relative;
    background-image: url('./sprites/main/shopBg.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s;
}

.shop-icon {
    position: absolute;
    left: -15px;
    width: 50px;
    height: 50px;
    background-image: url('./sprites/main/shopBag.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.shop-text {
    color: #005F0C;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    user-select: none;
}

/* Orta boyutlu ekranlar için */
@media (max-width: 1024px) {
    .progress-container {
        width: 180px;
        height: 32px;
    }

    .progress-container .level-text {
        font-size: 18px !important;
        line-height: 32px !important;
    }

    .star-icon {
        width: 55px;
        height: 55px;
    }

    .level-number {
        font-size: 22px;
    }
}

/* Daha küçük desktop ekranlar için */
@media (max-width: 768px) {
    .progress-container {
        width: 160px;
        height: 30px;
    }

    .progress-container .level-text {
        font-size: 16px !important;
        line-height: 30px !important;
    }

    .star-icon {
        width: 50px;
        height: 50px;
    }

    .level-number {
        font-size: 20px;
    }
}

/* En küçük ekranlar için */
@media (max-width: 480px) {
    .progress-container {
        width: 200px;
        height: 28px;
    }

    .progress-container .level-text {
        font-size: 15px !important;
        line-height: 28px !important;
    }

    .star-icon {
        width: 45px;
        height: 45px;
    }

    .level-number {
        font-size: 18px;
    }
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to right, #b8cd32, #71EC2F);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.level-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5vw;
    height: 5vw;
    transform: translateX(-50%) translateY(80%);
    color: rgb(0, 0, 0);
    font-size: 14px; /* Yazı boyutu */
    font-weight: bold;
    font-family: english_font, sans-serif;
    pointer-events: none; /* Yazıya tıklanmayı engelle */
    z-index: 2; /* Progress barın üzerinde olması için ayarlandı */
}

.loading-spinner {
    position: absolute;
    bottom: 7%;
    left: calc(50% - 10px); /* splash-loading-text'in soluna konumlandır */
    width: 28px;
    height: 28px;
    animation: loadingAppear 5s ease-in-out 4;
    display: block;

    user-select: none;
    pointer-events: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
        
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingAppear {

    0% {
        filter: blur(15px) brightness(1);
        transform: rotate(0deg);
    }

    5% {
        filter: blur(03px) brightness(1);
        transform: rotate(50deg);
    }

    50% {
        filter: blur(0px) brightness(1);
        transform: rotate(720deg);
    }

    95% {
        filter: blur(0px) brightness(1);
        transform: rotate(1400deg);
    }

    100% {
        filter: blur(15px) brightness(1);
        transform: rotate(1440deg);
    }
}

.splash-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('./sprites/splash_screen/Merge_Heroes_splash_background.png');
    display: block;
    z-index: 10000; /* Z-index değerini artırdık, her şeyin üstünde görünecek */
}

.splash-screen-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25%;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center;
    opacity: 0;
    filter: blur(10px) brightness(2);
    animation: logoAppear 2.5s ease-out forwards;

    user-select: none;
    pointer-events: none;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        filter: blur(15px) brightness(2);
    }

    50% {
        opacity: 0.75;
        filter: blur(7px) brightness(1.3);
    }

    54% {
        opacity: 1;
        filter: blur(1px) brightness(5);
    }

    70% {
        opacity: 1;
        filter: blur(1px) brightness(1.2);
    }

    100% {
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

.splash-loading-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 1.5vw;
    font-family: english_font, sans-serif;
    color: #532809;

    white-space: nowrap;
    display: inline-block;
    transform: translateX(-50%) translateY(-50%);
}

.splash-loading-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px) scale(0.1);
    animation: letter-appear 2s ease-in-out 3;
    filter: blur(2px) brightness(1.5);

}

@keyframes letter-appear {

    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.75) rotate(-10deg) skewX(10deg);
        filter: blur(2px) brightness(5);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1.1) rotate(0deg) skewX(0deg);
        filter: blur(0px) brightness(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.75) rotate(10deg) skewX(-10deg);
        filter: blur(2px) brightness(1.2);
    }
}

.main-menu {
    width: 100vw;
    height: auto;
    color: transparent;
    background-color: transparent;
    border: none;
    display: none;
    /*transform: translateY(-50%) ;*/
}

/* Sol üstteki level text ve resim */
.leaderboard-button-panel {
    position: absolute;
    top: 5vh;
    left: 6vw;
    /*width: auto;*/
    width: 10vw;
    height: 3vw;
    /*height: 5vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*transform: translateX(-100%);*/
}

.leaderboard-button {
    position: absolute;
    width: 10vw;
    height: 3vw;
    background-color: transparent;
    border: none;
}

.leaderboard-button-bg {
    position: absolute;
    width: 10vw;
    height: 3vw;

}

.leaderboard-icon {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 2vw;
    height: 2vw;
    transform: translateY(-50%);
}

.leaderboard-text {
    /* background-color: yellow;
    opacity: 0.5; */
    position: absolute;
    color: #f7adcf;
    font-size: 1.1vw;
    font-weight: bold;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 80%;
    left: 25%;
}

.settings-button-container {
    position: fixed;
    top: 15px;
    left: 40px;
    width: 45px;
    height: 45px;
    z-index: 1000;
}

.settings-button {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.settings-button:hover {
    transform: scale(1.12);
}

.settings-button img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

/* Sol üstteki level text ve resim */
.settings-button-panel {
    position: absolute;
    top: 5vh;
    left: 8vw;
    width: 3.3vw;
    height: auto ;
    display: flex;
    justify-content: center;
    align-items: center;
    color: transparent;
    border: none;
}

.settings-button:hover {
    opacity: 0.9;
}

.settings-image{
    width: 100%;
    height: auto;
    /* pointer-events: none; */
    user-select: none;
}

.settings-panel {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: black;*/
    background-color: rgba(5, 6, 34, 0.7);
    /*background-color: #050622;*/
    /*opacity: 0.7;*/
    display: none;
    z-index: 9999; /* Yüksek bir z-index değeri */

}

.settings-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25vw;
    height: calc(25vw * 0.82);
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999;
    background-color: transparent !important;
    -webkit-background-color: transparent !important;
}

.settings-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: contain;
    box-sizing: border-box;
    background-color: transparent !important;
    -webkit-background-color: transparent !important;

    user-select: none;
    pointer-events: none;
}

.settings-close-button {
    position: fixed;
    width: 10%;
    height: auto;
    top: 2.5%;
    right: 5%;
    /*transform: translateY(50%);*/
    background-color: transparent;
    border: none;
    z-index: 10000; /* Panel'den daha yüksek z-index */
    cursor: pointer; /* Tıklanabilir olduğunu belirtmek için */  
    pointer-events: auto; /* Tıklamayı aktif etmek için */
}
.settings-close-button:hover {
    opacity: 0.9;
}

.settings-close-button:hover {
    transform: scale(1.12);
}

.settings-close-button img {
    /*position: relative;*/
    width: 100%;
    height: 100%;

    user-select: none;
    pointer-events: none;

}

.settings-header-text {
    position: absolute;
    top: 4.5%;
    left: 50%;
    font-size: 1.4vw;
    font-family: english_font, sans-serif;

    /* text-shadow:
            0.2vw 0.2vw 4px #2a3894,
            -0.2vw 0.2vw 4px #2a3894,
            0.2vw -0.2vw 4px #2a3894,
            -0.2vw -0.2vw 4px #2a3894; */

    text-shadow:
        0.2vw 0.2vw 0px #3381ae;

    /* text-shadow: 0.2vw 0.2vw 4px #000000; */
    
    color: white;
    transform: translateX(-50%);
}

.music-panel {
    position: absolute;
    left: 50%;
    top: 28%;
    width: 18vw;
    height: calc(18vw * 0.21);
    transform: translateX(-50%);
}

.music-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    /*transform: translateX(-50%);*/

    user-select: none;
    pointer-events: none;
}

.music-text {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #032F38;
    font-size: 1.5vw;
    font-family: english_font, sans-serif;
    font-weight: bold;
    width: auto;
}

.music-toggle {
    position: absolute;
    top: 50%;
    right: 3%;
    width: 10vw;
    height: calc(10vw * 0.4);
    transform: translateY(-50%);
}

.music-toggle-img {
    position: absolute;
    top: 50%;
    right: 0;
    width: 48%;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.music-toggle-text {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    color: white;
    font-family: english_font, sans-serif;
    font-weight: 900;
    font-size: 1vw;
    pointer-events: none;
    user-select: none;
}

.music-toggle-button {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
}

.sound-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18vw;
    height: calc(18vw * 0.21);
    transform: translateX(-50%);
}

.sound-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    /*transform: translateX(-50%);*/

    user-select: none;
    pointer-events: none;
}

.sound-text {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #032F38;
    font-size: 1.5vw;
    font-family: english_font, sans-serif;
    font-weight: bold;
    width: auto;
}

.sound-toggle {
    position: absolute;
    top: 50%;
    right: 3%;
    width: 10vw;
    height: calc(10vw * 0.4);
    transform: translateY(-50%);
}

.sound-toggle-img {
    position: absolute;
    top: 50%;
    right: 0%;
    width: 48%;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.sound-toggle-text {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    color: white;
    font-family: english_font, sans-serif;
    font-weight: 900;
    font-size: 1vw;
    pointer-events: none;
    user-select: none;
}

/* Language Panel Styles */
.language-panel {
    position: absolute;
    left: 50%;
    top: 72%;
    width: 18vw;
    height: calc(18vw * 0.21);
    transform: translateX(-50%);
}

.language-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.language-text {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #032F38;
    font-size: 1.5vw;
    font-family: english_font, sans-serif;
    font-weight: bold;
    width: auto;
}

.language-toggle {
    position: absolute;
    top: 50%;
    right: -3%;
    width: 6.875vw;
    height: calc(6.875vw * 0.4);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3vw;
    background-image: url('./sprites/languages/LanguageToggle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.language-toggle-button {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.language-toggle-img {
    position: absolute;
    top: 50%;
    left: 28%;
    width: 18%;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
    transition: transform 0.3s ease;
}

.language-flag-img {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 27.5%;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
    border-radius: 4px;
}

/* Language Selector Styles */
.language-selector {
    position: absolute;
    left: 0;
    top: calc(100% - 5.5vw);
    width: 100%;
    height: 18.75vw;
    z-index: 10001;
    background-color: transparent;
    background-image: url('./sprites/languages/LanguageBackground.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.35);
    transform-origin: center;
}

.language-selector-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
    display: none;
}

.language-options {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -6vw;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
    gap: 0.3vw;
    padding: 1.5vw 1vw 2vw 1vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10002;
}

.language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3vw;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex: 0 0 auto;
    position: relative;
}

.language-option:hover {
    transform: scale(1.1);
}

.language-option img {
    width: 1.6875vw;
    height: 1.6875vw;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    pointer-events: auto;
    transform: scale(1.265);
}

.language-option.selected img {
    border-color: transparent;
    box-shadow: none;
}

.language-option span {
    font-size: 0.4125vw;
    color: #032F38;
    font-family: english_font, sans-serif;
    font-weight: bold;
    text-align: center;
    pointer-events: auto;
}

.language-option.selected::after {
    content: '';
    position: absolute;
    bottom: -1.2vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0.8vw;
    height: 0.8vw;
    background-image: url('./sprites/languages/CheckMark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.main-menu-top-shadow {
    background-color: red;
    position: absolute;
    background-image: url("./sprites/main_menu/shadow.png");
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 20vh;
    /*background-color: rgba(5, 6, 34, 0.7);*/
    /* transform: translateX(50%) translateY(60%); */
    transform: translateX(50%) translateY(50%);
    /*transform-origin: center bottom;*/
    display: block;
    transform: rotate(180deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
}

.main-menu-bottom-shadow {
    position: absolute;
    background-image: url("./sprites/main_menu/shadow.png");
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 50%;
    /*background-color: rgba(5, 6, 34, 0.7);*/
    transform: translateX(-50%) translateY(60%);
    /*transform-origin: center bottom;*/
    display: block;
}

/* Alt menüdeki butonlar */
.bottom-menu {
    position: absolute;
    width: 40vw;
    height: 15vh;
    /*height: calc(40vw * 0.3);*/
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* display: flex;
    align-items: center;
    justify-content: space-around; */
    /*background-color: rgba(5, 6, 34, 0.7);*/
    /* background-color: red; */
}


.clear-button-container {
    position: fixed;
    bottom: 180px; /* Daha önce 20px idi, şimdi 80px yaparak aşağı aldım */
    right: 20px;
    z-index: 9999;
}

.clear-button {
    background-color: #ff3b30;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.clear-button:hover {
    background-color: #ff6b66;
    transform: scale(1.05);
}

.clear-button:active {
    transform: scale(0.95);
}


.character-unlock-continue-button {
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 15vw;
    height: calc(15vw * 0.44);
    background-color: transparent;
    border: none;
    transform: translateX(-50%) translateY(50%);
    display: none;
}


#joystick-container {
    touch-action: manipulation !important;
}

.staff-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url('sprites/main/bigBlueBg.png');
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(3px);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 1001;
}

/* Staff panel ve Player panel için ortak header stili */
.staff-header {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    background-color: rgba(0, 65, 131, 0.4);
    padding: 15px 0;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: none; /* Header'ı tıklanamaz yap */
}

/* Player panel stilleri - aynı özellikleri kullanacak */
.player-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url('sprites/main/bigBlueBg.png');
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(3px);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: none;
    z-index: 1001;
}

.player-panel .staff-coin-button.disabled {
    color: #464646;
    background-image: url('./sprites/staff/grayButton.png');
    cursor: not-allowed;
    filter: grayscale(100%);
}

.staff-coin-button:hover {
    transform: scale(1.12);
}

.player-panel .staff-coin-button.disabled img {
    filter: grayscale(100%);
    opacity: 1;
}

.staff-title {
    color: white;
    font-size: 40px;
    font-weight: bold;
    font-family: english_font, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: block !important;
}

.staff-close-button, .staff-close-button2 {
    position: fixed;
    width: 8%;  /* 10%'den 8%'e düşürdük */
    height: auto;
    top: 2.5%;    /* Animasyon sonundaki konum */
    right: 5%; /* Animasyon sonundaki konum */
    background-color: transparent;
    border: none;
    z-index: 10000; /* Panel'den daha yüksek z-index */
    cursor: pointer; /* Tıklanabilir olduğunu belirtmek için */  
    pointer-events: auto !important; /* Tıklamayı aktif etmek için */
    display: block !important;
    opacity: 1 !important;
    animation: none !important; /* Animasyondan etkilenmemesi için */
    transition: none !important; /* Geçiş efektlerinden etkilenmemesi için */
}

.staff-close-button img, .staff-close-button2 img {
    width: 35px;
    height: 35px;
    user-select: none;
    pointer-events: none;
    display: block !important;
}

.staff-close-button:hover, .staff-close-button2:hover {
    transform: scale(1.1);
}

.staff-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    padding: 2vw;
    width: 100%;
    height: auto;
    /* overflow-y: auto; */

    max-width: 50%; /* Container'ı sınırla */
    margin: 0 auto; /* Ortala */
    /* min-width: 500px; */
}

.staff-card {
    background-image: url('./sprites/staff/cardBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 1.5vw;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    position: relative;
    margin: 0 auto;

    /* min-width: 150px */
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./sprites/staff/passiveCardBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: auto;
    cursor: not-allowed;
}

/* F tuşuna basınca overlay'i kaldırmak için */
.staff-card.overlay-removed::before {
    display: none !important;
}

.staff-card-title {
    position: absolute;
    top: 0px; /* Kartın üst kısmından biraz yukarıda */
    left: 0;
    width: 100%;
    height: 50px;
    /* background-image: url('./sprites/staff/rectangle.png');
    background-size: 100% 100%;
    background-repeat: no-repeat; */
    white-space: nowrap; /* Yazının alt satıra kaymasını engeller */

    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: english_font, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.staff-card-image {
    margin-top: 35px; /* Başlığın altında kalan boşluğu ayarlamak için */
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    user-select: none;
    pointer-events: none;
}

.staff-progress-bar {
    display: flex;
    gap: 5px;
    margin: 10px 0;
    width: 70%; /* Container'ın tam genişliğini kullan */
    justify-content: center; /* Rectangle'ları ortala */
}

.progress-dot {
    width: 50px; /* Rectangle'ların genişliği */
    height: 15px; /* Rectangle'ların yüksekliği */
    background-image: url('./sprites/staff/empty.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.progress-dot.filled {
    background-image: url('./sprites/staff/blue.png');
}

.staff-video-button, .staff-coin-button {
    width: 80%;
    padding: 8px;
    margin: 5px 0;
    border: none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.staff-video-button:hover {
    transform: scale(1.12);
}

.staff-video-button {
    color: #9A3800;
    font-size: 15px;
    font-weight: bold;
    background-image: url('./sprites/staff/yellowButton2.png');
    justify-content: flex-start;
    padding-left: 8px;
}

.staff-coin-button {
    color: #005F0C;
    font-size: 15px;
    font-weight: bold;
    background-image: url('./sprites/staff/greenButton.png');
}

.staff-coin-button.disabled {
    /* background-color: #cccccc; */
    color: #626262;
    background-image: url('./sprites/staff/grayButton.png');
    cursor: not-allowed;
}

.staff-coin-button.disabled img {
    filter: grayscale(100%);
    opacity: 1;
}

.staff-video-button img {
    width: 15px;
    height: 15px;

    user-select: none;
    pointer-events: none;
}

.staff-coin-button img {
    width: 30px;
    height: 30px;

    user-select: none;
    pointer-events: none;
}

.staff-open-button {
    position: absolute;
    top: 18vh;
    right: 20px;
    width: 4.85vw;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.staff-open-button img {
    width: 100%;
    height: 100%;
}

.money-container {
    position: absolute;
    top: 15px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1001;
}

.money-bg {
    position: relative;
    background-image: url('./sprites/main/moneyBg.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* Merkeze hizalama */
}

.money-icon {
    position: absolute;
    left: -20px; /* Para ikonunu sol tarafa taşır ve biraz dışarı çıkarır */
    width: 60px;
    height: 60px;
    background-image: url('./sprites/main/money.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Skate Power-up Styles */
.skate-container {
    position: absolute;
    top: 75px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
}

.skate-bg {
    position: relative;
    background-image: url('./sprites/main/skateGloveBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 2;
}

.skate-bg {
    cursor: pointer;
}

.skate-bg.disabled {
    cursor: default;
    pointer-events: none;
}

.skate-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #032F38;
    z-index: 3;
    pointer-events: none;
}

.skate-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url('./sprites/main/skateMain.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.skate-progress-bar {
    width: 116px;
    height: 20px;
    background-color: #000;
    border-radius: 4px;
    margin-top: -10px;
    overflow: hidden;
    display: none;
    z-index: 1;
}

.skate-progress-fill {
    width: 0%;
    height: 94%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 4px;
    transition: width 0.1s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 1);
}

.skate-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: progressLight 2s infinite;
}

/* Glove Power-up Styles */
.glove-container {
    position: absolute;
    top: 135px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1001;
}

.glove-bg {
    position: relative;
    background-image: url('./sprites/main/skateGloveBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 2;
}

.glove-bg {
    cursor: pointer;
}

.glove-bg.disabled {
    cursor: default;
    pointer-events: none;
}

.glove-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #032F38;
    z-index: 3;
    pointer-events: none;
}

.glove-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url('./sprites/main/gloveMain.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.glove-progress-bar {
    width: 116px;
    height: 20px;
    background-color: #000;
    border-radius: 4px;
    margin-top: -10px;
    overflow: hidden;
    display: none;
    z-index: 1;
}

.glove-progress-fill {
    width: 0%;
    height: 94%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 4px;
    transition: width 0.1s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 1);
}

.glove-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: progressLight 2s infinite;
}

/* Power-up Animations */
@keyframes powerupRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-6deg); }
    50% { transform: translate(-50%, -50%) rotate(0deg); }
    75% { transform: translate(-50%, -50%) rotate(6deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes progressLight {
    0% { left: 100%; }
    100% { left: -100%; }
}

.skate-icon.active {
    animation: powerupRotate 3s ease-in-out infinite;
}

.glove-icon.active {
    animation: powerupRotate 3s ease-in-out infinite;
}

/* Tutorial Hand Cursor Styles */
.tutorial-hand-cursor {
    position: absolute;
    top: 80%;
    left: 0%;
    transform: translate(-50%, -30%);
    z-index: 10000;
    pointer-events: none;
}

.tutorial-hand-cursor img {
    width: 40px;
    height: 40px;
    animation: tutorialHandPulse 1.5s ease-in-out infinite;
}

@keyframes tutorialHandPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.money-amount {
    color: #333;
    font-family: english_font, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    white-space: nowrap;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 20px;
}

@keyframes shakeGold {
    0%, 100% {
        transform: translateX(0);
        scale: 1;
    }
    25% {
        transform: translateX(-2px);
        scale: 1.1;
    }
    50% {
        transform: translateX(2px);
        scale: 1.1;
    }
    75% {
        transform: translateX(-2px);
        scale: 1.05;
    }
}

.money-amount {
    color: #333; /* Koyu gri/siyah renk */
    font-family: english_font, sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center; /* Metni ortala */
    transform-origin: center;
    will-change: transform; /* Performans optimizasyonu */
}

/* Para miktarı animasyonu */
.money-amount-animation {
    transition: all 0.1s ease-in-out;
    filter: contrast(1.2) brightness(1.5);
    animation: moneyAmountGlow 0.5s infinite alternate ease-in-out;
}

@keyframes moneyAmountGlow {
    0% {
        text-shadow: 0 0 3px gold, 0 0 5px rgba(255, 215, 0, 0.5);
        filter: brightness(1) contrast(1);
    }
    100% {
        text-shadow: 0 0 8px gold, 0 0 12px rgba(255, 215, 0, 0.8);
        filter: brightness(2) contrast(0.8);
    }
}

/* Staff kartlarındaki butonların sırasını değiştir */
.staff-card {
    display: flex;
    flex-direction: column;
}

/* Butonların sırasını değiştir */
.staff-video-button {
    order: 2; /* Video (free) butonu ikinci sırada */
}

.staff-coin-button {
    order: 1; /* Coin butonu birinci sırada */
}


/* Splash screen kapanış animasyonları */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scaleDown {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
    }
    70% {
        transform: translateX(-50%) translateY(-50%) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) scale(0);
        opacity: 0;
    }
}

@keyframes flyUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes spinOut {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotate(720deg) scale(0);
        opacity: 0;
    }
}

.splash-screen.closing {
    animation: fadeOut 1s ease-in-out forwards;
}

.splash-screen-logo.closing {
    animation: scaleDown 0.8s ease-in-out forwards;
}

.splash-loading-text.closing {
    animation: flyUp 0.6s ease-in-out forwards;
}

.loading-spinner.closing {
    animation: spinOut 0.7s ease-in-out forwards;
}

/* X2 Speed Power-up Pop-up */
.speed-power-popup, .speed-power-popup2, .speed-power-popup3 {
    position: fixed;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4);
    width: 320px;
    height: 360px;
    background-image: url('./sprites/main/powerUpBg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: popUpAnimation 0.5s ease-out;
    border-radius: 30px;

      /* user-select: none;
    pointer-events: none; */
}

@keyframes popUpAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    70% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 1;
    }
}

.speed-power-title, .speed-power-title2, .speed-power-title3 {
    color: white;
    font-size: 34px;
    font-weight: bold;
    /* font-family: english_font, sans-serif; */
    font-family: english_font;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0px;
    text-align: center;
    width: 100%;
    position: relative;
    top: 15px;
}

.speed-power-image, .speed-power-image2, .speed-power-image3 {
    width: 320px;
    height: 320px;
    object-fit: contain;
    margin-top: 0px;
    top: -55px;
    position: relative;

      user-select: none;
    pointer-events: none;
}

.speed-power-button, .speed-power-button2, .speed-power-button3 {
    position: absolute;
    width: 180px;
    height: 60px;
    background-image: url('./sprites/main/blueButton.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    bottom: 60px;
    border-radius: 15px;
    /* Butonun etrafındaki beyazlığı kaldırmak için */
    background-color: transparent;
}

.speed-power-button:hover, .speed-power-button2:hover, .speed-power-button3:hover {
    transform: scale(1.1);
}

.speed-power-button-text {
    color: #00526D;
    font-size: 30px;
    font-weight: bold;
    font-family: english_font, sans-serif;
    margin-left: 25px;
}

.speed-power-video-icon {
    position: absolute;
    left: 40px;
    width: 30px;
    height: 30px;
    object-fit: contain;

      user-select: none;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .staff-cards-container {
        min-width: 500px;
    }

    .staff-card {
        min-width: 150px;
    }

    /* Desktop için tüm panelleri %20 küçült, merkeze konumlandır ve responsive yap */
    .staff-panel, .player-panel {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1200px;
        min-width: 600px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .player-skin-shop-panel {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        max-width: 1200px;
        min-width: 600px;
        height: 40%;
        box-sizing: border-box;
    }
}

/* Responsive tasarım için */
@media (max-width: 768px) {

    .clear-button-container {
        bottom: 180px;
        right: 10px;
    }
    
    .clear-button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .progress-dot {
        width: 40px;
        height: 12px;
    }

    .staff-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .staff-card {
        width: 80%;
        margin-bottom: 15px;
    }

    .staff-title {
        font-size: 20px;
    }

    .settings-button-container {
        width: 52.5px;
        height: 52.5px;
        position: fixed;
        top: 20px;
        left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .settings-button {
        width: 35px;
        height: 35px;
    }

    .level-bar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .money-bg {
        width: 100px;
        height: 35px;
        position: fixed;
        top: 10px;
        right: 10px;
    }

    .money-icon {
        width: 45px; /* Para ikonunu büyüttük */
        height: 45px;
        position: absolute;
        left: -15px; /* Sola biraz daha kaydırdık */
        top: -7px; /* Yukarı kaydırdık */
    }

    .money-amount {
        font-size: 18px;
        line-height: 35px; /* Text'i dikey olarak ortaladık */
    }

    /* Skate Power-up Responsive */
    .skate-container {
        top: 65px;
        right: 10px;
    }

    .skate-bg {
        width: 100px;
        height: 35px;
    }

    .skate-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .skate-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Glove Power-up Responsive */
    .glove-container {
        top: 115px;
        right: 10px;
    }

    .glove-bg {
        width: 100px;
        height: 35px;
    }

    .glove-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .glove-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Responsive number badges */
    .skate-badge,
    .glove-badge {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -4px;
        right: -4px;
    }

    .settings-button-container {
        width: 52.5px;
        height: 52.5px;
        position: fixed;
        top: 10px;
        left: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .settings-button {
        width: 35px;
        height: 35px;
        position: relative;
        left: 0;
        top: 0;
    }
}

@media (max-width: 480px) {
    .progress-dot {
        width: 30px;
        height: 10px;
    }
}

/* iPad Mini ve benzer çözünürlükler için özel düzenleme */
@media (max-width: 768px) and (pointer: coarse) {

    /* .star-icon {
        width: 40px;
        height: 40px;
    } */

    /* .progress-container {
        width: 140px;
        height: 22px;
    } */

    /* .level-number {
        font-size: 14px;
    } */

    /* .level-text {
        font-size: 12px;
        line-height: 22px;
    } */

    .shop-button-container {
        top: 100px;
        left: 20px;
    }
    
    .shop-bg {
        width: 100px;
        height: 35px;
    }
    
    .shop-icon {
        width: 40px;
        height: 40px;
        left: -10px;
    }
    
    .shop-text {
        font-size: 10px;
        margin-left: 3px;
    }
    

    .money-bg {
        width: 100px;
        height: 35px;
        position: fixed;
        top: 20px;  /* 10px'den 20px'e çıkarıldı */
        right: 20px;  /* 10px'den 20px'e çıkarıldı */
    }

    /* Skate Power-up Responsive for iPad */
    .skate-container {
        top: 75px;
        right: 20px;
    }

    .skate-bg {
        width: 100px;
        height: 35px;
    }

    .skate-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .skate-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Glove Power-up Responsive for iPad */
    .glove-container {
        top: 125px;
        right: 20px;
    }

    .glove-bg {
        width: 100px;
        height: 35px;
    }

    .glove-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .glove-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Responsive number badges for iPad */
    .skate-badge,
    .glove-badge {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -4px;
        right: -4px;
    }

    /* Tutorial hand cursor responsive for iPad */
    .tutorial-hand-cursor img {
        width: 35px;
        height: 35px;
    }
    
    .splash-loading-text {
        font-size: 3vw;
    }

    .splash-screen-logo {
        position: absolute;
        width: 50%;
        height: auto;
    }
    
    .leaderboard-button-panel {
        /* background-color: red; */
        top: 10vh;
        width: 18vw;
        height: 4.5vw;
    }

    .leaderboard-button {
        width: 18vw;
        height: 4.5vw;
    }

    .leaderboard-button-bg {
        width: 18vw;
        height: 4.5vw;
    }
    
    .leaderboard-icon {
        width: 3.6vw;
        height: 3.6vw;
    }
    
    .leaderboard-text {
        font-size: 1.98vw;
    }
    
    /* .level-text {
        font-size: 2.2vw;
    } */
    
    .settings-button-panel {
        top: 14vh;
        width: 4.85vw;
        height: auto;
    }
    
    .settings-bg {
        background-color: yellow;
        width: 60vw;
        height: calc(60vw * 0.82);
        /* pointer-events: none;
        user-select: none; */
    }

    .settings-header-text {
        font-size: 3.36vw;
    }

    .music-panel {
        /* background-color: yellow; */
        width: 43.2vw;
        height: calc(43.2vw * 0.21);
        top: 32%;
    }

    .music-text {
        font-size: 2.4vw;
    }

    .music-toggle {
        width: 16.8vw;
        height: calc(16.8vw * 0.4);
    }

    .sound-panel {
        width: 43.2vw;
        height: calc(43.2vw * 0.21);
        top: 52%;
    }

    .sound-text {
        font-size: 2.4vw;
    }

    .sound-toggle {
        width: 16.8vw;
        height: calc(16.8vw * 0.4);
    }

    .music-toggle-text,
    .sound-toggle-text {
        font-size: 2vw;
    }

    .language-panel {
        width: 43.2vw;
        height: calc(43.2vw * 0.21);
        top: 72%;
    }

    .language-text {
        font-size: 2.4vw;
    }

    .language-toggle {
        width: 17.1875vw;
        height: calc(17.1875vw * 0.4);
    }

    .language-selector {
        width: 43.2vw;
        height: 18.75vw;
        top: calc(100% + 0.5vw) !important;
    }

    .language-options {
        top: -4vw;
        padding: 1.5vw 1vw 2vw 1vw;
    }

    .language-option {
        flex: 0 0 auto;
    }

    .language-option img {
        width: 4.21875vw;
        height: 4.21875vw;
        transform: scale(1.265);
    }

    .language-option span {
        font-size: 1.03125vw;
    }

    .language-option.selected::after {
        width: 1vw;
        height: 1vw;
        bottom: -2vw;
    }

    .staff-panel {
        padding: 15px;
    }

    .staff-close-button, .staff-close-button2 {
        top: 2.5%;
        right: 5%; /* 5%'den 15%'e çıkardık - daha ortaya almak için */
    }

    .progress-container .level-text {
        font-size: 16px !important; /* 120px'den 16px'e düşürüldü */
        line-height: 28px !important;
        font-weight: bold;
        color: white;
    }

    /* .progress-container .level-text {
        font-size: 120px !important;
        font-weight: bold;
        color: white;
    } */

    /* .progress-container {
        width: 140px;
        height: 28px;
    } */

    .progress-container {
        width: 120px; /* Biraz genişlet */
        height: 28px;
    }

    .level-bar {
        top: 15px;
        transform: translateX(-50%) scale(1); /* Scale'i azalt ve pozisyonu ayarla */
    }

    .level-number {
        font-size: 20px; /* Star içindeki sayıyı büyüttük */
    }

    .star-icon {
        width: 48px; /* Biraz büyüt */
        height: 48px;
        margin-right: -16px; /* Margin'i de ayarla */
    }

    .level-number {
        font-size: 20px;
    }

    .staff-coin-button img {
        width: 20px; /* Daha küçük icon boyutu */
        height: 20px;
    }

    .staff-video-button, .staff-coin-button {
        width: 100%;
    }

    .staff-video-button img    {
        width: 12px; /* Daha küçük icon boyutu */
        height: 12px;
    }

    .staff-video-button,
    .staff-coin-button {
        padding: 6px 12px;
        font-size: 15px;
    }

    .staff-video-button {
        padding-left: 8px;
    }

    .warning-icon {
        width: 18px !important;
        height: 18px !important;
        top: -5px;
        right: 2px;
    }

     /* Grid yapısını desktop'taki gibi 3 sütunlu yapalım */
     .staff-cards-container {
        flex-direction: row; /* column yerine row yapıyoruz */
        grid-template-columns: repeat(3, 1fr); /* 3 sütunlu grid */
        gap: 20px;
        align-items: stretch;

        max-width: 100%;
        margin: 0;
    }

    .staff-card {
        width: 100%; /* Container'ın içinde tam genişlik */
        margin-bottom: 0; /* Alt margin'i kaldırıyoruz */
    }

    /* Panel başlığı boyutunu ayarlayalım */
    .staff-title {
        font-size: 24px;
    }

    /* Staff butonunun boyutunu desktop'taki gibi yapalım */
    .staff-open-button {
        width: 4.85vw;
        height: auto;
        top: 18vh;
        right: 20px;
    }

    /* Card içindeki elementlerin boyutlarını ayarlayalım */
    .staff-card-title {
        font-size: 18px;
    }

    .staff-card-image {
        width: 80px;
        height: 80px;
    }

    .staff-progress-bar {
        gap: 5px;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
    }

    /* Video ve coin butonlarının boyutlarını ayarlayalım */
    .staff-video-button,
    .staff-coin-button {
        padding: 8px 15px;
        font-size: 15px;
    }

    .staff-video-button {
        padding-left: 10px;
    }

    /* Panel boyutunu desktop'taki gibi yapalım */
    .staff-bg {
        width: 60vw;
        height: calc(60vw * 0.82);
    }
}

/* Daha küçük ekranlar için */
@media (max-width: 480px) and (pointer: coarse) {

    /* .level-bar {
        transform: translateX(-60%) scale(1);
    } */

      .shop-button-container {
        top: 90px;
        left: 15px;
    }
    
    .shop-bg {
        width: 90px;
        height: 30px;
    }
    
    .shop-icon {
        width: 35px;
        height: 35px;
        left: -8px;
    }
    
    .shop-text {
        font-size: 10px;
        margin-left: 3px;
    }

    .progress-container {
        width: 100px; /* Biraz genişlet */
        height: 26px;
    }

    /* .progress-container .level-text {
        font-size: 18px !important;
        line-height: 26px !important;
    } */

    .staff-coin-button img {
        width: 20px; /* Daha küçük icon boyutu */
        height: 20px;
    }

    .staff-video-button img    {
        width: 12px; /* Daha küçük icon boyutu */
        height: 12px;
    }

    .progress-container .level-text {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .staff-close-button, .staff-close-button2 {
        top: 2.5%;   
        right: 5%; /* 5%'den 15%'e çıkardık - daha ortaya almak için */
    }

    /* .level-bar {
        transform: translateX(-50%) scale(0.8);
    } */

    .staff-cards-container {
        gap: 1.5vw;
    }

    .staff-card-title {
        font-size: 2.5vw; /* Daha küçük ekranlarda yazı boyutunu küçült */
        height: 35px; /* Başlık yüksekliğini ayarla */
    }

    .staff-video-button{
        font-size: 2.5vw;
        padding-left: 1.5vw;
    }

     .staff-coin-button {
        font-size: 3.5vw;
    }

    .money-bg {
        width: 80px;
        height: 30px;
        top: 32px;
        right: 10px;
    }

    .money-icon {
        width: 45px; /* Para ikonu boyutunu koruduk */
        height: 45px;
        left: -15px;
        top: -8px;
    }

    .money-amount {
        font-size: 16px;
        margin-left: 18px;
        margin-bottom: 2px;
        line-height: 30px; /* Text'i dikey olarak ortaladık */
    }

    /* Skate Power-up Responsive for Mobile */
    .skate-container {
        top: 82px;
        right: 10px;
    }

    .skate-bg {
        width: 80px;
        height: 30px;
    }

    .skate-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .skate-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Glove Power-up Responsive for Mobile */
    .glove-container {
        top: 127px;
        right: 10px;
    }

    .glove-bg {
        width: 80px;
        height: 30px;
    }

    .glove-icon {
        width: 45px;
        height: 45px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .glove-progress-bar {
        width: 77.5px;
        height: 15px;
        margin-top: -7px;
    }

    /* Responsive number badges for Mobile */
    .skate-badge,
    .glove-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }

    /* Tutorial hand cursor responsive for Mobile */
    .tutorial-hand-cursor img {
        width: 30px;
        height: 30px;
    }

    .settings-button-container {
        width: 45px;
        height: 45px;
        top: 35px;
        left: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .settings-button {
        width: 30px;
        height: 30px;
    }

    .level-bar {
        top: 20px;
        transform: translateX(-60%) scale(0.9);
    }

    .music-toggle-text,
    .sound-toggle-text {
        font-size: 2vw;
    }
}

/* Para animasyonu için CSS */
.flying-money-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.flying-money-element {
    position: absolute;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    z-index: 10000;
}

/* Para animasyonu için CSS */
.money-shake-animation {
    animation: moneyShake 0.3s infinite alternate ease-in-out;
}

.money-glow-animation {
    animation: moneyGlow 1s ease-in-out;
}

@keyframes moneyShake {
    0% {
        transform: translateX(-2px) scale(1);
    }
    25% {
        transform: translateX(0px) scale(1.05);
    }
    50% {
        transform: translateX(2px) scale(1);
    }
    75% {
        transform: translateX(0px) scale(1.05);
    }
    100% {
        transform: translateX(-2px) scale(1);
    }
}

@keyframes moneyGlow {
    0% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.5) drop-shadow(0 0 10px gold);
        transform: scale(1.2);
    }
    100% {
        filter: brightness(1);
        transform: scale(1);
    }
}

/* Çalışan İstifa Ekranı Stilleri */
.employee-resignation-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.resignation-panel-content {
    position: relative;
    /* height: 85%; */
    width: 100%;
    max-width: 500px;
    background-color: #fff5e6;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #8b4513;
    transform: scale(0.6);
}

.resignation-header {
    background-color: #ff6347;
    color: white;
    font-size: 45px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Supercell', sans-serif;
}

.resignation-message {
    color: rgb(0, 0, 0);
    font-size: 21px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.5;
    font-family: 'Supercell', sans-serif;
}

.resignation-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 30px 0;
}

.resignation-illustration-image {
    width: 80%;
    max-width: 300px;
    height: auto;
}

.resignation-video-button {
    background-image: url('./sprites/staff/yellowButton.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    width: 50%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8b4513;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    font-family: 'Supercell', sans-serif;
    padding: 0 20px;
}

.resignation-video-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.resignation-video-button:hover {
    transform: scale(1.1);
}

.resignation-goodbye-button {
    background-color: transparent;
    border: none;
    color: #4a4a4a;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: underline;
    margin-top: 10px;
    font-family: 'Supercell', sans-serif;
}

.resignation-goodbye-button:hover {
    color: #000;
}

/* Mobil cihazlar için uyarlama */
@media (max-width: 768px) {
    .resignation-panel-content {
        width: 90%;
    }
    
    .resignation-header {
        font-size: 28px;
    }
    
    .resignation-message {
        font-size: 16px;
    }
    
    .resignation-video-button {
        font-size: 20px;
        height: 50px;
    }
    
    .resignation-goodbye-button {
        font-size: 16px;
    }
}

/* İstifa Paneli Animasyonları */
.employee-resignation-panel {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

.panel-animation {
    animation: panelShake 0.5s ease-out;
}

@keyframes panelShake {
    0% { transform: scale(1) rotate(0deg); }
    10% { transform: scale(1.05) rotate(2deg); }
    20% { transform: scale(1.05) rotate(-2deg); }
    30% { transform: scale(1.05) rotate(2deg); }
    40% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Buton Animasyonları */
.pulse-animation {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Arka plan bulanıklığı */
body.blur-background::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* İstifa paneli butonları için hover efektleri */
#resignation-video-button, #resignation-goodbye-button {
    transition: all 0.2s ease;
}

#resignation-video-button:hover, #resignation-goodbye-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

#resignation-video-button:active, #resignation-goodbye-button:active {
    transform: scale(0.95);
}

/* Başlangıç ekranı stilleri - animasyon kaldırıldı */
.start-game-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Başlangıçta tamamen siyah */
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.5s ease-in-out; /* Geçiş efekti için */
}

.start-game-content {
    text-align: center;
    color: white;
    font-family: english_font, sans-serif;
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.8s ease-in-out; /* Yumuşak geçiş */
}

.start-game-content.visible {
    opacity: 1; /* Görünür hale geldiğinde */
}

.start-game-content h1 {
    font-size: 4vw;
    margin-bottom: 20px;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    animation: pulse 1.5s infinite alternate;
}

.start-game-content p {
    font-size: 2vw;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Player Skin Shop Panel Styles */
.player-skin-shop-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Ekranın yarısını kaplasın */
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    z-index: 10001;
    border-radius: 20px 20px 0 0; /* Üst köşeleri yuvarlak */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);

    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

/* Açılış animasyonu */
@keyframes panelFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.7);
    }
}

/* Kapanış animasyonu */
@keyframes panelFadeOut {
    from {
        opacity: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.7);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
        background-color: rgba(0, 0, 0, 0);
    }
}

.player-skin-shop-panel.opening {
    animation-name: panelFadeIn;
}

.player-skin-shop-panel.closing {
    animation-name: panelFadeOut;
}

.player-skin-shop-header {
    background-color: #003366;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #002244;
    border-radius: 20px 20px 0 0;

      animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

.player-skin-shop-title {
    font-family: english_font, sans-serif;
    font-size: 28px;
    margin: 0;
}

.player-skin-shop-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
}

.player-skin-shop-close img {
    width: 100%;
    height: 100%;
}

.player-skin-shop-grid-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #039CFD;
}

.player-skin-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC için 3 kolon */
    gap: 10px; /* Kartlar arası boşluğu azalttım */
    max-width: 800px;
    margin: 0 auto;

      animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

.player-skin-card {
    background-image: url('./sprites/skinRoom/GridCard.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 200px; /* Biraz daha daraltıldı */
    width: 100%; /* Tam genişlik */
    margin: 0 auto;
}

/* Başlık ve grid için açılış animasyonu */
@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Başlık ve grid için kapanış animasyonu */
@keyframes contentSlideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.player-skin-shop-header.opening,
.player-skin-shop-grid.opening {
    animation-name: contentSlideIn;
    opacity: 0;
}

.player-skin-shop-header.closing,
.player-skin-shop-grid.closing {
    animation-name: contentSlideOut;
}

.player-skin-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 10px;
}

.player-skin-stat {
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.player-skin-stat img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.player-skin-image-container {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.player-skin-image {
    max-width: 125%;
    max-height: 125%;
    margin-top: 20px;
    object-fit: contain;
}

.player-skin-button {
    width: 70%;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-family: english_font, sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    margin-top: 10px;
}

.player-skin-select-button.selected {
    color: white; /* Selected yazısını beyaz yap */
    font-weight: bold;
}

.player-skin-select-button {
    background-image: url('./sprites/staff/blueButton.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: white; /* Tüm select butonlarının yazı rengini beyaz yap */
    background-color: transparent;
}


.player-skin-select2-button.selected {
    color: white; /* Selected yazısını beyaz yap */
    font-weight: bold;
}

.player-skin-select2-button {
    background-image: url('./sprites/staff/selectedButton.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: white; /* Tüm select butonlarının yazı rengini beyaz yap */
    background-color: transparent;
}

.player-skin-video-button {
    background-image: url('./sprites/staff/yellowButton.png');
    background-size: 100% 100%;
    color: #9A3800;
    background-color: transparent;
}

.player-skin-coin-button {
    background-image: url('./sprites/staff/greenButton.png');
    background-size: 100% 100%;
    color: #005F0C;
    background-color: transparent;
}

.player-skin-locked-button {
    background-image: url('./sprites/staff/grayButton.png');
    background-size: 100% 100%;
    background-color: transparent;
    cursor: not-allowed;
    display: flex;
    justify-content: flex-start; /* Sol hizalama */
    align-items: center;
    padding-left: 8px; /* Sol boşluk bırakmak için */
}

.player-skin-locked-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.player-skin-button-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.player-skin-selected-icon {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

/* Tablet için medya sorgusu */
@media (max-width: 768px) {
    .player-skin-shop-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2 kolon */
        gap: 8px; /* Daha az boşluk */
        max-width: 100%; /* Tam genişlik */
    }
    
    .player-skin-card {
        max-width: 180px; /* Daha dar kartlar */
        padding: 10px;
    }
    
    .player-skin-image-container {
        height: 90px; /* Daha küçük görsel alanı */
    }
    
    .player-skin-button {
        height: 32px; /* Daha küçük buton */
        font-size: 12px; /* Daha küçük yazı */
    }
    
    .player-skin-stat {
        font-size: 12px; /* Daha küçük stat yazısı */
    }
    
    .player-skin-stat img {
        width: 16px; /* Daha küçük ikon */
        height: 16px;
    }
}

/* Mobil için medya sorgusu - 480px'den küçük ekranlar için */
@media (max-width: 480px) {
    .player-skin-shop-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobil için de 2 kolon */
        gap: 6px; /* Çok daha az boşluk */
    }
    
    .player-skin-card {
        max-width: 150px; /* Daha da dar kartlar */
        padding: 8px;
    }
    
    .player-skin-image-container {
        height: 80px; /* Daha da küçük görsel alanı */
    }
    
    .player-skin-button {
        height: 30px; /* Daha da küçük buton */
        font-size: 11px; /* Daha da küçük yazı */
        width: 80%; /* Buton genişliğini artır */
    }
    
    .player-skin-button-icon {
        width: 16px;
        height: 16px;
    }
    
    .player-skin-selected-icon {
        width: 16px;
        height: 16px;
    }
}

/* Money Bag ödül kutusu stilleri */
.reward-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
   
}

.reward-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.7);

    transform: scale(1.5);
}

.reward-amount {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Supercell', sans-serif;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
}

/* Shop butonu için pulse animasyonu - yeni versiyon */
@keyframes shopPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.shop-button-container:hover {
    animation: none; /* Hover durumunda animasyonu durdur */
}

/* Landscape Mode Warning Panel */
.landscape-warning-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    pointer-events: auto;
}

.landscape-warning-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.landscape-warning-icon {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landscape-warning-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landscape-warning-text {
    font-size: 24px;
    color: white;
    font-weight: bold;
    font-family: 'Supercell', sans-serif;
    max-width: 80%;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}