/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-x;
}

/* Panoramik Konteyner */
.panoramic-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.panoramic-scene {
    position: absolute;
    width: 120vw; /* Daha küçük bir panoramik görünüm */
    height: 100%;
    left: 0;
    transition: left 0.3s ease-out;
    -webkit-transition: left 0.3s ease-out;
    -moz-transition: left 0.3s ease-out;
    will-change: left;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

/* Arka Plan */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Karakterler */
.character {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Hover efektinde yakınlaşma kaldırıldı */

.character-normal, .character-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
}

.character-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.character:hover .character-normal {
    opacity: 0;
}

.character:hover .character-hover {
    opacity: 1;
}

/* Karakter Konumları ve Görselleri - Görseldeki gerçek konumlara göre ayarlandı */

/* Mendil - Sol taraftaki kutu taşıyan çocuk */
.character-1 {
    left: 3%;
    bottom: 0%;
    width: 400px;
    height: 600px;
    z-index: 10;
}

.character-1 .character-normal {
    background-image: url('../images/character-1.png');
}

.character-1 .character-hover {
    background-image: url('../images/character-hover-1.png');
}

/* Boya - Şimdi Karakter 3'ün yerinde (Ortada sağda) */
.character-2 {
    left: 45%;
    bottom: -10%;
    width: 450px;
    height: 600px;
    z-index: 10;
}

.character-2 .character-normal {
    background-image: url('../images/character-2.png');
}

.character-2 .character-hover {
    background-image: url('../images/character-hover-2.png');
}

/* Camsil - Şimdi Karakter 4'ün yerinde (Sağ tarafta) */
.character-3 {
    left: 75%;
    bottom:-5%;
    width: 450px;
    height: 550px;
    z-index: 10;
}

.character-3 .character-normal {
    background-image: url('../images/character-3.png');
}

.character-3 .character-hover {
    background-image: url('../images/character-hover-3.png');
}

/* Simit - Şimdi Karakter 2'nin yerinde (Ortada solda) */
.character-4 {
    left: 30%;
    bottom: 5%;
    width: 400px;
    height: 600px;
    z-index: 10;
}

.character-4 .character-normal {
    background-image: url('../images/character-4.png');
}

.character-4 .character-hover {
    background-image: url('../images/character-hover-4.png');
}

/* Tabelalar */
.sign {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sign-normal, .sign-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sign-normal {
    opacity: 1; /* Normal tabela her zaman görünecek */
}

.sign-light {
    opacity: 0; /* Işıklı hali animasyonla gelip gidecek */
    pointer-events: none; /* Tıklamaları normal tabelaya geçirecek */
}

/* Tabela 1 - BANKA - Sol taraftaki sarı neon tabela */
.sign-1 {
    left: -1%;
    top: 13%;
    width: 360px;
    height: 150px;
    z-index: 5;
}

.sign-1 .sign-normal {
    background-image: url('../images/tabela-3.png');
}

.sign-1 .sign-light {
    background-image: url('../images/tabela-isikli-3.png');
    animation: blink1 8s infinite;
    animation-delay: 0.5s;
}

/* Tabela 2 - LÖSEV - Ortadaki mavi tabela */
.sign-2 {
    left: 38%;
    top: 27%;
    width: 400px;
    height: 200px;
    z-index: 5;
}

.sign-2 .sign-normal {
    background-image: url('../images/tabela-1.png');
}

.sign-2 .sign-light {
    background-image: url('../images/tabela-isikli-1.png');
    animation: blink2 10s infinite;
    animation-delay: 3s;
}

/* Tabela 3 - Darüşşafaka - Sağ taraftaki yeşil tabela */
.sign-3 {
    left: 48%;
    top: 27%;
    width: 400px;
    height: 200px;
    z-index: 5;
}

.sign-3 .sign-normal {
    background-image: url('../images/tabela-2.png');
}

.sign-3 .sign-light {
    background-image: url('../images/tabela-isikli-2.png');
    animation: blink3 12s infinite;
    animation-delay: 5s;
}

/* Animasyonlar */
/* Korku filmi tarzında kesik kesik yanıp sönen sokak lambası efekti */
@keyframes blink1 {
    0% { opacity: 0; }
    1% { opacity: 1; }
    3% { opacity: 0; }
    5% { opacity: 0; }
    6% { opacity: 1; }
    9% { opacity: 0; }
    11% { opacity: 0; }
    12% { opacity: 0.4; }
    14% { opacity: 1; }
    16% { opacity: 0; }
    50% { opacity: 0; }
    51% { opacity: 0.7; }
    53% { opacity: 0; }
    57% { opacity: 0; }
    58% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes blink2 {
    0% { opacity: 0; }
    2% { opacity: 1; }
    4% { opacity: 0; }
    30% { opacity: 0; }
    32% { opacity: 0.8; }
    33% { opacity: 0; }
    34% { opacity: 0.4; }
    36% { opacity: 1; }
    38% { opacity: 0; }
    70% { opacity: 0; }
    72% { opacity: 1; }
    74% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes blink3 {
    0% { opacity: 0; }
    3% { opacity: 1; }
    5% { opacity: 0; }
    7% { opacity: 0.7; }
    9% { opacity: 0; }
    40% { opacity: 0; }
    43% { opacity: 1; }
    45% { opacity: 0; }
    80% { opacity: 0; }
    83% { opacity: 0.8; }
    84% { opacity: 0; }
    85% { opacity: 1; }
    87% { opacity: 0; }
    100% { opacity: 0; }
}

/* Düşünce Balonları - Genel Stil */
.thought-bubble {
    position: absolute;
    background-color: white;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 200px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    border: 2px solid #000;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Her karakter için özel konumlandırma */
/* Karakter 1 (Mendil) - Sol taraftaki karakter */
.thought-bubble-1 {
    top: 0px;      /* Karakterin başının hemen üstünde */
    left: 70%;       /* Karakterin ortasından biraz sola */
    transform: translateX(0);
}

/* Karakter 2 (Boya) - Ortada solda olan karakter */
.thought-bubble-2 {
    top: 30px;      /* Karakterin başının hemen üstünde */
    left: 40%;       /* Karakterin ortasından biraz sola */
    transform: translateX(0);
}

/* Karakter 3 (Camsil) - Sağ taraftaki karakter */
.thought-bubble-3 {
    top: 0px;      /* Karakterin başının hemen üstünde */
    left: 30%;       /* Karakterin ortasından biraz sağa */
    transform: translateX(0);
}

/* Karakter 4 (Simit) - Ortada sağda olan karakter */
.thought-bubble-4 {
    top: 130px;      /* Karakterin başının hemen üstünde */
    left: 10%;       /* Karakterin ortası */
    transform: translateX(0);
}

/* Düşünce balonu için küçük daireler - Genel */
.thought-bubble:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: white;
    border: 2px solid #000;
    border-radius: 50%;
}

.thought-bubble:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border: 2px solid #000;
    border-radius: 50%;
}

/* En küçük daire - Genel */
.thought-bubble .bubble-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: white;
    border: 1px solid #000;
    border-radius: 50%;
}

/* Her karakter için özel daire konumlandırması */
/* Karakter 1 (Mendil) - Düşünce balonu daireleri */
.thought-bubble-1:before {
    bottom: -20px;    /* Büyük daire - balona yakın */
    left: 30%;        /* Balonun sol tarafında */
}

.thought-bubble-1:after {
    bottom: -30px;    /* Orta daire - ortada */
    left: 25%;        /* Balonun sol tarafında */
}

.thought-bubble-1 .bubble-dot {
    bottom: -38px;    /* Küçük daire - karaktere en yakın */
    left: 20%;        /* Balonun sol tarafında */
}

/* Karakter 2 (Boya) - Düşünce balonu daireleri */
.thought-bubble-2:before {
    bottom: -20px;    /* Büyük daire - balona yakın */
    left: 40%;        /* Balonun sol tarafında */
}

.thought-bubble-2:after {
    bottom: -30px;    /* Orta daire - ortada */
    left: 35%;        /* Balonun sol tarafında */
}

.thought-bubble-2 .bubble-dot {
    bottom: -38px;    /* Küçük daire - karaktere en yakın */
    left: 30%;        /* Balonun sol tarafında */
}

/* Karakter 3 (Camsil) - Düşünce balonu daireleri */
.thought-bubble-3:before {
    bottom: -20px;    /* Büyük daire - balona yakın */
    left: 60%;        /* Balonun sağ tarafında */
}

.thought-bubble-3:after {
    bottom: -30px;    /* Orta daire - ortada */
    left: 65%;        /* Balonun sağ tarafında */
}

.thought-bubble-3 .bubble-dot {
    bottom: -38px;    /* Küçük daire - karaktere en yakın */
    left: 70%;        /* Balonun sağ tarafında */
}

/* Karakter 4 (Simit) - Düşünce balonu daireleri */
.thought-bubble-4:before {
    bottom: -20px;    /* Büyük daire - balona yakın */
    left: 50%;        /* Balonun ortasında */
}

.thought-bubble-4:after {
    bottom: -30px;    /* Orta daire - ortada */
    left: 55%;        /* Balonun sağ tarafında */
}

.thought-bubble-4 .bubble-dot {
    bottom: -38px;    /* Küçük daire - karaktere en yakın */
    left: 60%;        /* Balonun sağ tarafında */
}

.thought-text {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: none;
}

.thought-text.active {
    display: block;
}

/* Hover Balonları - Genel Stil */
.hover-bubble {
    position: absolute;
    background-color: #FFD700;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 10px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 200px;
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Her karakter için özel hover balonu konumlandırması */
.hover-bubble-1 { /* mendil */
    top: 20px;
    left: 50%;
    transform: translateX(0);
}

.hover-bubble-2 { /* boya */
    top: 60px;
    left: 30%;
    transform: translateX(0);
}

.hover-bubble-3 { /* camsil */
    top: 0px;
    left: 40%;
    transform: translateX(0);
}

.hover-bubble-4 { /* simit */
    top: 130px;
    left: 20%;
    transform: translateX(0);
}

/* Hover balonu uç genç */
.hover-bubble:after {
    content: '';
    position: absolute;
    border-width: 10px;
    border-style: solid;
    border-color: #FFD700 transparent transparent transparent;
}

/* Her karakter için özel uçgen konumlandırması */
.hover-bubble-1:after {
    top: 100%;
    left: 30%;
}

.hover-bubble-2:after {
    top: 100%;
    left: 40%;
}

.hover-bubble-3:after {
    top: 100%;
    left: 60%;
}

.hover-bubble-4:after {
    top: 100%;
    left: 50%;
}

.hover-bubble p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Karakter hover durumunda hover balonunu göster ve düşünce balonunu gizle */
.character:hover .hover-bubble {
    opacity: 1;
}

.character:hover .thought-bubble {
    opacity: 0 !important;
}

/* Yaprak Animasyonu */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 0 auto;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 2001;
}

/* Cartoon Paper Stili */
.cartoon-paper {
    background-color: #fff9e6;
    border: 8px solid #f8d56b;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-1deg);
}

.cartoon-paper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed #e5a83b;
    border-radius: 12px;
    pointer-events: none;
}

.cartoon-paper h2 {
    color: #e5623b;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.cartoon-paper p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

/* Üst Menü Butonları */
.top-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.menu-button {
    background-color: #f8d56b;
    color: #333;
    border: 2px solid #e5a83b;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.menu-button:hover {
    background-color: #e5a83b;
    transform: translateY(-2px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

/* Navigasyon Okları */
.navigation-arrows {
    position: fixed;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.navigation-arrows button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.navigation-arrows button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Ses Kontrolleri */
.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.audio-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.audio-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Navigasyon Okları */
.navigation-arrows {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000;
}

.navigation-arrows button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 40px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1000;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    outline: none;
}

.navigation-arrows button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    -webkit-transform: translateY(-50%) scale(1.1);
    -moz-transform: translateY(-50%) scale(1.1);
}

.navigation-arrows button:active {
    transform: translateY(-50%) scale(0.95);
    -webkit-transform: translateY(-50%) scale(0.95);
    -moz-transform: translateY(-50%) scale(0.95);
}

#leftArrow {
    left: 20px;
}

#rightArrow {
    right: 20px;
}

/* Mobil cihazlarda okları daha belirgin yap */
@media (max-width: 768px) {
    .navigation-arrows button {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }
    
    #leftArrow {
        left: 10px;
    }
    
    #rightArrow {
        right: 10px;
    }
}

