:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.12);
}

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

body {
    font-family: var(--font-body);
    min-height: 100vh;
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.campaign-banner {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    animation: bannerPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.campaign-banner:hover {
    filter: brightness(1.1);
    color: inherit;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.linkinbio-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-header {
    text-align: center;
    margin-bottom: 36px;
    animation: fadeInDown 0.6s ease-out;
}

.logo-wrapper {
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    color: var(--text-light);
    text-transform: lowercase;
}

.brand-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.links-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-light);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out both;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.link-card:nth-child(1) { animation-delay: 0.05s; }
.link-card:nth-child(2) { animation-delay: 0.1s; }
.link-card:nth-child(3) { animation-delay: 0.15s; }
.link-card:nth-child(4) { animation-delay: 0.2s; }
.link-card:nth-child(5) { animation-delay: 0.25s; }
.link-card:nth-child(6) { animation-delay: 0.3s; }
.link-card:nth-child(7) { animation-delay: 0.35s; }
.link-card:nth-child(8) { animation-delay: 0.4s; }

.link-card:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:active {
    transform: translateY(0) scale(0.98);
}

.link-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.link-card:hover .link-icon {
    background: rgba(255, 255, 255, 0.14);
}

.link-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.link-title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(3px);
    color: var(--text-light);
}

/* Boş durum */
.no-links {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}

.no-links i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.brand-footer {
    margin-top: auto;
    padding-top: 48px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .linkinbio-container {
        padding: 28px 16px 48px;
    }

    .brand-name {
        font-size: 1.7rem;
    }


    .link-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .link-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }
}
