/* Temel Ayarlar (Önceki kodlarla aynı) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0b1d33;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

/* Dil Seçici Stilleri */
.lang-switch {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.lang-switch button {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 2px 6px;
}

.lang-switch button:hover {
    color: #93c5fd;
}

.lang-switch button.active {
    color: #ffffff;
    border-bottom: 2px solid #d97706;
}

/* Kalan tüm container, kart, görsel ve footer stilleri bir önceki aşama ile birebir aynıdır */
.coming-soon-container {
    width: 100%;
    max-width: 960px;
    text-align: center;
}

.minimal-header {
    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    background-color: #d97706;
    color: #0b1d33;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    color: #93c5fd;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.image-preview-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid #1e3a8a;
    margin-bottom: 40px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.info-row {
    display: flex;
    gap: 20px;
    text-align: left;
    margin-bottom: 60px;
}

.info-card {
    flex: 1;
    background-color: #071526;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #1e3a8a;
}

.info-card h3 {
    font-size: 16px;
    color: #d97706;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.info-card ul li strong {
    color: #93c5fd;
    display: inline-block;
    width: 120px;
}

.info-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 15px;
}

.email-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid #d97706;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.email-btn:hover {
    color: #d97706;
}

.minimal-footer {
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid #1e3a8a;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
    }
    h1 {
        font-size: 32px;
    }
    .lang-switch {
        top: 15px;
        right: 20px;
    }
}