/* Prevent pull-to-refresh on mobile */
html, body { overscroll-behavior-y: none !important; overscroll-behavior-x: none !important; }
/* ==========================================================================
   1. DEĞİŞKENLER VE SIFIRLAMA (RESET)
   ========================================================================== */
/* --- TEMEL AYARLAR --- */
:root {
    --neon-blue: #45f3ff;
    --neon-red: #ff003c;
    --neon-green: #0f0;
    --neon-yellow: #f1c40f;
    --bg-dark: #090a0f;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
  /* Safe area and 100dvh adjustments for mobile notches */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  margin: 0;
    padding-top: env(safe-area-inset-top) !important;
width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hareketli Yıldız Katmanı */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes starsMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-70%);
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    z-index: -1;
}

.hidden {
    display: none !important;
}

/* --- LOBİ PANELİ (GENİŞ/KISA PC MODU) --- */
.glass-panel {
    background: rgba(10, 20, 40, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(69, 243, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    z-index: 1000;
}

.neon-text {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    margin-bottom: 1.5rem;
}

/* Form Elemanları */
input[type="text"] {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus {
    outline: none;
    box-shadow: 0 0 15px var(--neon-blue);
    background: rgba(0, 0, 0, 0.7);
}

.neon-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    font-family: 'Orbitron', sans-serif;
    background: transparent;
    color: var(--neon-blue);
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.neon-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 30px var(--neon-blue);
}

/* Radio / Toggle Butonlar */
.neon-toggle-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.neon-toggle {
    flex: 1;
    cursor: pointer;
}

.neon-toggle input {
    display: none;
}

.toggle-text {
    display: block;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(69, 243, 255, 0.3);
    border-radius: 8px;
    color: rgba(69, 243, 255, 0.5);
    font-size: 0.8rem;
    transition: var(--transition);
}

.neon-toggle input:checked+.toggle-text {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* ==========================================================================
/* --- OYUN EKRANI (RADAR + SAVAŞ ALANI) --- */
#gameScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 2000;
    background: var(--bg-dark);
}

#gameScreen:not(.hidden) {
    display: flex !important;
}

/* --- HUD Üst Kısım Tasarımı --- */
.hud {
    width: 100%;
    height: 100px;
    /* Sabit yükseklik: Kelime çıkış noktasını korur */
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--neon-blue);
    padding: 10px 20px;
    z-index: 1000;
    flex-shrink: 0;
}

.hud-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- ORTA: SKOR --- */
.hud-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- SOL: WPM & COMBO --- */
.hud-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

/* --- SAĞ: KALKAN / SÜRE (Lobiye Dön Butonu İçin Boşluklu) --- */
.hud-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    padding-right: 250px;
}

@media (max-width: 950px), (max-height: 600px) {
    .hud-right {
        padding-right: 70px;
    }
}

.combo-box {
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
    font-size: 1.2rem;
}

.room-tag {
    text-align: center;
    font-size: 0.7rem;
    color: var(--neon-blue);
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Can Barı Sistemi */
.health-container {
    width: 100%;
    max-width: 200px;
}

.health-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    overflow: hidden;
}

.health-fill {
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    transition: width 0.4s ease;
}

.health-container.danger .health-fill {
    background: var(--neon-red);
    animation: pulse 0.5s infinite alternate;
}

/* Metin Renkleri */
.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.neon-text-yellow {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}

/* ==========================================================================
   4. OYUN ALANI VE ŞERİTLER (LANES)
   ========================================================================== */
