@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-color: #050505;
    --gold-light: #fcf6ba;
    --gold-main: #d4af37;
    --gold-dark: #aa771c;
    --red-accent: #9b111e; /* Logodaki kırmızı tona uygun */
    --text-muted: #a0a0a0;
}

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

body {
    background-color: var(--bg-color);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Arkaya logodaki altın rengini anımsatan çok hafif bir parlama efekti */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, rgba(5,5,5,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    animation: fadeUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    
    /* Logodaki lüks altın geçişleri */
    background: linear-gradient(to right, #bf953f, var(--gold-light), #b38728, var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
}

/* Logodaki kırmızı üçgen/elmas detayından esinlenilmiş ayırıcı */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider::before, .divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.divider .diamond {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--red-accent); /* Ters üçgen şekli */
    margin: 0 20px;
    filter: drop-shadow(0 0 5px rgba(155, 17, 30, 0.5));
}

.message {
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Animasyonlar */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }
    .logo {
        max-width: 220px;
    }
    .message {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    .divider::before, .divider::after {
        width: 50px;
    }
}
