.elementor-617 .elementor-element.elementor-element-7812574{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */<div class="bakim-container">
    <div class="content">
        <h1 class="logo-text">NERO LUXURY</h1>
        <div class="divider"></div>
        <p class="status-text">Şu an bakımdayız.</p>
        <p class="sub-text">Sizin için daha şık ve konforlu bir deneyim hazırlıyoruz. Çok yakında buradayız.</p>
        <div class="loader"></div>
    </div>
</div>

<style>
/* Arka plan ve genel yerleşim */
.bakim-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
}

.content {
    text-align: center;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

/* Logo ve Yazı Stilleri */
.logo-text {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider {
    height: 1px;
    width: 100px;
    background: #d4af37; /* Altın rengi dokunuş */
    margin: 20px auto;
    animation: expand 1.5s forwards;
}

.status-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.sub-text {
    font-size: 1rem;
    color: #888;
    max-width: 400px;
    margin: 0 auto 30px;
}

/* Animasyonlu Loader */
.loader {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-top-color: #d4af37;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* Animasyon Tanımları */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
    from { width: 0; }
    to { width: 150px; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
    .logo-text { font-size: 2rem; letter-spacing: 5px; }
    .status-text { font-size: 1.2rem; }
}
</style>/* End custom CSS */