/*
Theme Name: HyzenCraft Ultimate Coming Soon
Theme URI: https://www.hyzencraft.com
Author: Ali
Description: Premium 3D Minecraft Komut Bloklu "Çok Yakında" Teması.
Version: 3.4
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Adım 2: Arka planı ortadan dışa doğru beyazdan siyaha parlama efektiyle güncelledik */
    background: radial-gradient(circle, #ffffff 0%, #333333 35%, #000000 100%) !important;
    font-family: 'Press Start 2P', cursive;
    overflow: hidden;
}

/* Ortadaki yumuşatılmış dikdörtgen alan (Renk #999999 olarak korundu) */
.main-card {
    border: 4px solid #777777;
    border-radius: 30px;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    max-width: 950px;
    width: 90%;
    animation: fadeIn 0.8s ease-out;
}

/* Sol ve Sağ Bölümler */
.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side {
    flex: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

/* Tamamen mat beyaz, büyük ve okunabilir yazılar */
h1 {
    font-size: 36px;
    color: #ffffff !important;
    line-height: 1.3;
    letter-spacing: -1px;
    /* Parlama yapmayan, netlik sağlayan düz mat siyah gölge */
    text-shadow: 4px 4px 0px #1a1a1a !important; 
}

.domain-link {
    font-size: 24px;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0px #1a1a1a !important;
    transition: transform 0.2s ease;
}

.domain-link:hover {
    transform: scale(1.05);
}

/* Komut Bloğu Görsel Alanı ve LED Konumlandırma */
.command-block-container {
    position: relative;
    width: 220px;
    height: 220px;
}

.command-block-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4));
}

/* Manuel LED Noktaları */
.manual-led {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* LED Konumları (Görselin üzerindeki panellere tam oturacak şekilde) */
.led-top {
    top: 27%;
    left: 49%;
    background-color: #ff3333;
    animation: blink-red