/* --- OYUN ALANI (LANES) GÜNCELLEME --- */
.space-lanes {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Alt tarafa güvenli bir boşluk ekliyoruz */
    padding-bottom: 50px;
}
/* --- Karışıklık Giderici Diğer Ayarlar --- */
.stat-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.stats-info {
    font-size: 0.75rem;
    color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.player-lane {
    flex: 1;
    height: 100%;
    position: relative;
    border-left: 1px solid rgba(69, 243, 255, 0.1);
    border-right: 1px solid rgba(69, 243, 255, 0.1);
        background: url('https://www.transparenttextures.com/patterns/stardust.png');
                    border-bottom: 1px solid rgba(69, 243, 255, 0.2);
                    position: relative !important;
}

.spaceship-base {
    position: absolute;
    bottom: 50px;
    /* Lazer alanından yukarı taşıdık */
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    /* Gemi biraz daha görkemli dursun */
    z-index: 100;
    filter: drop-shadow(0 5px 15px rgba(69, 243, 255, 0.4));
    /* Hafif bir motor parlaması */
    transition: var(--transition);
}

.player-name {
    position: absolute;
    bottom: 110px;
    /* Geminin tam üzerine aldık */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(69, 243, 255, 0.5);
    z-index: 101;
}

/* Radar Sidebar */
.fleet-sidebar {
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    border-right: 1px solid rgba(69, 243, 255, 0.2);
    padding: 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    z-index: 50 !important;
}

.sidebar-title {
    color: var(--neon-blue);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.fleet-player-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--neon-blue);
}

.fleet-player-card.dead {
    opacity: 0.3;
    filter: grayscale(1);
    border-color: var(--neon-red);
}

/* Ana Oyun Alanı */
.game-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ==========================================================================
   5. DÜŞMANLAR VE GİRİŞ (LAZER)
   ========================================================================== */
.falling-alien {
    position: absolute;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 8px var(--neon-red);
    background: rgba(255, 0, 60, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--neon-red);
    white-space: nowrap;
    z-index: 50;
    top: -50px;
    will-change: top;
}

.laser-input-container {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    z-index: 20;
}

.laser-input {
    width: 100%;
    font-size: 1.5rem !important;
    text-align: center;
    border: 2px solid var(--neon-red) !important;
    color: var(--neon-red) !important;
    border-radius: 50px !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
        border: solid 1px black;
}

.laser-input:focus {
    border-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}

/* ==========================================================================
   6. ANİMASYONLAR
   ========================================================================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    from {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-red);
    }

    to {
        opacity: 0.5;
        box-shadow: 0 0 25px var(--neon-red);
    }
}

.shake {
    animation: screenShake 0.3s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes screenShake {

    10%,
    90% {
        transform: translate3d(-2px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(3px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-5px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(5px, 0, 0);
    }
}

.damage-flash {
    animation: flashRed 0.4s ease-out;
}

@keyframes flashRed {
    0% {
        background: rgba(255, 0, 0, 0.4);
        box-shadow: inset 0 0 100px #f00;
    }

    100% {
        background: transparent;
    }
}

.neon-user-list {
    list-style: none;
    padding: 0;
    padding-right: 10px;
    /* Sağa kayma payı bıraktık */
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    /* YENİ: Yatayda taşanları kesinlikle gizle, scrollbar çıkarma */
}