/* Kaydırma Bilgisi */
.swipe-info {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    font-size: 16px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInOut 4s forwards;
    -webkit-animation: fadeInOut 4s forwards;
    -moz-animation: fadeInOut 4s forwards;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-webkit-keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@-moz-keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .panoramic-scene {
        width: 300vw; /* Mobil cihazlarda daha geniş */
    }
    
    /* Mobilde kaydırma bilgisini göster */
    .swipe-info {
        display: block;
    }
    
    /* Karakterlerin konumlarını mobilde düzelt */
    /* Mendil - Sol taraftaki kutu taşıyan çocuk */
    .character-1 {
        left: 3%;
        bottom: 0%;
        width: 400px;
        height: 600px;
    }
    
    /* Boya - Ortada sağda */
    .character-2 {
        left: 45%;
        bottom: -10%;
        width: 450px;
        height: 600px;
    }
    
    /* Camsil - Sağ tarafta */
    .character-3 {
        left: 75%;
        bottom: -5%;
        width: 450px;
        height: 550px;
    }
    
    /* Simit - Ortada solda */
    .character-4 {
        left: 30%;
        bottom: 5%;
        width: 400px;
        height: 550px;
    }
    
    /* Tabelaların boyutlarını küçült */
    .sign-1 {
        left: -1%;
        top: 13%;
        width: 300px;
        height: 125px;
    }
    
    .sign-2 {
        left: 38%;
        top: 27%;
        width: 330px;
        height: 165px;
    }
    
    .sign-3 {
        left: 48%;
        top: 27%;
        width: 330px;
        height: 165px;
    }
    
    /* Düşünce balonlarının konumlarını ayarla - sabit konumlar */
    .thought-bubble-1 {
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .thought-bubble-2 {
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .thought-bubble-3 {
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .thought-bubble-4 {
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Hover balonlarının konumlarını ayarla - sabit konumlar */
    .hover-bubble-1 {
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hover-bubble-2 {
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hover-bubble-3 {
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hover-bubble-4 {
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Hover balonu uçgen konumlarını ayarla */
    .hover-bubble-1:after, .hover-bubble-2:after, .hover-bubble-3:after, .hover-bubble-4:after {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Navigasyon oklarını daha belirgin yap */
    .navigation-arrows button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Daha küçük mobil cihazlar için */
@media (max-width: 480px) {
    .panoramic-scene {
        width: 400vw; /* Daha küçük cihazlarda daha geniş */
    }
    
    /* Karakterlerin ve balonların boyutlarını küçültme - bilgisayar formatıyla aynı kalacak */
    
    /* Metin boyutları bilgisayar formatıyla aynı */
    .thought-text, .hover-bubble p {
        font-size: 14px;
    }
    
    /* Düşünce balonu dairelerinin konumlarını ayarla */
    /* Tüm karakterler için düşünce balonu daireleri */
    .thought-bubble:before {
        bottom: -20px;
        left: 50%;
        transform: translateX(-10px);
    }
    
    .thought-bubble:after {
        bottom: -30px;
        left: 50%;
        transform: translateX(-5px);
    }
    
    .thought-bubble .bubble-dot {
        bottom: -38px;
        left: 50%;
        transform: translateX(0);
    }
}
