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

body {
    background: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Helvetica', Arial, sans-serif;  /* Helvetica font */
    padding: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: stretch;  /* Tüm sütunlar eşit yükseklikte */
    gap: 20px;
    max-width: 1600px;
    width: 100%;
}

/* Tüm sütunlar eşit genişlikte */
.sutun {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sarı çerçeve - tüm pencerelere uygula */
.cerceveli {
    border: 2px solid #ffcc00;
    border-radius: 15px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
}

/* Kapak fotoğrafları */
.kapak {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

/* Orta sütun - içerik */
.orta.sutun {
    flex: 1.2;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
}

/* Tanıtım metni - iki yana hizalı, Helvetica */
.karsilama {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 10px;
    text-align: justify;  /* İki yana hizalama */
    font-family: 'Helvetica', Arial, sans-serif;
}

.karsilama p {
    margin-bottom: 12px;
    color: #ddd;
}

.karsilama strong {
    color: #ffcc00;
}

/* Scrollbar özelleştirme */
.karsilama::-webkit-scrollbar {
    width: 6px;
}

.karsilama::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.karsilama::-webkit-scrollbar-thumb {
    background: #ffcc00;
    border-radius: 10px;
}

/* Hediyeler bölümü */
.hediyeler {
    margin-top: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
}

.hediyeler h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Butonlar için flex container - iki butonu yan yana ve eşit yerleştir */
.butonlar-container {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

/* Butonlar - eşit genişlikte, yan yana */
.buton {
    flex: 1;  /* Her iki buton eşit genişlikte */
    background: rgba(255, 204, 0, 0.15);
    color: white;
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 25px;
    border: 1px solid #ffcc00;
    transition: 0.2s;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    white-space: nowrap;  /* Yazılar tek satırda */
}

.buton:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-2px);
}

.buton .emoji {
    margin-right: 5px;
}

.kucuknot {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Tablet ve küçük ekranlar */
@media (max-width: 1000px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .sutun {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .kapak {
        max-height: 40vh;
    }
    
    .karsilama {
        max-height: 30vh;
    }
    
    .butonlar-container {
        flex-direction: column;  /* Telefonda alt alta */
        gap: 10px;
    }
    
    .buton {
        white-space: normal;  /* Telefonda yazılar alt satıra geçebilir */
    }
}
