@font-face {
    font-family: 'SF Arabic';
    src: url('fonts/SF-Arabic.woff2') format('woff2'),
         url('fonts/SF-Arabic.woff') format('woff');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'SF Arabic', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* قەبارەی لۆگۆکە ڕێک دەخات */
.logo-wrapper svg {
    width: 350px;
    height: auto;
    max-width: 90vw;
    margin-bottom: 20px;
}

/* --- ستایلی گشتی SVG --- */
#Ebene_1 .st0 { fill: #febd11; } /* ڕەنگی زەرد */
#Ebene_1 .st1 { fill: #fff; }    /* ڕەنگی سپی */

/* --- ئەنیمەیشنی تیشکەکان --- */
.ray {
    opacity: 0;
    /* چەقی ئەنیمەیشنەکە دەخەینە سەر چەقی بازنەی خۆرەکە (CX=369, CY=91) */
    transform-origin: 369px 91px;
    /* ئەنیمەیشنی گەورەبوون و دەرکەوتن */
    animation: rayPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* کاتی جیاواز بۆ هەر ١٢ تیشکەکە (دانە بە دانە) */
.ray:nth-of-type(1) { animation-delay: 0.2s; }
.ray:nth-of-type(2) { animation-delay: 0.3s; }
.ray:nth-of-type(3) { animation-delay: 0.4s; }
.ray:nth-of-type(4) { animation-delay: 0.5s; }
.ray:nth-of-type(5) { animation-delay: 0.6s; }
.ray:nth-of-type(6) { animation-delay: 0.7s; }
.ray:nth-of-type(7) { animation-delay: 0.8s; }
.ray:nth-of-type(8) { animation-delay: 0.9s; }
.ray:nth-of-type(9) { animation-delay: 1.0s; }
.ray:nth-of-type(10) { animation-delay: 1.1s; }
.ray:nth-of-type(11) { animation-delay: 1.2s; }
.ray:nth-of-type(12) { animation-delay: 1.3s; }

/* --- ئەنیمەیشنی بازنەی خۆر و تێکستەکان --- */
.sun-center {
    opacity: 0;
    animation: fadeIn 1s forwards 0s; /* خۆرەکە یەکەم شتە */
}

.kurdish-text {
    opacity: 0;
    animation: fadeIn 1.5s forwards 1.5s; /* دوای تیشکەکان دەردەکەوێت */
}

/* --- کلیلەکانی ئەنیمەیشن --- */
@keyframes rayPopIn {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- ستایلی بەشەکانی تری لاپەڕەکە --- */
.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 2s forwards 2.5s; /* لە کۆتاییدا */
}

.coming-soon {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #fbc02d;
    border: 1px solid #fbc02d;
    padding: 10px 25px;
    display: inline-block;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 2s forwards 3.5s, pulseBorder 3s infinite alternate 5s;
}

.animated-line {
    position: absolute;
    bottom: 20%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbc02d, transparent);
    animation: moveLine 6s linear infinite;
    opacity: 0.3;
}

@keyframes moveLine { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
@keyframes pulseBorder { 0% { box-shadow: 0 0 0px rgba(251, 192, 45, 0); } 100% { box-shadow: 0 0 15px rgba(251, 192, 45, 0.4); } }

@media (max-width: 600px) {
    .logo-wrapper svg { width: 250px; }
    .tagline { font-size: 1.1rem; }
}