.neon-user-list li:hover {
    background: rgba(69, 243, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(3px);
    /* YENİ: 5px çoktu, 3px yapıp daha kibar kaydırdık */
}
/* ==========================================================================
   7. MOBİL UYUMLULUK (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {

/* 1. Giriş alanını yukarı taşımak için alt boşluğu artırıyoruz */
    .laser-input-outer {
        padding: 10px 0 120px 0 !important;
        /* Buradaki 120px değeri alanı yukarı iter */
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9) 80%);
        order: 3;
    }

    /* 2. Metin kutusunun mobilde daha derli toplu durması için */
    .laser-input-container {
        width: 85% !important;
        max-width: 400px;
    }

    .laser-input {
        font-size: 1rem !important;
        padding: 10px !important;
        margin-bottom: 70px !important;
    }

    /* 3. GEMİYİ YUKARI TAŞIMA (Önemli) */
    /* Giriş alanı yukarı kalkınca gemi altında kalmasın diye onu da yükseltiyoruz */
        .spaceship-base {
            bottom: 55px !important;
            /* Klavyenin ve inputun üzerinde kalması için */
            font-size: 2.2rem !important;
        }
    
        .player-name {
            bottom: 105px !important;
            /* İsmi de gemiyle birlikte yükseltiyoruz */
            font-size: 0.7rem;
        }
        

    /* 4. Şeritlerin alt sınırını daraltma */
    /* Kelimelerin gemiye çarpmadan önce input'un arkasına kaçmasını engeller */


    /* 1. Ekranı dikey düzene çevir (Yan yana değil, alt alta) */
    #gameScreen:not(.hidden) {
        flex-direction: column !important;
    }

    /* 2. Filo Radarını yukarıya, HUD'ın hemen altına veya en alta taşıyalım */
    .fleet-sidebar {
        width: 100% !important;
        height: auto !important;
        max-height: 80px;
        /* Çok yer kaplamasın */
        flex-direction: row !important;
        /* Oyuncuları yan yana diz */
        overflow-x: auto;
        /* Çok oyuncu varsa yana kaysın */
        padding: 5px 10px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(69, 243, 255, 0.2);
        order: 2;
        /* HUD'dan sonra gelsin */
    }

    .sidebar-title {
        display: none;
        /* Mobilde başlığa gerek yok, yer kazanalım */
    }

        /* --- LOBİ KULLANICI LİSTESİ KUTUCUKLARI --- */
        .neon-user-list {
            list-style: none;
            /* Noktaları kaldırır */
            padding: 0;
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            /* Kutular arası boşluk */
            max-height: 250px;
            overflow-y: auto;
            /* Çok kişi girerse taşmasın, scroll çıksın */
        }
    
        .neon-user-list li {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(69, 243, 255, 0.2);
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 1.1rem;
            font-weight: bold;
            letter-spacing: 2px;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
    
        /* Host (Kurucu) olan oyuncunun yazısını ve taç emojisini hizalayalım */
        .neon-user-list li span {
            display: flex;
            align-items: center;
            gap: 10px;
        }
    
        /* Kutunun üzerine gelince (Hover) oluşan neon efekti */
        .neon-user-list li:hover {
            background: rgba(69, 243, 255, 0.1);
            border-color: var(--neon-blue);
            transform: translateX(5px);
            /* Hafifçe sağa kayar */
        }

    .fleet-player-card {
        min-width: 120px;
        margin-bottom: 0 !important;
        padding: 5px !important;
    }

    /* 3. Ana Savaş Alanını Genişlet */
    .game-main-area {
        width: 100% !important;
        height: auto;
        flex: 1;
        order: 1;
        /* En üstte kalsın */
    }

    /* 4. HUD'ı mobilde biraz daha sıkıştır */
.hud {
    height: 80px;
    padding: 5px 10px;
}

.combo-box {
    font-size: 1rem;
}

.health-container {
    max-width: 120px;
}
.health-text {
    font-size: 0.6rem;
    text-align: right;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

    /* 5. Giriş Alanını (Input) yukarı çek (Klavye kapattığında görünmesi için) */
    .laser-input-outer {
        padding: 10px 0 20px 0 !important;
        order: 3;
        /* En altta kalsın */
    }
}

/* --- GAME OVER EKRANI ÖZEL --- */
.game-over-panel {
    max-width: 650px;
    /* Kutuyu büyüttük */
    width: 95%;
    border: 2px solid var(--neon-yellow);
    /* Rapor rengi altın sarısı */
    box-shadow: 0 0 40px rgba(241, 196, 15, 0.2), inset 0 0 20px rgba(241, 196, 15, 0.1);
    padding: 3rem 2rem;
}

.game-over-panel .neon-text {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}



/* ==========================================================================
   1. PC OPTİMİZASYONU (1024px ve Üstü)
   ========================================================================== */
@media (min-width: 1024px) {
    .lobby-panel {
        max-width: 1000px !important;
        min-height: 500px;
        border: 2px solid rgba(69, 243, 255, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: panelFloat 3s ease-in-out infinite;
    }

    .lobby-main {
        display: flex;
        gap: 40px;
        margin-top: 20px;
        align-items: stretch;
    }

    .lobby-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .lobby-divider {
        width: 1px;
        background: linear-gradient(transparent, var(--neon-blue), transparent);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .divider-text {
        background: var(--bg-dark);
        padding: 10px;
        font-size: 0.7rem;
        border-radius: 50%;
        border: 1px solid var(--neon-blue);
        color: var(--neon-blue);
    }

    .section-title {
        color: var(--neon-blue);
        font-size: 0.9rem;
        margin-bottom: 20px;
        letter-spacing: 3px;
        opacity: 0.9;
        text-align: center;
        text-transform: uppercase;
    }
        .laser-input {
            /* 1. Dikey padding'leri sıfırla (metni aşağı iten ana neden) */
            padding-top: 0 !important;
            padding-bottom: 0 !important;
    
            /* 2. Kutunun yüksekliğini sabitle (orijinal kodundaki değeri kullan) */
            height: 60px !important;
            /* Örnek yükseklik, kodundakiyle aynı olmalı */
    
            /* 3. Metni ve imleci dikey olarak tam ortala */
            /* Line-height, caret'i (imleci) dikey ortalar */
            line-height: 60px !important;
    
            /* 4. Metnin yatayda nerede başlayacağını sabitle (görselle uyumlu) */
            text-indent: 10px;
            /* Sol kenardan biraz içeride başlaması için */
        }
}

@keyframes panelFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

/* ==========================================================================
   2. MOBİL & TABLET LOBİ DÜZENİ (1023px ve Altı)
   ========================================================================== */
@media (max-width: 1023px) {
    .glass-panel {
        width: 85%;
        /* Ekrana tam yapışmasın, sağdan soldan nefes alsın */
        max-width: 400px;
        padding: 2rem 1.5rem;
    }

    .lobby-main {
        display: flex;
        flex-direction: column;
    }

    .lobby-divider {
        margin: 15px 0;
        border-top: 1px solid rgba(69, 243, 255, 0.2);
        padding-top: 15px;
        display: flex;
        justify-content: center;
    }

    .divider-text {
        font-size: 0.6rem;
        opacity: 0.5;
    }

    .section-title {
        display: none;
        /* Mobilde kalabalık yapmasın */
    }
}



/* Tablo Kutusu Yüksekliği (PC'de kısaltmak için) */
.rooms-list-box {
    max-height: 120px;
    overflow-y: auto;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}


/* --- TABLO TASARIMI --- */
.leaderboard-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    /* Satırlar arası boşluk */
}

.score-table th {
    color: var(--neon-blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 15px;
    border-bottom: 2px solid var(--neon-blue);
}

.score-table td {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.1rem;
}

/* İlk sıradaki (Şampiyon) stili */
.score-table tbody tr:first-child td {
    color: var(--neon-yellow);
    font-weight: 900;
    font-size: 1.3rem;
    background: rgba(241, 196, 15, 0.1);
    box-shadow: inset 0 0 15px rgba(241, 196, 15, 0.2);
}

/* Benim satırım (Sen) */
.score-table tr.me td {
    border-top: 1px solid var(--neon-blue);
    border-bottom: 1px solid var(--neon-blue);
    background: rgba(69, 243, 255, 0.1);
}

/* Tablo Hover Efekti */
.score-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* --- BUTON ÖZELLEŞTİRME --- */
.btn-redeploy {
    border-color: var(--neon-green);
    color: var(--neon-green);
    font-size: 1.2rem;
    padding: 18px;
}

.btn-redeploy:hover {
    background: var(--neon-green);
    box-shadow: 0 0 40px var(--neon-green);
}

/* --- ÖLÜM OVERLAY (EKRAN KARARMASI) --- */
/* 2. Ölüm Ekranını tam şeridin ortasına hapset */
.death-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 0, 0, 0.85);
    /* Sadece kendi şeridini karartır */
    z-index: 100 !important;
    /* Aşırı yüksek yapmadık ki ana menüyü ezmesin */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.death-text {
    color: var(--neon-red);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px var(--neon-red);
    text-align: center;
    animation: blink 0.5s infinite alternate;
}

.death-subtext {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.7;
    letter-spacing: 2px;
}

@keyframes blink {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

/* Elenen oyuncunun radardaki görüntüsü */
.fleet-player-card.eliminated {
    border-left-color: var(--neon-red);
    background: rgba(255, 0, 0, 0.1);
    opacity: 0.5;
}

/* --- HOST AYARLARI (AÇILIR MENÜLER) --- */
.host-controls {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(69, 243, 255, 0.5);
    border-radius: 12px;
}

.host-controls select {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: var(--transition);

    /* Standart aşağı okunu gizleyip kendi neon okumuzu ekliyoruz */
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2345f3ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.host-controls select:hover,
.host-controls select:focus {
    box-shadow: 0 0 15px rgba(69, 243, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.8);
}

/* Açılır menü tıklandığında çıkan seçeneklerin (options) tasarımı */
.host-controls select option {
    background-color: var(--bg-dark);
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    padding: 10px;
}

/* --- GERİ SAYIM EKRANI --- */
.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.countdown-text {
    font-size: 7rem;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 30px var(--neon-yellow);
    font-family: 'Orbitron', sans-serif;
    animation: countPulse 1s ease-in-out infinite;
}

@keyframes countPulse {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    40% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   8. MOBİL UYUMLULUK DÜZELTMELERİ (GERİ SAYIM VE RAPOR EKRANI)
   ========================================================================== */
@media (max-width: 768px) {

    /* --- BEKLEME ODASI: Host Ayarları Mobil Düzeni --- */
        .host-controls {
            padding: 10px !important;
            margin: 10px 0 !important;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
    
        /* "🛠️ HOST AYARLARI" Başlığı */
        .host-controls p {
            width: 100%;
            /* Başlık tam satır kaplasın */
            font-size: 0.85rem !important;
            margin-bottom: 8px !important;
        }
    
        /* Ayar Kutularını Yan Yana Alma */
        .host-controls>div {
            width: 48%;
            /* Kutular %48 genişlikte yan yana dursun */
            margin-bottom: 0 !important;
        }
    
        /* Açılır Menülerin (Select) Kendisi */
        .host-controls select {
            padding: 8px 10px !important;
            font-size: 0.75rem !important;
            margin: 5px 0 0 0 !important;
            background-position: right 8px top 50%;
            /* Ok işaretini biraz sola alalım */
            background-size: 10px auto;
        }
    
        /* Etiketler (Zorluk Seviyesi vb.) */
        .host-controls label {
            font-size: 0.6rem !important;
        }

    /* --- Geri Sayım Ekranı Küçültmesi --- */
    .countdown-text {
        font-size: 3rem !important;
        /* 7rem'den 4rem'e düşürdük */
    }

    /* --- Savaş Raporu Paneli Daraltması --- */
    .game-over-panel {
        padding: 1.5rem 1rem !important;
        /* Kenar boşluklarını azalttık */
        width: 95%;
    }

    /* "SAVAŞ RAPORU" Başlığı */
    .game-over-panel .neon-text {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    /* --- Liderlik Tablosu Mobil Düzeni --- */
    .leaderboard-wrapper {
        padding: 5px !important;
        overflow-x: auto;
        /* Tablo çok uzarsa sağa kaydırılabilir olsun (taşmayı önler) */
    }

    .score-table {
        border-spacing: 0 5px;
        /* Satır aralıklarını daralttık */
    }

    .score-table th {
        padding: 10px 5px !important;
        font-size: 0.7rem !important;
        /* Sütun başlıkları küçüldü */
        letter-spacing: 1px !important;
    }

    .score-table td {
        padding: 10px 5px !important;
        font-size: 0.85rem !important;
        /* Hücre yazıları küçüldü */
    }

    /* 1. Olan kişinin yazısı mobilde çok abartı durmasın */
    .score-table tbody tr:first-child td {
        font-size: 1rem !important;
    }
}

/* Ekstra Küçük Ekranlar (Eski iPhone'lar vb. için) */
@media (max-width: 400px) {

    .score-table th,
    .score-table td {
        padding: 8px 3px !important;
        font-size: 0.75rem !important;
    }

    .countdown-text {
        font-size: 3rem !important;
    }
}
/* --- SES KONTROL BUTONU --- */
.mute-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(69, 243, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Mobilde klavye açılınca yukarı itilmesin diye */
    -webkit-tap-highlight-color: transparent;
}

.mute-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px var(--neon-blue);
    transform: scale(1.1);
}

.mute-btn.muted {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}

.mute-btn.muted:hover {
    background: var(--neon-red);
    color: #fff;
    box-shadow: 0 0 20px var(--neon-red);
}

/* Mobilde butonu biraz küçültelim */
@media (max-width: 768px) {
    .mute-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* --- KELİME PATLAMA (EXPLOSION) ANİMASYONU --- */
.explosion-effect {
    /* Animasyonu 0.4 saniyede tamamla ve bitiş karesinde kal */
    animation: blastOut 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
    background: transparent !important;
    border: none !important;
    color: var(--neon-yellow) !important;
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-yellow), 0 0 60px #fff !important;
    font-weight: 900 !important;
    z-index: 1000 !important;
    pointer-events: none;
    /* Patlarken lazeri engellemesin */
}

@keyframes blastOut {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0px);
    }

    40% {
        transform: scale(1.4);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.2) translateY(-20px);
        /* Büyüyerek hafif yukarı savrulur */
        opacity: 0;
        filter: blur(4px);
        letter-spacing: 15px;
        /* Harflerin birbirinden kopup parçalanma hissi */
    }
}

/* --- METİN KUTUSUNU OYUN ALANINA GÖRE ORTALAMA (SADECE PC) --- */
@media (min-width: 769px) {
    .laser-input-container {
        /* Ekranın tam ortası + Sol menünün yarısı kadar sağa it */
        left: calc(50% + 100px) !important;
    }
}

/* --- YENİ SES VE SLIDER PANELİ (SAĞ ÜST) --- */
.volume-container {
    position: fixed;
    top: 115px;
    /* PC'de Kalkan/Skor HUD'ının (100px) hemen altına aldık */
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px 5px 5px;
    border-radius: 30px;
    border: 1px solid var(--neon-blue);
    backdrop-filter: blur(5px);
}

.mute-btn {
    position: static;
    /* Fixed özelliğini eziyoruz */
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Neon Slider (Kaydırma Çubuğu) Tasarımı */
#volumeSlider {
    -webkit-appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(69, 243, 255, 0.3);
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-blue);
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* --- EĞİTİCİ KUTUCUK --- */
.tutorial-box {
    margin-top: 20px;
    padding: 15px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px dashed var(--neon-yellow);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #ccc;
    text-align: left;
    line-height: 1.5;
}

/* --- MOBİL İÇİN SES KONTROLÜ (GÜNCEL) --- */
@media (max-width: 768px) {

    
        @media (max-width: 768px) {
        
                /* 1. SCROLL VE YÜKSEKLİK (ARKA PLAN KAYMASIN DİYE) */
                html,
                body {
                    min-height: 100vh !important;
                    height: auto !important;
                    overflow-y: auto !important;
                }
        
                /* 2. SİHİRLİ ORTALAMA: SADECE MENÜ EKRANLARI İÇİN (Oyun ekranını bozmaz) */
                .screen:not(#gameScreen):not(.hidden) {
                    position: relative !important;
                    min-height: 100vh !important;
                    height: auto !important;
                    display: flex !important;
                    flex-direction: column !important;
                    justify-content: center !important;
                    /* İşte paneli dikeyde TAM ortaya alan komut */
                    align-items: center !important;
                    /* Yatayda ortalar */
                    padding: 40px 0 !important;
                    /* Ekran çok küçülürse alttan üstten nefes payı bırakır */
                }
        
                /* 3. PANELLERİN KENDİ AYARI */
                .glass-panel,
                .game-over-panel {
                    margin: auto !important;
                    width: 90% !important;
                    /* Kenarlara tam yapışmasın */
                    max-width: 400px !important;
                }
        
                /* ... ses butonu, lobby listesi vs. diğer mobil kodların buradan aşağıya aynen devam edecek ... */
/* --- MOBİL: AÇILIR/KAPANIR SES PANELİ --- */
    .volume-container {
        top: 5px;
        right: 5px;
        width: 45px;
        /* Başlangıçta sadece buton kadar geniş */
        height: 45px;
        padding: 2px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid var(--neon-blue);
        border-radius: 25px;
        overflow: hidden;
        /* Taşan slider'ı gizle */
        transition: all 0.3s ease-in-out;
        white-space: nowrap;
        cursor: pointer;
    }

    /* Panel tıklandığında genişler (.expanded sınıfı JS ile ekleniyor) */
    .volume-container.expanded {
        width: 140px;
        background: rgba(0, 0, 0, 0.9);
        padding-right: 15px;
    }

    #volumeSlider {
        display: inline-block !important;
        /* Gizlemiyoruz, genişlik içine hapsediyoruz */
        width: 70px !important;
        opacity: 0;
        transition: opacity 0.3s;
        margin-left: 5px;
    }

    .volume-container.expanded #volumeSlider {
        opacity: 1;
        /* Panel açılınca slider görünür olsun */
    }

    .mute-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border: none;
        background: transparent;
    }
    .tutorial-box {
        font-size: 0.65rem;
    }
    
        /* Panellerin (Bekleme Odası vb.) iç boşluklarını mobilde biraz daraltalım */
        .panel {
            margin-top: 20px;
            margin-bottom: 20px;
            max-height: max-content;
        }
        .fleet-sidebar {
        margin-top: 10px;
        position: relative !important;
        }
}
.in-game-action-btn {
    padding: 3px 6px !important;
    font-size: 0.5rem !important;
    margin-top: 5px !important;
    border-width: 1px !important;
    /* Mobilde kalın durmasın diye incelttik */
}
}

