:root {
    --bg: #0a0a12;
    --panel: #12182b;
    --text: #eef2ff;
    --muted: #94a3b8;
    --platin-a: #c084fc;
    --platin-b: #7c3aed;
    --gold-a: #fbbf24;
    --gold-b: #f97316;
    --silver-a: #38bdf8;
    --silver-b: #6366f1;
    --radius: 12px;
    --wrap: 780px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 32%),
        radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.12), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.v-page {
    width: min(var(--wrap), 100%);
    margin: 0 auto;
    padding: 0 8px 24px;
}

.v-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    margin: 10px 0 14px;
    border-radius: 999px;
    background: rgba(18, 24, 43, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.v-brand {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.v-header-wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.v-main { display: grid; gap: 16px; }

.v-banner-top {
    position: sticky;
    top: 0;
    z-index: 45;
    margin: 0 -8px 12px;
    padding: 8px 8px 0;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.98) 70%, rgba(10, 10, 18, 0));
}

.v-section-head img {
    width: 100%;
    border-radius: var(--radius);
}

.v-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(34, 197, 94, 0.35);
    background:
        linear-gradient(120deg, rgba(34, 197, 94, 0.08), transparent 42%),
        linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(18, 24, 43, 0.96));
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.v-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: cta-shine 4.5s ease-in-out infinite;
    pointer-events: none;
}

.v-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(34, 197, 94, 0.12);
}

.v-cta-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.v-cta-body {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 2px;
}

.v-cta-title {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    line-height: 1.1;
}

