/* TABLETİ HİZALAMA VE NEON ZIRHI */
.lcd-area { 
    width: 84%; /* 3 telefonun toplam genişliğiyle aynı */
    margin: 40px auto; 
    padding-bottom: 60px;
}

.tablet { 
    width: 100%; 
    height: 320px; 
    background: #000; 
    border: 4px solid #1a1a1a; 
    border-radius: 40px; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    /* BEYAZ NEON LED ETKİSİ */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

/* TABLET ETRAFINDAKİ NEON ŞERİT */
.tablet::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none;
}

/* POWER SET BUTONU (SOL ÜST) */
.power-set { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    width: 45px; 
    height: 45px; 
    border: 2px solid var(--vurgu); 
    background: #000; 
    color: var(--vurgu); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
    cursor: pointer; 
    transition: 0.3s; 
    border-radius: 8px; /* Kare butona yakın */
}
.power-set:hover { box-shadow: 0 0 15px var(--vurgu); background: var(--vurgu); color: #fff; }

/* KATALOG BAŞLIĞI - BEYAZ LEDLİ YAZI */
.lcd-baslik { 
    letter-spacing: 8px; 
    font-weight: 900; 
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    opacity: 0.9;
}

/* OK BUTONLARI - TABLETİN İÇİNDE (SAĞ VE SOL) */
.nav-bt { 
    position: absolute; 
    bottom: 25px; 
    width: 50px; 
    height: 50px; 
    background: #000; 
    border: 1px solid #333; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    border-radius: 50%; 
    color: #fff; 
    transition: 0.3s;
    z-index: 10;
}
.nav-bt:hover { border-color: #fff; box-shadow: 0 0 10px #fff; }

/* SAĞ GERİ - SOL İLERİ (TABLETİN İÇ KÖŞELERİNDE) */
.go-next { left: 30px; }  /* SOLDA İLERİ OKU */
.go-back { right: 30px; } /* SAĞDA GERİ OKU */

/* TELEFONLAR İÇİN NUMARALANDIRMA (LED NO) */
.led-no { 
    position: absolute; 
    top: 20px; 
    left: 25px; 
    font-size: 85px; 
    font-weight: 900; 
    color: rgba(255,255,255,0.05); /* Arka planda dev numara */
    text-shadow: 0 0 5px rgba(255,255,255,0.1);
}