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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.container {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 1rem auto;
}

/* BAŞKANLAR */
.presidents {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.president-card {
    background: rgba(255, 255, 255, 0.18);
    padding: 1.5rem;
    border-radius: 15px;
    width: 220px;
}

.president-card.active {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.president-card img {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.15);
    padding: 6px;
    border: 4px solid rgba(255, 255, 255, 0.4);
    margin: 0 auto 1rem;
    display: block;
}

h1 {
    margin-bottom: 2rem;
    font-size: 2.3rem;
}

.counter {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.time-block {
    background: rgba(255, 255, 255, 0.25);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
}

.time-block.total-days {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.35);
}

.time-block span:first-child {
    font-size: 3rem;
    font-weight: bold;
}

.label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.last-title {
    margin-bottom: 1.5rem;
}

.seo-text {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

footer a {
    color: #fff;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* 📱 MOBİL – WEB İLE AYNI DÜZEN */
@media (max-width: 600px) {

    .presidents {
        flex-wrap: nowrap;        /* 🔥 EN KRİTİK SATIR */
        gap: 0.8rem;
    }

    .president-card {
        width: 32%;
        padding: 0.8rem;
    }

    .president-card img {
        max-width: 90px;
        padding: 4px;
    }

    .president-card h3 {
        font-size: 0.9rem;
    }

    .president-card p {
        font-size: 0.75rem;
    }

    h1 {
        font-size: 1.4rem;
    }
}

/* SOSYAL PAYLAŞIM */
.share-section {
    margin: 2rem 0;
    text-align: center;
}

.share-title {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-icons button {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.share-icons button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
}

.share-icons img {
    width: 22px;
    height: 22px;
}

/* MOBİL */
@media (max-width: 600px) {
    .share-icons button {
        width: 40px;
        height: 40px;
    }

    .share-icons img {
        width: 20px;
        height: 20px;
    }
}


.share-image-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.generate-image-btn {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.generate-image-btn:hover {
    transform: scale(1.05);
}