.v-cta-sub {
    font-size: clamp(0.72rem, 1.8vw, 0.85rem);
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v-cta-action {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.v-cta-action .fa-whatsapp {
    font-size: 1rem;
}

.v-cta-profile {
    max-width: 742px;
    margin: 0 auto 10px;
}

.v-profile-cta-wrap {
    max-width: 742px;
    margin: 0 auto 10px;
    padding: 0 8px;
}

@keyframes cta-shine {
    0%, 72% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@media (max-width: 520px) {
    .v-cta {
        gap: 10px;
        padding: 12px;
    }

    .v-cta-action-text {
        display: none;
    }

    .v-cta-action {
        padding: 10px;
        border-radius: 12px;
    }
}

.v-alert {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.85), rgba(69, 10, 10, 0.92));
}

.v-alert-track span {
    display: inline-block;
    white-space: nowrap;
    padding: 10px 0;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.v-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.v-list-platin { flex-direction: column; }

/* --- PLATIN yatay kart --- */
.v-item-platin {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.v-page-no-header {
    padding-top: 8px;
}

.v-page-no-header .v-main {
    margin-top: 0;
}

.v-header-minimal {
    justify-content: space-between;
}

.v-header-home {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.v-item-platin.loaded {
    border: 3px solid var(--accent, var(--platin-b));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 18px color-mix(in srgb, var(--accent, var(--platin-b)) 35%, transparent);
}

.v-item-platin.loaded .v-vip-badge {
    background: linear-gradient(135deg, var(--accent, var(--platin-b)), color-mix(in srgb, var(--accent, var(--platin-b)) 65%, #db2777));
}

.v-hcard {
    position: relative;
    overflow: hidden;
}

.v-hcard-link,
.v-gcard-link {
    display: block;
    position: relative;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.v-hcard-imgs {
    display: flex;
    width: 100%;
    aspect-ratio: 742 / 216;
    max-height: 220px;
    overflow: hidden;
    background: #0f172a;
}

.v-hcard-imgs img {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-hcard-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 38%, transparent 52%, rgba(0, 0, 0, 0.72) 100%);
}

.v-hcard-link .v-hcard-overlay {
    pointer-events: none;
}

.v-hcard-top {
    position: absolute;
    top: 8px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 70%;
}

.v-hcard-name {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.v-vip-badge {
    background: linear-gradient(135deg, var(--platin-b), #db2777);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.v-contact-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: auto;
    z-index: 2;
}

.v-contact-icons {
    display: flex;
    gap: 4px;
}

.v-contact-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.v-contact-wa { background: #25d366; }
.v-contact-call { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.v-contact-tg { background: #0284c7; }

.v-contact-num {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    padding: 4px 6px;
    border-radius: 8px;
    white-space: nowrap;
}

.v-meta-pills {
    position: absolute;
    left: 10px;
    bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: calc(100% - 20px);
}

.v-pill {
    font-size: 0.76rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.v-pill-loc { color: #c4b5fd; font-weight: 600; }
.v-pill-info { color: #fda4af; font-style: italic; }

/* --- GOLD yatay kart (2 sutun) --- */
.v-list-gold { gap: 6px; }

.v-item-gold {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 3px);
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.v-item-gold.loaded {
    border: 2px solid var(--accent, var(--gold-b));
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), 0 0 14px color-mix(in srgb, var(--accent, var(--gold-b)) 30%, transparent);
}

.v-gcard {
    position: relative;
    aspect-ratio: 5 / 2;
    overflow: hidden;
}

.v-gcard-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-gcard-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

.v-gcard-name {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 6px;
}

.v-gcard-loc {
    position: absolute;
    top: 6px;
    right: 6px;
    max-width: 52%;
    font-size: 0.72rem;
    color: #fde68a;
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v-item-gold .v-contact-actions {
    top: auto;
    bottom: 6px;
    right: 6px;
}

/* --- SILVER kompakt grid --- */
.v-list-silver { gap: 6px; }

.v-item-silver {
    flex: 1 1 calc(25% - 6px);
    max-width: calc(25% - 4px);
    min-width: 130px;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.v-item-silver.loaded {
    border: 2px solid var(--accent, var(--silver-b));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28), 0 0 12px color-mix(in srgb, var(--accent, var(--silver-b)) 28%, transparent);
}

.v-item-silver.loaded .v-scard-name {
    color: color-mix(in srgb, var(--accent, var(--silver-a)) 80%, white);
    border-bottom-color: color-mix(in srgb, var(--accent, var(--silver-a)) 35%, transparent);
}

.v-scard {
    display: block;
    background: #0f172a;
}

.v-scard-name {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 4px;
    color: #bae6fd;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-bottom: 1px solid rgba(56, 189, 248, 0.25);
}

.v-scard img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.v-scard-foot {
    display: grid;
    gap: 2px;
    padding: 6px;
    font-size: 0.72rem;
    text-align: center;
    background: #111827;
}

.v-scard-foot span { color: var(--muted); }

.v-footer {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Modal */
.v-modal[hidden] { display: none; }

.v-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 16px;
}

.v-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
}

.v-modal-panel {
    position: relative;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 16px;
    padding: 16px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.v-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.v-slider { position: relative; margin: 10px 0; }

.v-slider-track {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    background: #111827;
}

.v-slider-track img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
}

.v-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
}

.v-slider-nav.prev { left: 8px; }
.v-slider-nav.next { right: 8px; }

.v-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.v-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
}

.v-btn-call { background: #2563eb; color: #fff; }
.v-btn-wa { background: #16a34a; color: #fff; }
.v-btn-tg { background: #0284c7; color: #fff; }

.v-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.v-detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.v-detail-list span { color: var(--muted); }

.v-desc {
    margin-top: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Fad tarzı profil sayfası */
.v-profile-fad {
    background: #0a0a0a;
    color: #e8e8e8;
    font-family: 'Outfit', sans-serif;
    padding: 2px 2px 20px;
}

.v-profile-wrap {
    max-width: 742px;
    margin: 0 auto;
}

.v-top-banner {
    display: block;
    max-width: 742px;
    margin: 0 auto 10px;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid rgba(57, 255, 20, 0.45);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #fff;
}

.v-top-banner-back {
    background: linear-gradient(135deg, #374151, #111827);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.v-profile-hero {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 4px;
    margin: 10px 0;
}

.v-profile-hero img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.v-profile-head,
.v-profile-section {
    background: #fff;
    color: #111;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
}

.v-profile-head h1 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    margin: 0 0 10px;
}

.v-profile-about {
    padding: 14px 16px;
}

.v-profile-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.v-profile-title-row h1 {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    font-weight: 800;
    line-height: 1.15;
}

.v-profile-title-row .v-profile-location {
    margin-bottom: 0;
}

.v-profile-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.v-profile-meta-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: #f3f4f6;
    border-left: 3px solid #7c3aed;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.88rem;
    line-height: 1.2;
}

.v-profile-meta-chip strong {
    font-size: 0.68rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.v-profile-meta-chip span {
    font-weight: 600;
    color: #111;
}

.v-profile-about .v-profile-text {
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.55;
}

.v-profile-location {
    display: inline-block;
    background: rgba(255, 235, 59, 0.2);
    color: #92400e;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.v-profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.v-profile-stat {
    background: #f3f4f6;
    border-left: 4px solid #7c3aed;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.92rem;
}

.v-profile-stat strong {
    display: block;
    font-size: 0.72rem;
    color: #666;
    text-transform: uppercase;
}

.v-profile-mekan {
    background: rgba(0, 229, 255, 0.12);
    color: #0e7490;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 600;
}

.v-profile-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 600;
}

.v-profile-section h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 6px;
    display: inline-block;
}

.v-profile-text {
    line-height: 1.65;
    color: #444;
}

.v-profile-text p { margin: 0 0 10px; }

.v-profile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
}

.v-profile-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.v-profile-contact-section .v-profile-contact-bar {
    margin-top: 0;
}

.v-profile-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.v-profile-contact-bar.has-both .v-profile-contact-number {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    color: #16a34a;
}

.v-profile-contact-number { display: none; }

.v-profile-contact-btn {
    flex: 1 1 150px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 14px;
    border-radius: 14px;
    font-weight: 700;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.v-profile-contact-btn i { font-size: 2rem; }
.v-profile-contact-btn small {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.95;
}

.v-profile-contact-wa { background: #25d366; }
.v-profile-contact-call { background: linear-gradient(135deg, #ff073a, #b8002e); }

.v-profile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 742px;
    display: flex;
    gap: 0;
    z-index: 100;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(57, 255, 20, 0.25);
}

.v-profile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 1.6rem;
    color: #fff !important;
    border-radius: 10px;
    margin: 0 4px;
}

.v-profile-sticky-wa { background: #25d366; }
.v-profile-sticky-call { background: linear-gradient(135deg, #ff073a, #b8002e); }

.v-profile-footer {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    padding: 12px;
}

.v-profile-footer strong { color: #ccc; }

.v-profile-inactive {
    text-align: center;
    padding: 36px 20px;
    border-radius: 18px;
    background: rgba(18, 24, 43, 0.92);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fff;
}

.v-profile-inactive i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 12px;
}

.v-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 720px) {
    .v-item-gold {
        flex: 1 1 calc(50% - 4px);
        max-width: calc(50% - 2px);
    }

    .v-item-silver {
        flex: 1 1 calc(33.333% - 4px);
        max-width: calc(33.333% - 2px);
        min-width: 100px;
    }

    .v-hcard-name { font-size: 1rem; }

    .v-contact-num { display: none; }
}

@media (max-width: 480px) {
    .v-item-silver {
        flex: 1 1 calc(50% - 4px);
        max-width: calc(50% - 2px);
    }

    .v-hcard-imgs { max-height: 180px; }
}
