.page-intro { text-align: center; padding: 6rem 2rem 4rem 2rem; background: linear-gradient(180deg, rgba(13, 13, 26, 0.5) 0%, transparent 100%); }
.page-logo { width: 120px; height: 120px; margin: 0 auto 1.5rem auto; border-radius: 50%; border: 3px solid var(--primary-color); box-shadow: 0 0 20px var(--neon-glow-primary); }
.page-intro h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); margin-bottom: 1rem; color: var(--primary-color); text-shadow: 0 0 15px var(--neon-glow-primary); }
.page-intro p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; color: #ccc; opacity: 0.9; }
.page-section { padding: 0 2rem 6rem 2rem; }

/* YENİ: Küçük paylaş butonu stili */
.share-button-small {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}
.share-button-small:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* DÜZELTME: Grid yapısı artık tek sütun */
.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px; /* Mobilde daha dar ve şık durması için */
    margin: auto;
}

/* YENİ: Masaüstü için 2'li grid yapısı */
@media (min-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 800px; /* Masaüstünde genişlik artırıldı */
    }
}

.link-card { font-family: 'Poppins', sans-serif; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.25rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); border-radius: 10px; color: var(--text-color); text-decoration: none; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.link-card:hover { transform: translateY(-5px); box-shadow: 0 0 20px var(--neon-glow-primary); border-color: var(--primary-color); }
.link-card i { font-size: 1.5rem; color: var(--primary-color); }

#toast-notification { visibility: hidden; background-color: var(--primary-color); color: var(--bg-color); text-align: center; border-radius: 5px; padding: 16px; position: fixed; z-index: 1000; left: 50%; transform: translateX(-50%); bottom: 30px; font-size: 1rem; font-weight: 600; box-shadow: 0 5px 20px var(--neon-glow-primary); opacity: 0; transition: all 0.5s ease; }
#toast-notification.show { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }