:root {
    --color-brand-navy: #000;
    --color-brand-slate: #080808;
    --color-brand-gold: #f5a623;
    --color-brand-gold-hover: #e09214;
    --color-brand-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-brand-slate) 100%);
    color: var(--color-brand-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 580px;
    text-align: center;
}

/* Dil Seçici */
.language-selector {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--color-brand-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    border-color: var(--color-brand-gold);
    background: rgba(245, 166, 35, 0.05);
}

.lang-btn.active {
    background: var(--color-brand-gold);
    color: var(--color-brand-navy);
    border-color: var(--color-brand-gold);
}

/* Profil Alanı */
.profile {
    margin-bottom: 32px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-brand-gold);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
}

.profile h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile p {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.7);
}

/* Link Kartları */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 166, 35, 0.35);
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--color-brand-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.link-card i {
    font-size: 1.25rem;
    position: absolute;
    left: 24px;
}

.link-card {
    justify-content: center;
}

/* Hover Efektleri */
.link-card:hover {
    background: var(--color-brand-gold-hover);
    border-color: var(--color-brand-gold-hover);
    color: var(--color-brand-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.25);
}

/* Sosyal İkonlar */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-icons a {
    color: rgba(248, 250, 252, 0.6);
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    color: var(--color-brand-gold);
    transform: scale(1.15);
}

/* New Katalog Featured Card - Horizontal Layout */
.link-card-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Görselin karta sıfıra sıfır oturması için */
    background: transparent;
    border: 1px solid var(--color-brand-gold);
    border-radius: 16px;
    width: 100%;

    /* PATLAYAN SABİT YÜKSEKLİĞİ SİLDİK */
    min-height: auto;

    /* Kartın boyutunu tamamen resminin 4:3 oranına kilitledik */
    aspect-ratio: 4 / 3;

    position: relative;
    box-sizing: border-box;
    overflow: visible;
    /* Görselin oval köşelerden taşmasını önler */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-cover-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Görseli bozmadan, kartın içine tam yayar */
    display: block;

    /* Diğer çakışan yükseklik ve sınırları sıfırladık */
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* NEW Rozetinin Görselin Üzerinde Doğru Durması İçin */
.badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

/* Hover efektleri */
.link-card-featured:hover {
    border-color: var(--color-brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.15);
}

.link-card-featured:hover .catalog-cover-large {
    transform: scale(1.03);
    /* Hover durumunda resmi hafifçe büyütür */
}

.badge-new {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--color-brand-gold);
    color: var(--color-brand-navy);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(245, 166, 35, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
    }
}