/* --- OYUN İÇİ İPTAL/AYRIL BUTONLARI --- */
.in-game-action-btn {
    padding: 6px 10px !important;
    font-size: 0.65rem !important;
    width: auto !important;
    margin-top: auto !important;
    /* Esnek boşluk bırakır */
    border-radius: 6px !important;
    letter-spacing: 1px;
}

/* --- METİN KUTUSU TEMİZLEME EFEKTİ --- */
.flash-input {
    background: rgba(255, 0, 60, 0.3) !important;
    border-color: var(--neon-red) !important;
    transition: none !important;
}

/* ── ULTRA-PREMIUM FLOATING (i) BUTTON & MODAL ── */
.global-how-to-btn {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: calc(20px + env(safe-area-inset-left, 0px));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #004d25 0%, #002411 70%, #001208 100%);
  border: 2px solid #00e676;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.75),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(0, 230, 118, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999;
  outline: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, border-color 0.25s ease;
  user-select: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.how-to-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e676;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  transition: color 0.25s ease, transform 0.25s ease;
}

.how-to-icon {
  stroke: #00e676;
  transition: stroke 0.25s ease, transform 0.25s ease;
}

.global-how-to-btn:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: #ffffff;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.85),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    0 0 25px rgba(0, 230, 118, 0.6);
}

.global-how-to-btn:hover .how-to-icon {
  stroke: #ffffff;
  transform: scale(1.1);
}

.global-how-to-btn:active {
  transform: translateY(1px) scale(0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Ambient Pulsing Aura Effect */
.btn-glow-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 230, 118, 0.35);
  animation: auraPulse 2.8s infinite cubic-bezier(0.45, 0, 0.55, 1);
  pointer-events: none;
}

@keyframes auraPulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 0.15; }
  100% { transform: scale(0.92); opacity: 0.85; }
}

.global-how-to-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  padding: 15px;
  animation: fadeInHowToModal 0.25s ease-out forwards;
}

.global-how-to-modal.hidden {
  display: none !important;
}

.global-how-to-box {
  background: linear-gradient(165deg, #003318 0%, #00170b 100%);
  border: 2px solid #00e676;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 18px rgba(0, 230, 118, 0.25);
  color: #f8fafc;
  padding: 26px 28px;
  border-radius: 20px;
  width: min(92vw, 530px);
  position: relative;
  max-height: calc(88vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'Outfit', 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */}

.global-how-to-box::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.global-how-to-box::-webkit-scrollbar-thumb {
  display: none !important;
}

.global-how-to-close {
  position: absolute;
  top: 14px;
  z-index: 10;
  right: 18px;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: #00e676;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.global-how-to-close:hover {
  color: #ffffff;
  transform: scale(1.15);
}

.global-how-to-title {
  color: #00e676;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 4px 0;
  padding: 0 35px;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  font-family: inherit;
}

.global-how-to-subtitle {
  color: #cbd5e1;
  font-size: 0.88rem;
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.95;
  font-family: inherit;
}

.global-how-to-content .rules-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.global-how-to-content h4 {
  color: #00e676;
  font-size: 1.02rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: inherit;
}

.global-how-to-content p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #f1f5f9;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.15px;
  font-family: inherit;
}

.global-how-to-content ul, .global-how-to-content ol {
  margin: 0;
  padding-left: 22px;
  font-size: 0.92rem;
  color: #f1f5f9;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: 0.15px;
  font-family: inherit;
}

.global-how-to-content li {
  margin-bottom: 8px;
}

.global-how-to-content li strong {
  color: #ffffff;
  font-weight: 700;
}

.global-how-to-content li:last-child {
  margin-bottom: 0;
}

@keyframes fadeInHowToModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ── MOBİL / DİK / YATIK EKRAN UYUMLULUĞU ── */
@media (max-width: 600px) {
  .global-how-to-btn {
    width: 44px;
    height: 44px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    left: calc(14px + env(safe-area-inset-left, 0px));
  }
  .how-to-icon {
    width: 20px;
    height: 20px;
  }
  .global-how-to-box {
    padding: 20px 20px;
    border-radius: 16px;
  
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */}
  .global-how-to-title {
    font-size: 1.2rem;
  }
  .global-how-to-content .rules-section {
    padding: 12px 14px;
    margin-bottom: 12px;
  }
  .global-how-to-content p, .global-how-to-content ul, .global-how-to-content ol {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}

@media (max-height: 500px) {
  .global-how-to-btn {
    width: 40px;
    height: 40px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: calc(10px + env(safe-area-inset-left, 0px));
  }
  .how-to-icon {
    width: 18px;
    height: 18px;
  }
  .global-how-to-box {
    max-height: 90vh;
    padding: 16px 18px;
  
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */}
}

/* ── LANDSCAPE ENGELLEYİCİ (Masaüstü ve Dik Mobilde Gizli, Sadece Mobil Yatık Ekranda Görünür) ── */
#landscape-blocker {
  display: none !important;
}

@media (pointer: coarse) and (orientation: landscape) and (max-height: 500px) {
  #landscape-blocker {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 3, 23, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
  }
  #landscape-blocker .rotate-icon {
    font-size: 3rem;
    color: #ffde00;
    margin-bottom: 12px;
    animation: rotatePhone 2s infinite ease-in-out;
  }
  #landscape-blocker h2 {
    font-size: 1.4rem;
    color: #ffde00;
    margin-bottom: 6px;
    font-weight: 800;
  }
  #landscape-blocker p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
  }
}

@keyframes rotatePhone {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-90deg); }
  100% { transform: rotate(0deg); }
}
