/* ════════════════════════════════════════════════════════════════════
   DOESTAR · /kombin-yarismalari — REDESIGN (cy-* prefix)
   Premium kadın moda · mor/lila · referans tasarım baz alınmıştır.
   Renk paleti:
     --cy-primary:    #6C3CF0   primary purple
     --cy-soft:       #A78BFA   soft purple
     --cy-lavender:   #F4F0FF   light lavender
     --cy-text:       #1F1B2E   dark text
     --cy-muted:      #7B758C   muted text
     --cy-border:     #E7E1F5   border
     --cy-success:    #22C55E
     --cy-gold:       #F5B942
     --cy-bg:         #FAFAFD
   ════════════════════════════════════════════════════════════════════ */
:root {
    --cy-primary:  #6C3CF0;
    --cy-primary-2:#7C3CF0;
    --cy-soft:     #A78BFA;
    --cy-lavender: #F4F0FF;
    --cy-text:     #1F1B2E;
    --cy-muted:    #7B758C;
    --cy-border:   #E7E1F5;
    --cy-success:  #22C55E;
    --cy-gold:     #F5B942;
    --cy-bg:       #FAFAFD;
    --cy-surface:  #FFFFFF;
    --cy-radius-sm:12px;
    --cy-radius:   18px;
    --cy-radius-lg:26px;
    --cy-shadow:   0 8px 32px -12px rgba(31, 27, 46, .08);
    --cy-shadow-lg:0 22px 60px -24px rgba(31, 27, 46, .18);
}

.cy-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 28px 80px;
    background: var(--cy-bg);
    color: var(--cy-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.cy-page * { box-sizing: border-box; }

/* ───── Empty state ───── */
.cy-empty {
    padding: 120px 24px;
    text-align: center;
}
.cy-empty-inner {
    max-width: 540px;
    margin: 0 auto;
    background: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    padding: 56px 40px;
    box-shadow: var(--cy-shadow);
}
.cy-empty-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cy-lavender);
    color: var(--cy-primary);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cy-empty h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px;
    letter-spacing: -.025em;
    color: var(--cy-text);
}
.cy-empty p { color: var(--cy-muted); font-size: 15px; margin: 0 0 28px; }

/* ════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.cy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .18s ease;
    line-height: 1;
}
.cy-btn--lg { padding: 15px 28px; font-size: 14.5px; }
.cy-btn--primary {
    background: linear-gradient(135deg, var(--cy-primary), #8B5CF6);
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(108, 60, 240, .42);
}
.cy-btn--primary:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 12px 32px -8px rgba(108, 60, 240, .55); }
.cy-btn--primary:active { transform: scale(.97); }
.cy-btn--ghost {
    background: var(--cy-surface);
    color: var(--cy-text);
    border-color: var(--cy-border);
}
.cy-btn--ghost:hover { border-color: var(--cy-primary); color: var(--cy-primary); background: var(--cy-lavender); }
.cy-btn--white {
    background: #fff;
    color: var(--cy-primary);
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.cy-btn--white:hover { transform: translateY(-1px); }
.cy-btn--success {
    background: rgba(34, 197, 94, .1);
    color: #15803D;
    border-color: rgba(34, 197, 94, .3);
}

/* ════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════ */
.cy-hero {
    margin-bottom: 24px;
}
.cy-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    background: linear-gradient(135deg, var(--cy-lavender) 0%, #FFFFFF 100%);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    padding: 56px 56px 48px;
    overflow: hidden;
    position: relative;
}
.cy-hero-grid::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(167, 139, 250, .35), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cy-hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.cy-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(108, 60, 240, .1);
    color: var(--cy-primary);
    border: 1px solid rgba(108, 60, 240, .2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    width: fit-content;
}
.cy-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cy-primary);
    box-shadow: 0 0 0 3px rgba(108, 60, 240, .25);
    animation: cy-pulse 1.6s ease-in-out infinite;
}
@keyframes cy-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108, 60, 240, .35); }
    50%      { box-shadow: 0 0 0 6px rgba(108, 60, 240, 0); }
}

.cy-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.035em;
    color: var(--cy-text);
    margin: 0;
}
.cy-hero-title span {
    background: linear-gradient(135deg, var(--cy-primary), var(--cy-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cy-hero-deck {
    color: var(--cy-muted);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 460px;
    margin: 0;
}

/* Countdown card */
.cy-countdown-card {
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius);
    padding: 18px 22px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: fit-content;
    max-width: 100%;
}
.cy-countdown-title {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--cy-muted);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.cy-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 56px);
    gap: 16px;
}
.cy-countdown-cell {
    text-align: center;
}
.cy-countdown-cell strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cy-text);
    line-height: 1;
    letter-spacing: -.025em;
    font-variant-numeric: tabular-nums;
}
.cy-countdown-cell em {
    font-style: normal;
    font-size: 11px;
    color: var(--cy-muted);
    margin-top: 4px;
    display: block;
}

.cy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cy-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.cy-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--cy-border);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--cy-muted);
    font-weight: 500;
}
.cy-hero-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cy-success);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}
.cy-hero-stat-dot--live { animation: cy-pulse-success 1.6s ease-in-out infinite; }
@keyframes cy-pulse-success {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .4); }
    50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Hero right (visual + circular badge) */
.cy-hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    border-radius: var(--cy-radius-lg);
    overflow: hidden;
    box-shadow: var(--cy-shadow-lg);
    background: var(--cy-lavender);
}
.cy-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cy-hero-badge-circle {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    animation: cy-spin 18s linear infinite;
}
.cy-hero-badge-circle svg { width: 100%; height: 100%; }
@keyframes cy-spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════
   2. TABS
   ═══════════════════════════════════════ */
.cy-tabs {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap;
}
.cy-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: var(--cy-surface);
    border: 1.5px solid var(--cy-border);
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cy-text);
    text-decoration: none;
    transition: all .18s ease;
    flex: 1;
    justify-content: center;
    min-width: 180px;
}
.cy-tab:hover {
    border-color: var(--cy-primary);
    color: var(--cy-primary);
    background: var(--cy-lavender);
}
.cy-tab.is-active {
    background: linear-gradient(135deg, var(--cy-primary), #8B5CF6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px -6px rgba(108, 60, 240, .42);
}

/* ════════════════════════════════════════
   3. SECTION HEADS
   ═══════════════════════════════════════ */
.cy-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cy-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cy-section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--cy-text);
    margin: 0;
    letter-spacing: -.025em;
}
.cy-section-title svg { color: var(--cy-primary); }
.cy-section-deck {
    color: var(--cy-muted);
    font-size: 14px;
    margin: 6px 0 0;
}
.cy-section-link {
    color: var(--cy-primary);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s ease;
}
.cy-section-link:hover { opacity: .8; }
.cy-section-filter .cy-select {
    padding: 11px 16px;
    border: 1.5px solid var(--cy-border);
    border-radius: 12px;
    background: var(--cy-surface);
    color: var(--cy-text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .15s ease;
    min-width: 180px;
}
.cy-select:hover, .cy-select:focus { border-color: var(--cy-primary); outline: none; }

/* ════════════════════════════════════════
   3. VOTE SECTION (cards + sidebar)
   ═══════════════════════════════════════ */
.cy-vote-section { margin: 32px 0 48px; }
.cy-vote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: flex-start;
}

/* Cards grid */
.cy-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.cy-card-empty {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: var(--cy-muted);
    background: var(--cy-surface);
    border: 1px dashed var(--cy-border);
    border-radius: var(--cy-radius);
}

.cy-card {
    background: var(--cy-surface);
    border: 1.5px solid var(--cy-border);
    border-radius: var(--cy-radius);
    overflow: hidden;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}
.cy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(108, 60, 240, .35);
    box-shadow: var(--cy-shadow);
}
.cy-card.is-leader {
    border-color: var(--cy-primary);
    box-shadow: 0 12px 32px -8px rgba(108, 60, 240, .28);
}
.cy-card.is-voted {
    border-color: var(--cy-success);
}

.cy-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--cy-lavender);
    overflow: hidden;
}
.cy-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.cy-card:hover .cy-card-media img { transform: scale(1.05); }
.cy-card-media--ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cy-muted);
}

.cy-card-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    background: rgba(31, 27, 46, .85);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cy-card-pop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--cy-gold), #FCD34D);
    color: #78350F;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 4px 12px rgba(245, 185, 66, .35);
}
.cy-card-check {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cy-success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, .4);
}

.cy-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cy-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cy-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cy-lavender) center/cover no-repeat;
    color: var(--cy-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cy-card-username {
    font-size: 13px;
    font-weight: 600;
    color: var(--cy-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cy-card-verified { color: var(--cy-primary); }

.cy-card-caption {
    font-size: 13px;
    color: var(--cy-muted);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cy-card-stats {
    display: flex;
    gap: 14px;
    color: var(--cy-muted);
    font-size: 12px;
    font-weight: 500;
}
.cy-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cy-card-stat svg { color: var(--cy-primary); }

.cy-card-vote-btn {
    margin-top: 4px;
    padding: 11px 14px;
    background: linear-gradient(135deg, var(--cy-primary), #8B5CF6);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .15s ease;
    box-shadow: 0 4px 12px -2px rgba(108, 60, 240, .35);
}
.cy-card-vote-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cy-card-vote-btn:active { transform: scale(.97); }
.cy-card-vote-btn.is-voted,
.cy-card-vote-btn[disabled] {
    background: rgba(34, 197, 94, .12);
    color: #15803D;
    box-shadow: none;
    cursor: default;
    transform: none;
    filter: none;
}

.cy-card-progress {
    height: 5px;
    background: var(--cy-lavender);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 6px;
}
.cy-card-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cy-primary), var(--cy-soft));
    border-radius: 999px;
    transition: width .6s ease;
}
.cy-card-progress-label {
    font-size: 11.5px;
    color: var(--cy-muted);
    margin: 0;
    font-weight: 500;
}

.cy-load-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* Sidebar */
.cy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.cy-side-card {
    background: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius);
    padding: 22px;
}
.cy-side-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.cy-side-card-head h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: var(--cy-text);
    letter-spacing: -.01em;
}
.cy-side-card-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cy-primary);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
}
.cy-side-card-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cy-primary);
    animation: cy-pulse 1.6s ease-in-out infinite;
}

.cy-side-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cy-side-stats li {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cy-border);
}
.cy-side-stats li:last-child { border-bottom: 0; padding-bottom: 0; }

.cy-side-stats-label {
    display: block;
    font-size: 12px;
    color: var(--cy-muted);
    margin-bottom: 6px;
}
.cy-side-stats-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--cy-text);
    letter-spacing: -.02em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.cy-side-stats-value + em {
    font-style: normal;
    font-size: 11.5px;
    color: var(--cy-muted);
    margin-top: 2px;
    display: block;
}
.cy-side-stats-progress {
    height: 6px;
    background: var(--cy-lavender);
    border-radius: 999px;
    margin-top: 8px;
    overflow: hidden;
}
.cy-side-stats-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cy-primary), var(--cy-soft));
    border-radius: 999px;
    transition: width .5s ease;
}

.cy-side-mini-countdown {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    font-size: 11.5px;
    color: var(--cy-muted);
}
.cy-side-mini-countdown strong {
    color: var(--cy-text);
    font-size: 14px;
    margin-right: 2px;
    font-variant-numeric: tabular-nums;
}

.cy-side-top3 {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--cy-border);
}
.cy-side-top3 h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--cy-primary);
    margin: 0 0 12px;
}
.cy-side-top3-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cy-side-top3-list li {
    display: grid;
    grid-template-columns: 22px 26px 1fr auto;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.cy-side-top3-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--cy-muted);
}
.cy-side-top3-rank--1 { background: linear-gradient(135deg, var(--cy-gold), #FCD34D); color: #78350F; }
.cy-side-top3-rank--2 { background: var(--cy-lavender); color: var(--cy-primary); }
.cy-side-top3-rank--3 { background: rgba(108, 60, 240, .08); color: var(--cy-primary); }
.cy-side-top3-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cy-lavender) center/cover no-repeat;
    color: var(--cy-primary);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-side-top3-name { color: var(--cy-text); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cy-side-top3-vote { color: var(--cy-text); font-weight: 700; font-variant-numeric: tabular-nums; }

.cy-side-top3-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cy-primary);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    background: var(--cy-lavender);
    border-radius: 10px;
    width: 100%;
    justify-content: center;
    transition: background .15s ease;
}
.cy-side-top3-cta:hover { background: rgba(108, 60, 240, .14); }

/* CTA card */
.cy-side-cta {
    background: linear-gradient(135deg, var(--cy-primary) 0%, #8B5CF6 100%);
    color: #fff;
    border-radius: var(--cy-radius);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cy-side-cta::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    border-radius: 50%;
}
.cy-side-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cy-gold);
    position: relative;
    z-index: 1;
}
.cy-side-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}
.cy-side-cta-deck {
    font-size: 13px;
    margin: 0 0 18px;
    opacity: .85;
    position: relative;
    z-index: 1;
}
.cy-side-cta .cy-btn { width: 100%; justify-content: center; position: relative; z-index: 1; }
.cy-side-cta-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════
   4. LİDERLİK TABLOSU
   ═══════════════════════════════════════ */
.cy-leader-section {
    background: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.cy-leader-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}
.cy-leader-thead {
    display: none; /* her satır kendi etiketini taşır gerekirse görünür yapılır */
    grid-template-columns: 36px 1fr 100px 80px 80px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--cy-border);
    color: var(--cy-muted);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.cy-leader-row {
    display: grid;
    grid-template-columns: 36px 1fr 100px 80px 80px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    transition: background .15s ease, transform .15s ease;
    font-size: 13.5px;
    border-bottom: 1px solid #F4F0FF;
    color: var(--cy-text);
    text-decoration: none;
}
.cy-leader-row:hover { background: var(--cy-lavender); transform: translateX(2px); }
.cy-leader-row.is-podium { background: linear-gradient(90deg, var(--cy-lavender), transparent); }

.cy-leader-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cy-muted);
    background: var(--cy-bg);
}
.cy-leader-rank--1 { background: linear-gradient(135deg, var(--cy-gold), #FCD34D); color: #78350F; }
.cy-leader-rank--2 { background: linear-gradient(135deg, #E5E7EB, #F3F4F6); color: #4B5563; }
.cy-leader-rank--3 { background: linear-gradient(135deg, #FED7AA, #FDBA74); color: #9A3412; }

.cy-leader-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.cy-leader-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--cy-lavender) center/cover no-repeat;
    color: var(--cy-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cy-leader-user strong { font-weight: 600; color: var(--cy-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cy-leader-cat {
    font-size: 12.5px;
    color: var(--cy-muted);
}
.cy-leader-vote {
    font-weight: 700;
    color: var(--cy-text);
    font-variant-numeric: tabular-nums;
}
.cy-leader-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.cy-leader-trend.is-up   { color: var(--cy-success); }
.cy-leader-trend.is-down { color: #DC2626; }
.cy-leader-trend.is-flat { color: var(--cy-muted); }

/* ════════════════════════════════════════
   5. REWARDS
   ═══════════════════════════════════════ */
.cy-rewards-section {
    background: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    padding: 40px 32px;
    margin-bottom: 48px;
}
.cy-rewards-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.cy-reward {
    text-align: center;
    padding: 22px 14px;
    background: var(--cy-bg);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius);
    transition: all .2s ease;
}
.cy-reward:hover {
    border-color: var(--cy-primary);
    background: var(--cy-lavender);
    transform: translateY(-3px);
}
.cy-reward-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: var(--cy-lavender);
    color: var(--cy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-reward h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cy-text);
    margin: 0 0 6px;
    line-height: 1.3;
}
.cy-reward p {
    font-size: 11.5px;
    color: var(--cy-muted);
    margin: 0;
    line-height: 1.4;
}

/* ════════════════════════════════════════
   6. NASIL ÇALIŞIR
   ═══════════════════════════════════════ */
.cy-how-section {
    background: var(--cy-surface);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius-lg);
    padding: 40px 32px;
    margin-bottom: 48px;
}
.cy-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: stretch;
    margin-top: 20px;
}
.cy-step {
    text-align: center;
    padding: 20px 16px;
    background: var(--cy-bg);
    border: 1px solid var(--cy-border);
    border-radius: var(--cy-radius);
    position: relative;
}
.cy-step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--cy-primary), #8B5CF6);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-step-icon {
    width: 56px;
    height: 56px;
    margin: 12px auto 14px;
    background: var(--cy-lavender);
    color: var(--cy-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--cy-text);
    margin: 0 0 6px;
}
.cy-step p {
    font-size: 12.5px;
    color: var(--cy-muted);
    margin: 0;
    line-height: 1.45;
}
.cy-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cy-soft);
}

/* ════════════════════════════════════════
   7. WINNERS
   ═══════════════════════════════════════ */
.cy-winners-section { margin-bottom: 24px; }
.cy-winners-empty {
    background: var(--cy-surface);
    border: 1px dashed var(--cy-border);
    border-radius: var(--cy-radius);
    padding: 60px 24px;
    text-align: center;
    color: var(--cy-muted);
}
.cy-winners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.cy-winner-card {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--cy-radius-lg);
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--cy-shadow);
}
.cy-winner-card-bg {
    position: absolute;
    inset: 0;
    background: var(--cy-lavender) center/cover no-repeat;
    z-index: 0;
    transition: transform .5s ease;
}
.cy-winner-card:hover .cy-winner-card-bg { transform: scale(1.05); }
.cy-winner-card-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,27,46,.05) 0%, rgba(31,27,46,.85) 100%);
    z-index: 1;
}
.cy-winner-rank-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.94);
    color: var(--cy-text);
    border-radius: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cy-winner-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 20px 22px;
    color: #fff;
}
.cy-winner-card-when {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,.22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cy-winner-card-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    letter-spacing: -.01em;
}
.cy-winner-card-name svg { color: var(--cy-gold); }
.cy-winner-card-tag {
    font-size: 12.5px;
    margin: 0 0 14px;
    opacity: .85;
}
.cy-winner-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 16px;
    background: #fff;
    color: var(--cy-text);
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease;
}
.cy-winner-card-cta:hover { transform: translateY(-1px); }

/* ════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1180px) {
    .cy-hero-title { font-size: 52px; }
    .cy-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cy-rewards-grid { grid-template-columns: repeat(3, 1fr); }
    .cy-leader-table { grid-template-columns: 1fr; }
    .cy-vote-grid { grid-template-columns: 1fr; }
    .cy-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .cy-sidebar > * { flex: 1; min-width: 280px; }
}
@media (max-width: 920px) {
    .cy-page { padding: 16px 16px 60px; }
    .cy-hero-grid { grid-template-columns: 1fr; padding: 32px 28px; }
    .cy-hero-title { font-size: 44px; }
    .cy-hero-right { order: -1; }
    .cy-hero-visual { aspect-ratio: 16/10; max-width: 100%; }
    .cy-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .cy-rewards-grid { grid-template-columns: repeat(2, 1fr); }
    .cy-steps { grid-template-columns: 1fr; }
    .cy-step-arrow { transform: rotate(90deg); margin: 0 auto; }
    .cy-winners-grid { grid-template-columns: 1fr; }
    .cy-leader-row { grid-template-columns: 28px 1fr 70px 60px; }
    .cy-leader-trend { display: none; }
    .cy-tab { min-width: 140px; flex: 1 1 calc(50% - 12px); }
}
@media (max-width: 560px) {
    .cy-hero-grid { padding: 24px 18px; }
    .cy-hero-title { font-size: 36px; }
    .cy-countdown-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .cy-countdown-cell strong { font-size: 22px; }
    .cy-card-grid { grid-template-columns: 1fr; }
    .cy-rewards-grid { grid-template-columns: 1fr; }
    .cy-leader-section, .cy-rewards-section, .cy-how-section { padding: 24px 18px; }
    .cy-leader-row { grid-template-columns: 24px 1fr 60px; padding: 10px; font-size: 12.5px; }
    .cy-leader-cat { display: none; }
    .cy-tabs { gap: 8px; }
    .cy-tab { font-size: 12.5px; padding: 10px 14px; min-width: auto; }
    .cy-section-title { font-size: 22px; }
    .cy-side-cta { padding: 22px 18px; }
    .cy-side-cta-title { font-size: 19px; }
}

/* ───── Global toast (vote daily limit vb.) ───── */
.comp-toast {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%) translateY(20px);
    background: #1F1B2E;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    max-width: calc(100% - 32px);
    text-align: center;
}
.comp-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════════════════════════════
   /CY REDESIGN — eski .comp-* stiller aşağıda korunmaktadır
   (sibling sayfalar — Katilimcilar, Siralama, Oyla — onları kullanır)
   ════════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════════
   DOESTAR · /kombin-yarismalari — Premium Competition Landing
   Mor/lila aksanlar + soft glow + editorial fashion-tech.
   ════════════════════════════════════════════════════════════════════ */

.comp-page {
    --comp-purple-50: #faf5ff;
    --comp-purple-100: #f3e8ff;
    --comp-purple-200: #e9d5ff;
    --comp-purple-400: #c084fc;
    --comp-purple-500: #a855f7;
    --comp-purple-600: #9333ea;
    --comp-purple-700: #7c3aed;
    --comp-purple-800: #6d28d9;
    --comp-gold: #c8a86b;
    --comp-line: #e9e4f5;
    --comp-bg: #fbfaff;
    --comp-ink: #111111;
    --comp-ink-soft: #6b7280;

    background: var(--comp-bg);
    min-height: 100vh;
}

/* ════════════════ EMPTY STATE ════════════════ */
.comp-empty {
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}
.comp-empty-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.comp-empty h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--comp-ink);
    margin: 0 0 12px;
    letter-spacing: -0.025em;
}
.comp-empty p { color: var(--comp-ink-soft); margin-bottom: 24px; }

/* ════════════════ HERO ════════════════ */
.comp-hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(168, 85, 247, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(192, 132, 252, 0.08), transparent 60%),
        linear-gradient(180deg, #fdfcff 0%, #faf5ff 100%);
    overflow: hidden;
}
.comp-hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.comp-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.comp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--comp-purple-200);
    color: var(--comp-purple-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.10);
}
.comp-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--comp-purple-500);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.20);
    animation: compPulse 1.6s ease-in-out infinite;
}
@keyframes compPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.20); }
    50% { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.05); }
}

.comp-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--comp-ink);
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.comp-hero-title span {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.comp-hero-deck {
    margin: 0 0 28px;
    font-size: 16px;
    color: var(--comp-ink-soft);
    line-height: 1.6;
    max-width: 480px;
}

.comp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.comp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.comp-btn--primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.32);
}
.comp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.42);
    color: #ffffff;
}
.comp-btn--ghost {
    background: #ffffff;
    border: 1.5px solid var(--comp-line);
    color: var(--comp-ink);
}
.comp-btn--ghost:hover { border-color: var(--comp-ink); color: var(--comp-ink); }
.comp-btn--vote {
    border-color: rgba(168, 85, 247, .35);
    color: var(--comp-purple-700);
    background: linear-gradient(135deg, rgba(168, 85, 247, .08), rgba(124, 58, 237, .04));
}
.comp-btn--vote:hover {
    border-color: var(--comp-purple-700);
    background: linear-gradient(135deg, rgba(168, 85, 247, .14), rgba(124, 58, 237, .08));
    color: var(--comp-purple-800);
}
.comp-btn--white {
    background: #ffffff;
    color: var(--comp-purple-700);
}
.comp-btn--white:hover { transform: translateY(-2px); color: var(--comp-purple-800); }
.comp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.comp-hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 700;
}

/* Countdown */
.comp-countdown {
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
    max-width: 460px;
}
.comp-countdown-title {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--comp-ink-soft);
}
.comp-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.comp-countdown-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.comp-countdown-cell strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.comp-countdown-cell em {
    font-style: normal;
    font-size: 11px;
    color: var(--comp-ink-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.comp-countdown-range {
    margin: 12px 0 0;
    text-align: center;
    font-size: 11.5px;
    color: var(--comp-ink-soft);
}

/* Hero right: visual + theme card */
.comp-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 460px;
}
.comp-hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.20);
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}
.comp-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comp-hero-visual-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18));
    pointer-events: none;
}

.comp-hero-theme {
    position: absolute;
    right: -12px;
    top: 80px;
    width: 280px;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 48px rgba(124, 58, 237, 0.18);
}
.comp-hero-theme-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.comp-hero-theme-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--comp-purple-700);
}
.comp-hero-theme-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-hero-theme h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--comp-ink);
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.comp-hero-theme p {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--comp-ink-soft);
    line-height: 1.5;
}
.comp-hero-theme-points {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.comp-hero-theme-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--comp-ink);
}
.comp-hero-theme-bullet {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--comp-purple-100);
    flex-shrink: 0;
    position: relative;
}
.comp-hero-theme-bullet::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--comp-purple-700);
}
.comp-hero-theme-cta {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--comp-purple-700);
    text-decoration: none;
}

/* ════════════════ SECTIONS ════════════════ */
.comp-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px;
}
.comp-section--alt {
    background: #ffffff;
    border-top: 1px solid var(--comp-line);
    border-bottom: 1px solid var(--comp-line);
    max-width: none;
    padding: 60px 24px;
}
.comp-section--alt > .comp-section-head,
.comp-section--alt > .comp-benefits {
    max-width: 1240px;
    margin: 0 auto;
}
.comp-section--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.comp-section--center { text-align: center; }

.comp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.comp-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.comp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.comp-section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.025em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.comp-section-head p {
    margin: 6px 0 0;
    color: var(--comp-ink-soft);
    font-size: 15px;
}
.comp-section-head a {
    font-size: 13px;
    font-weight: 700;
    color: var(--comp-purple-700);
    text-decoration: none;
    flex-shrink: 0;
}
.comp-section-head a:hover { color: var(--comp-purple-800); }

/* ════════════════ PODIUM (TOP 3) ════════════════ */
.comp-podium {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 22px;
    align-items: end;
}
.comp-podium-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 22px;
    padding: 22px 18px 18px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.comp-podium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.14);
}
.comp-podium-card--rank1 {
    border-color: var(--comp-gold);
    box-shadow: 0 0 0 1px var(--comp-gold), 0 24px 48px rgba(200, 168, 107, 0.20);
    transform: translateY(-12px);
}
.comp-podium-card--rank1:hover { transform: translateY(-16px); }
.comp-podium-rank {
    position: absolute;
    top: 14px; left: 14px;
    font-size: 38px;
    font-weight: 900;
    color: rgba(168, 85, 247, 0.10);
    line-height: 0.9;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.comp-podium-card--rank1 .comp-podium-rank { color: rgba(200, 168, 107, 0.20); font-size: 44px; }
.comp-podium-crown {
    position: absolute;
    top: 14px; right: 14px;
    color: var(--comp-gold);
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-podium-img {
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 14px;
}
.comp-podium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.comp-podium-card:hover .comp-podium-img img { transform: scale(1.04); }
.comp-podium-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.comp-podium-author {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.comp-podium-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    color: #525252;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-podium-author strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--comp-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.comp-podium-author em {
    font-style: normal;
    display: block;
    font-size: 11px;
    color: var(--comp-ink-soft);
}
.comp-podium-votes {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #e11d48;
    font-weight: 800;
    font-size: 13.5px;
    flex-shrink: 0;
}
.comp-podium-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c8a86b, #a98850);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-top: 14px;
    box-shadow: 0 4px 12px rgba(200, 168, 107, 0.32);
}

/* ════════════════ BENEFITS ════════════════ */
.comp-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.comp-benefit {
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.comp-benefit:hover {
    transform: translateY(-3px);
    border-color: var(--comp-purple-200);
    box-shadow: 0 18px 36px rgba(124, 58, 237, 0.10);
}
.comp-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.comp-benefit h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.01em;
}
.comp-benefit p {
    margin: 0;
    font-size: 13px;
    color: var(--comp-ink-soft);
    line-height: 1.55;
}

/* ════════════════ STEPS ════════════════ */
.comp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    margin-top: 8px;
}
.comp-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--comp-purple-200) 0 4px, transparent 4px 10px);
    z-index: 0;
}
.comp-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.comp-step-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
    border: 4px solid var(--comp-bg);
}
.comp-step-circle span {
    font-size: 18px;
    font-weight: 800;
}
.comp-step h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.01em;
}
.comp-step p {
    margin: 0;
    font-size: 12.5px;
    color: var(--comp-ink-soft);
    line-height: 1.5;
}

/* ════════════════ LEADERBOARD ════════════════ */
.comp-leader, .comp-categories {
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 22px;
    padding: 22px;
}
.comp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.comp-card-head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.01em;
}
.comp-card-head a {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--comp-purple-700);
    text-decoration: none;
}
.comp-card-deck {
    margin: -6px 0 14px;
    font-size: 13px;
    color: var(--comp-ink-soft);
}

.comp-leader-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.comp-leader-row {
    display: grid;
    grid-template-columns: 36px 32px 1fr auto auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--comp-line);
    font-size: 13px;
}
.comp-leader-row:last-child { border-bottom: none; }
.comp-leader-row--rank1, .comp-leader-row--rank2, .comp-leader-row--rank3 {
    background: linear-gradient(90deg, var(--comp-purple-50), transparent);
    margin: 0 -10px;
    padding-left: 14px;
    border-radius: 10px;
}
.comp-leader-rank {
    font-weight: 800;
    color: var(--comp-ink-soft);
    font-size: 12.5px;
    text-align: center;
}
.comp-leader-medal { font-size: 18px; }
.comp-leader-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    color: #525252;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-leader-name {
    color: var(--comp-ink);
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.comp-leader-cat {
    color: var(--comp-ink-soft);
    font-size: 12px;
}
.comp-leader-votes {
    color: var(--comp-purple-700);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.comp-leader-vote {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--comp-purple-200);
    color: var(--comp-purple-700);
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s ease;
}
.comp-leader-vote:hover {
    background: var(--comp-purple-700);
    color: #ffffff;
}
.comp-leader-vote.is-voted,
.comp-leader-vote[data-voted="true"] {
    background: var(--comp-purple-100);
    color: var(--comp-purple-800);
    border-color: var(--comp-purple-200);
    cursor: default;
}

/* ════════════════ KATEGORİLER ════════════════ */
.comp-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.comp-cat-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s ease;
}
.comp-cat-card:hover { transform: scale(1.03); }
.comp-cat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.comp-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65));
}
.comp-cat-name {
    position: absolute;
    bottom: 10px; left: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
}

/* ════════════════ TREND GRID ════════════════ */
.comp-trend-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}
.comp-trend-card {
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease;
}
.comp-trend-card:hover {
    transform: translateY(-3px);
    border-color: var(--comp-purple-200);
}
.comp-trend-img {
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}
.comp-trend-info {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.comp-trend-info strong {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--comp-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.comp-trend-info em {
    font-style: normal;
    font-size: 10.5px;
    color: var(--comp-ink-soft);
}
.comp-trend-votes {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #e11d48;
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px;
}

/* ════════════════ FAQ + RULES ════════════════ */
.comp-faq, .comp-rules {
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 22px;
    padding: 26px;
}
.comp-faq h3, .comp-rules-head h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.01em;
}
.comp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.comp-faq-item {
    border: 1px solid var(--comp-line);
    border-radius: 12px;
    background: #fdfcff;
}
.comp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    color: var(--comp-ink);
    font-size: 14px;
}
.comp-faq-item summary::-webkit-details-marker { display: none; }
.comp-faq-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform .15s ease, background .15s ease;
    flex-shrink: 0;
}
.comp-faq-item[open] .comp-faq-icon {
    transform: rotate(45deg);
    background: var(--comp-purple-700);
    color: #ffffff;
}
.comp-faq-answer {
    padding: 0 16px 14px;
    color: var(--comp-ink-soft);
    line-height: 1.55;
    font-size: 13.5px;
}

.comp-rules {
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.comp-rules-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.comp-rules-shield {
    color: var(--comp-purple-600);
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.comp-rules-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comp-rules-list li {
    position: relative;
    padding-left: 26px;
    font-size: 13.5px;
    color: var(--comp-ink);
    line-height: 1.55;
}
.comp-rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--comp-purple-700);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ════════════════ ALT CTA ════════════════ */
.comp-cta {
    margin: 80px 0 60px;
    padding: 0 24px;
}
.comp-cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #a855f7 100%);
    border-radius: 28px;
    padding: 44px 48px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35);
}
.comp-cta-inner::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    pointer-events: none;
}
.comp-cta-text { position: relative; }
.comp-cta-text h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
    color: #ffffff;
}
.comp-cta-text p {
    margin: 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.90);
    line-height: 1.55;
    max-width: 560px;
}
.comp-cta-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.comp-cta-countdown {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 12px 18px;
    text-align: center;
    min-width: 240px;
}
.comp-cta-countdown-title {
    margin: 0 0 8px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.75);
}
.comp-cta-countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.comp-cta-countdown-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.comp-cta-countdown-grid strong {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}
.comp-cta-countdown-grid em {
    font-style: normal;
    font-size: 9.5px;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ════════════════ SUBMIT MODAL ════════════════ */
.comp-submit-modal {
    position: fixed;
    inset: 0;
    z-index: 9700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: compFade .22s ease;
}
.comp-submit-modal[hidden] { display: none; }
@keyframes compFade { from { opacity: 0; } to { opacity: 1; } }

.comp-submit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.55);
    backdrop-filter: blur(6px);
}
.comp-submit-shell {
    position: relative;
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 32px);
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.32);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.comp-submit-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--comp-line);
}
.comp-submit-eyebrow {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
}
.comp-submit-head h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
    color: var(--comp-ink);
}
.comp-submit-head p {
    margin: 0;
    font-size: 13px;
    color: var(--comp-ink-soft);
}
.comp-submit-close {
    width: 32px; height: 32px;
    border: none;
    border-radius: 50%;
    background: #f5f5f7;
    color: var(--comp-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-submit-close:hover { background: var(--comp-purple-100); }

.comp-submit-form {
    padding: 22px 24px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.comp-submit-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.comp-submit-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--comp-ink-soft);
}
.comp-submit-select {
    padding: 12px 14px;
    border: 1.5px solid var(--comp-line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: #ffffff;
}
.comp-submit-select:focus {
    outline: none;
    border-color: var(--comp-purple-700);
}

.comp-submit-empty {
    padding: 20px;
    background: var(--comp-purple-50);
    border-radius: 12px;
    text-align: center;
    color: var(--comp-ink-soft);
    font-size: 13.5px;
}
.comp-submit-empty a {
    color: var(--comp-purple-700);
    font-weight: 700;
    text-decoration: none;
}

.comp-submit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
}
.comp-submit-post {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.comp-submit-post input { position: absolute; opacity: 0; pointer-events: none; }
.comp-submit-post-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    border: 2px solid var(--comp-line);
    overflow: hidden;
    background: #f5f5f5;
    transition: border-color .15s ease;
}
.comp-submit-post-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.comp-submit-post-check {
    position: absolute;
    top: 8px; right: 8px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--comp-purple-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s ease;
}
.comp-submit-post input:checked + .comp-submit-post-frame {
    border-color: var(--comp-purple-700);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.20);
}
.comp-submit-post input:checked + .comp-submit-post-frame .comp-submit-post-check {
    opacity: 1;
    background: var(--comp-purple-700);
    color: #ffffff;
}
.comp-submit-post-title {
    font-size: 11.5px;
    color: var(--comp-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comp-submit-foot {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px 24px;
    border-top: 1px solid var(--comp-line);
    background: #fafafa;
}

/* ════════════════════════════════════════════════════════════════════
   ENTRY GRID (Tüm Katılımcılar) — Pinterest tarzı oy verilebilir kartlar
   ════════════════════════════════════════════════════════════════════ */
.comp-entries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.comp-entry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    min-width: 0;
}
.comp-entry-card:hover {
    transform: translateY(-4px);
    border-color: var(--comp-purple-200);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.14);
}
.comp-entry-card.is-own-card {
    border: 2px solid var(--comp-purple-700);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.comp-entry-media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
    overflow: hidden;
}
.comp-entry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.comp-entry-card:hover .comp-entry-media img { transform: scale(1.04); }

.comp-entry-rank {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--comp-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.comp-entry-rank--top3 {
    background: linear-gradient(135deg, #c8a86b, #a98850);
    color: #ffffff;
    font-size: 16px;
    padding: 4px 10px;
    box-shadow: 0 4px 12px rgba(200, 168, 107, 0.32);
}

.comp-entry-cat {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.78);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.comp-entry-author {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px 10px;
    min-width: 0;
}
.comp-entry-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    color: #525252;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-entry-username {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--comp-ink);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}
.comp-entry-username:hover { color: var(--comp-purple-700); }
.comp-entry-mine {
    flex-shrink: 0;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--comp-purple-700);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.10em;
}

/* Oy Ver butonu — kart alt şeridi */
.comp-entry-vote {
    margin: 0 14px 14px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--comp-purple-50);
    border: 1.5px solid var(--comp-purple-200);
    color: var(--comp-purple-700);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s ease;
}
.comp-entry-vote svg {
    transition: fill .15s ease, transform .2s ease;
}
.comp-entry-vote:hover {
    background: var(--comp-purple-700);
    color: #ffffff;
    border-color: var(--comp-purple-700);
    transform: translateY(-1px);
}
.comp-entry-vote:hover svg { transform: scale(1.15); }
.comp-entry-vote .comp-entry-vote-count {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}
.comp-entry-vote em {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}
.comp-entry-vote.is-voted,
.comp-entry-vote[data-voted="true"] {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-color: #f9a8d4;
    color: #be185d;
    cursor: default;
}
.comp-entry-vote.is-voted svg,
.comp-entry-vote[data-voted="true"] svg {
    fill: #ec4899;
    color: #ec4899;
}
.comp-entry-vote.is-voted:hover,
.comp-entry-vote[data-voted="true"]:hover {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
    transform: none;
}
.comp-entry-vote.is-own,
.comp-entry-vote:disabled {
    background: #f5f5f7;
    border-color: var(--comp-line);
    color: var(--comp-ink-soft);
    cursor: not-allowed;
}
.comp-entry-vote.is-own:hover,
.comp-entry-vote:disabled:hover {
    background: #f5f5f7;
    color: var(--comp-ink-soft);
    border-color: var(--comp-line);
    transform: none;
}

/* ════════════════════════════════════════════════════════════════════
   LISTE SAYFASI (Katilimcilar / Siralama) — shell, breadcrumb, filtre, pagination
   ════════════════════════════════════════════════════════════════════ */
.comp-list-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}

.comp-list-breadcrumb {
    margin-bottom: 18px;
    font-size: 12.5px;
    color: var(--comp-ink-soft);
}
.comp-list-breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.comp-list-breadcrumb a:hover { color: var(--comp-purple-700); }
.comp-list-breadcrumb span[aria-hidden] { margin: 0 8px; color: #d4d4d4; }
.comp-list-breadcrumb > span:last-child {
    color: var(--comp-ink);
    font-weight: 600;
}

.comp-list-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.comp-list-head h1 {
    margin: 0 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--comp-ink);
    letter-spacing: -0.025em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.comp-list-head p {
    margin: 0;
    color: var(--comp-ink-soft);
    font-size: 14.5px;
}
.comp-list-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--comp-purple-100);
    color: var(--comp-purple-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.comp-list-myrank {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--comp-purple-50), #ffffff);
    border: 1px solid var(--comp-purple-200);
    border-radius: 14px;
    text-decoration: none;
    color: var(--comp-ink);
    transition: transform .15s ease;
}
.comp-list-myrank:hover { transform: translateY(-2px); }
.comp-list-myrank span { font-size: 12px; color: var(--comp-ink-soft); display: block; }
.comp-list-myrank strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--comp-purple-700);
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}

.comp-list-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--comp-line);
    flex-wrap: wrap;
}
.comp-list-cats, .comp-list-sort {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.comp-cat-pill, .comp-sort-pill {
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    color: var(--comp-ink-soft);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}
.comp-cat-pill:hover, .comp-sort-pill:hover {
    border-color: var(--comp-purple-200);
    color: var(--comp-purple-700);
}
.comp-cat-pill.is-active, .comp-sort-pill.is-active {
    background: var(--comp-purple-700);
    border-color: var(--comp-purple-700);
    color: #ffffff;
}

.comp-list-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--comp-ink-soft);
}
.comp-list-empty svg { color: var(--comp-purple-200); margin-bottom: 16px; }
.comp-list-empty h3 {
    margin: 0 0 8px;
    color: var(--comp-ink);
    font-size: 22px;
    font-weight: 800;
}
.comp-list-empty p { margin: 0 0 18px; }

.comp-pagination {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}
.comp-page-btn {
    padding: 10px 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    color: var(--comp-ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .15s ease;
}
.comp-page-btn:hover {
    border-color: var(--comp-ink);
    color: var(--comp-ink);
}
.comp-page-btn--primary {
    background: var(--comp-purple-700);
    border-color: var(--comp-purple-700);
    color: #ffffff;
}
.comp-page-btn--primary:hover {
    background: var(--comp-purple-800);
    border-color: var(--comp-purple-800);
    color: #ffffff;
}
.comp-page-info {
    color: var(--comp-ink-soft);
    font-size: 13px;
}
.comp-page-info strong { color: var(--comp-ink); font-weight: 800; }

/* ════════════════════════════════════════════════════════════════════
   FULL RANKING TABLE — Sıralama sayfası
   ════════════════════════════════════════════════════════════════════ */
.comp-myrank-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    border: 1.5px solid var(--comp-purple-200);
    border-radius: 18px;
    margin-bottom: 24px;
}
.comp-myrank-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--comp-purple-700);
    line-height: 1;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
    flex-shrink: 0;
}
.comp-myrank-banner > div:nth-child(2) { flex: 1; }
.comp-myrank-banner strong {
    display: block;
    font-size: 15px;
    color: var(--comp-ink);
    font-weight: 800;
    margin-bottom: 2px;
}
.comp-myrank-banner em {
    font-style: normal;
    color: var(--comp-ink-soft);
    font-size: 13px;
}

.comp-rank-table {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid var(--comp-line);
    border-radius: 18px;
    overflow: hidden;
}
.comp-rank-row {
    display: grid;
    grid-template-columns: 56px 64px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--comp-line);
    transition: background .15s ease;
}
.comp-rank-row:last-child { border-bottom: none; }
.comp-rank-row:hover { background: #fdfcff; }
.comp-rank-row.is-own-row {
    background: linear-gradient(90deg, var(--comp-purple-50), transparent);
    border-left: 3px solid var(--comp-purple-700);
    padding-left: 15px;
}
.comp-rank-row.is-podium {
    background: linear-gradient(90deg, rgba(200, 168, 107, 0.08), transparent);
}
.comp-rank-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--comp-ink);
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
    text-align: center;
}
.comp-rank-thumb {
    display: block;
    width: 64px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}
.comp-rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comp-rank-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.comp-rank-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--comp-ink);
    font-weight: 700;
}
.comp-rank-name:hover { color: var(--comp-purple-700); }
.comp-rank-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    color: #525252;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.comp-rank-cat {
    font-size: 12px;
    color: var(--comp-ink-soft);
    margin-left: 36px;
}
.comp-rank-stats {
    display: flex;
    gap: 18px;
}
.comp-rank-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}
.comp-rank-stat em {
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--comp-ink-soft);
}
.comp-rank-stat strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--comp-ink);
    font-variant-numeric: tabular-nums;
}
.comp-rank-stat--total strong { color: var(--comp-purple-700); }

/* ════════════════════════════════════════════════════════════════════
   VOTE PAGE — Hızlı Oyla (Tinder/Hot-or-Not stack)
   ════════════════════════════════════════════════════════════════════ */
.vote-page {
    --vote-purple-700: #7c3aed;
    --vote-purple-100: #f3e8ff;
    --vote-line: #e9e4f5;

    min-height: 100vh;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168, 85, 247, 0.10), transparent 70%),
                linear-gradient(180deg, #fdfcff, #faf5ff);
    display: flex;
    flex-direction: column;
}

/* Topbar */
.vote-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--vote-line);
    position: sticky;
    top: 0;
    z-index: 20;
}
.vote-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vote-line);
    color: #111;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
}
.vote-back:hover { border-color: #111; color: #111; }
.vote-topbar-center {
    text-align: center;
    line-height: 1.1;
}
.vote-topbar-center .vote-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--vote-purple-700);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.vote-topbar-center strong {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.01em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.vote-progress {
    justify-self: end;
    padding: 7px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vote-line);
    font-size: 12px;
    color: #6b7280;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.vote-progress span { color: var(--vote-purple-700); font-weight: 800; }
.vote-progress em { font-style: normal; }

/* Kategori bar */
.vote-cat-bar {
    display: flex;
    gap: 8px;
    padding: 14px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid var(--vote-line);
    background: rgba(255, 255, 255, 0.5);
}
.vote-cat-bar::-webkit-scrollbar { display: none; }
.vote-cat {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--vote-line);
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .15s ease;
}
.vote-cat em {
    font-style: normal;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f5f3ff;
    color: var(--vote-purple-700);
    font-weight: 700;
}
.vote-cat:hover { border-color: #111; color: #111; }
.vote-cat.is-active {
    background: var(--vote-purple-700);
    border-color: var(--vote-purple-700);
    color: #ffffff;
}
.vote-cat.is-active em { background: rgba(255, 255, 255, 0.20); color: #ffffff; }

/* Stage */
.vote-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    position: relative;
}

/* Empty state */
.vote-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 80px 24px;
    text-align: center;
}
.vote-empty-icon {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.32);
}
.vote-empty h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.025em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.vote-empty p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    max-width: 420px;
    line-height: 1.55;
}
.vote-empty-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

/* Stack */
.vote-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

.vote-card {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(124, 58, 237, 0.20);
    transform-origin: center;
    transition: transform .35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow .35s ease;
    cursor: grab;
    touch-action: none;
    user-select: none;
}
/* Stack depth — gerideki kartlar küçük ve aşağıda */
.vote-card[data-stack-pos="0"] { z-index: 3; }
.vote-card[data-stack-pos="1"] { z-index: 2; transform: translateY(12px) scale(0.96); opacity: 0.85; }
.vote-card[data-stack-pos="2"] { z-index: 1; transform: translateY(24px) scale(0.92); opacity: 0.65; }
.vote-card[data-stack-pos="3"], .vote-card[data-stack-pos="4"] { display: none; }

.vote-card.is-dragging {
    transition: none;
    cursor: grabbing;
}
.vote-card.is-flying-right {
    transform: translate(800px, -80px) rotate(40deg) !important;
    opacity: 0;
}
.vote-card.is-flying-left {
    transform: translate(-800px, -80px) rotate(-40deg) !important;
    opacity: 0;
}

.vote-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f7;
}
.vote-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* drag esnasında image drag yapmasın */
    -webkit-user-drag: none;
}

.vote-card-cat {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    color: #111;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.vote-card-rank {
    position: absolute;
    top: 16px; right: 16px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c8a86b, #a98850);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(200, 168, 107, 0.32);
}

.vote-card-veil {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 60px 20px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
    color: #ffffff;
}
.vote-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vote-card-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.18);
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255,255,255,0.30);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vote-card-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.vote-card-author em {
    font-style: normal;
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

/* Stamps — drag esnasında belirir */
.vote-stamp {
    position: absolute;
    top: 50px;
    padding: 12px 22px;
    border-radius: 14px;
    border: 4px solid;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity .1s ease;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.vote-stamp--like {
    right: 30px;
    color: #16a34a;
    border-color: #16a34a;
    transform: rotate(20deg);
    opacity: var(--like-op, 0);
}
.vote-stamp--skip {
    left: 30px;
    color: #dc2626;
    border-color: #dc2626;
    transform: rotate(-20deg);
    opacity: var(--skip-op, 0);
}

/* Action buttons */
.vote-actions {
    display: flex;
    gap: 18px;
    margin-top: 32px;
    align-items: center;
}
.vote-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--vote-line);
    background: #ffffff;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.vote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.vote-btn--skip:hover {
    border-color: #dc2626;
    color: #dc2626;
}
.vote-btn--like {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.40);
}
.vote-btn--like:hover {
    background: linear-gradient(135deg, #db2777, #be185d);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.50);
}
.vote-btn--detail {
    width: 44px;
    height: 44px;
}
.vote-btn--detail:hover {
    border-color: var(--vote-purple-700);
    color: var(--vote-purple-700);
}

.vote-shortcuts {
    margin-top: 18px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}
.vote-shortcuts kbd {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid var(--vote-line);
    color: #111;
    font-size: 11px;
    font-family: ui-monospace, SF Mono, Menlo, monospace;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

/* Done overlay */
.vote-done {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    text-align: center;
    padding: 40px 24px;
}
.vote-done[hidden] { display: none; }
.vote-done-icon {
    font-size: 60px;
    line-height: 1;
}
.vote-done h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.025em;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}
.vote-done p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}
.vote-done p strong {
    color: var(--vote-purple-700);
    font-weight: 800;
    font-size: 18px;
}
.vote-done-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

@media (max-width: 540px) {
    .vote-topbar { grid-template-columns: 1fr 1fr; padding: 12px 14px; }
    .vote-topbar-center { display: none; }
    .vote-back span { display: none; }
    .vote-cat-bar { padding: 12px 14px; }
    .vote-stack { max-width: 380px; }
    .vote-shortcuts { display: none; }
    .vote-stage { padding: 20px 14px 100px; }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
    .comp-section--cols { grid-template-columns: 1fr; }
    .comp-trend-grid { grid-template-columns: repeat(4, 1fr); }
    .comp-benefits { grid-template-columns: repeat(2, 1fr); }
    .comp-entries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .comp-rank-stats { gap: 12px; }
    .comp-rank-stat { min-width: 50px; }
}

@media (max-width: 760px) {
    .comp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 18px 60px;
    }
    .comp-hero-right { min-height: auto; }
    .comp-hero-theme {
        position: static;
        width: 100%;
        margin-top: 18px;
    }
    .comp-section { padding: 40px 18px; }
    .comp-section--alt { padding: 40px 18px; }
    .comp-podium {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .comp-podium-card--rank1 { transform: none; }
    .comp-podium-card--rank1:hover { transform: translateY(-4px); }
    .comp-benefits { grid-template-columns: 1fr; }
    .comp-steps { grid-template-columns: 1fr; gap: 24px; }
    .comp-steps::before { display: none; }
    .comp-leader-row {
        grid-template-columns: 28px 28px 1fr auto;
        gap: 8px;
        font-size: 12px;
    }
    .comp-leader-cat, .comp-leader-vote { display: none; }
    .comp-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .comp-trend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .comp-cta-inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 24px;
    }
    .comp-cta-side { align-items: stretch; }
    .comp-cta-countdown { min-width: auto; }
    .comp-submit-grid { grid-template-columns: repeat(2, 1fr); }

    .comp-entries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .comp-list-shell { padding: 20px 14px 60px; }
    .comp-list-filters { flex-direction: column; align-items: stretch; gap: 12px; }
    .comp-list-cats, .comp-list-sort {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }
    .comp-list-cats::-webkit-scrollbar, .comp-list-sort::-webkit-scrollbar { display: none; }

    .comp-rank-row {
        grid-template-columns: 40px 56px 1fr;
        gap: 10px;
        padding: 12px;
    }
    .comp-rank-stats { display: none; }
    .comp-rank-cat { margin-left: 0; }

    .comp-myrank-banner { flex-direction: column; align-items: flex-start; text-align: left; }
    .comp-myrank-num { font-size: 32px; }
}

/* ============================================================
   Sticky CTA Bar — global, layout'ta her sayfada görünür
   ============================================================ */
.comp-sticky-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 990;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #0A0A0A;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 48px -12px rgba(0,0,0,.45), 0 4px 14px rgba(0,0,0,.18);
    overflow: hidden;
    max-width: calc(100% - 32px);
    font-size: 13px;
    line-height: 1.2;
    border: 1px solid rgba(255,255,255,.08);
    animation: comp-sticky-in .45s cubic-bezier(.2,.7,.3,1);
}
@keyframes comp-sticky-in {
    from { opacity: 0; transform: translate(-50%, 24px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.comp-sticky-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    transition: background-color .15s ease;
}
.comp-sticky-inner:hover { background: rgba(255,255,255,.06); }

.comp-sticky-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: #0A0A0A;
}

.comp-sticky-label strong {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -.01em;
    color: #fff;
}

.comp-sticky-divider {
    color: rgba(255,255,255,.32);
    font-size: 12px;
}

.comp-sticky-countdown {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}
.comp-sticky-countdown [data-comp-sticky-time] {
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.comp-sticky-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -.01em;
    border-left: 1px solid rgba(255,255,255,.08);
    transition: filter .15s ease, transform .15s ease;
}
.comp-sticky-cta:hover { filter: brightness(1.08); }
.comp-sticky-cta:active { transform: scale(.97); }

.comp-sticky-cta--vote {
    background: linear-gradient(135deg, #E11D48, #F43F5E);
}

@media (max-width: 640px) {
    .comp-sticky-bar {
        bottom: 12px;
        font-size: 12px;
    }
    .comp-sticky-inner { padding: 9px 12px; gap: 8px; }
    .comp-sticky-icon { width: 20px; height: 20px; }
    .comp-sticky-icon svg { width: 12px; height: 12px; }
    .comp-sticky-divider { display: none; }
    .comp-sticky-countdown { display: none; }
    .comp-sticky-label strong { font-size: 12px; }
    .comp-sticky-cta { padding: 9px 14px; font-size: 12px; }
}

/* Çok küçük ekranlarda gereksiz kelimeleri gizle */
@media (max-width: 360px) {
    .comp-sticky-cta svg { display: none; }
}

/* ============================================================
   Akış kartı — 🏆 Yarışmaya Gönder butonu (sadece kendi postlarda)
   ============================================================ */
.feed-action-compete {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, .35);
    background: linear-gradient(135deg, rgba(245, 158, 11, .12), rgba(251, 191, 36, .08));
    color: #B45309;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s ease;
}
.feed-action-compete:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, .2), rgba(251, 191, 36, .14));
    border-color: rgba(245, 158, 11, .5);
    color: #92400E;
    transform: translateY(-1px);
}
.feed-action-compete:active { transform: scale(.97); }
.feed-action-compete svg { color: #D97706; }
.feed-action-compete[disabled],
.feed-action-compete.is-submitted {
    background: rgba(16, 185, 129, .1);
    border-color: rgba(16, 185, 129, .3);
    color: #059669;
    cursor: default;
}
.feed-action-compete.is-submitted svg { color: #10B981; }

/* ============================================================
   Submit Wizard Modal — 3 adımlı akış
   ============================================================ */
.comp-wiz {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.comp-wiz[hidden] { display: none; }

.comp-wiz-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: comp-wiz-fade-in .2s ease;
}

.comp-wiz-shell {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 48px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 32px 72px -12px rgba(0,0,0,.35), 0 4px 24px rgba(0,0,0,.12);
    animation: comp-wiz-pop-in .26s cubic-bezier(.2,.7,.3,1);
}

@keyframes comp-wiz-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes comp-wiz-pop-in {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.comp-wiz-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 0;
}

.comp-wiz-steps {
    display: flex;
    align-items: center;
    gap: 4px;
}
.comp-wiz-step {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #F4F4F5;
    color: #71717A;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}
.comp-wiz-step.is-active {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    box-shadow: 0 4px 12px -2px rgba(124, 58, 237, .35);
}
.comp-wiz-step.is-done {
    background: #10B981;
    color: #fff;
}
.comp-wiz-step-line {
    width: 28px;
    height: 2px;
    background: #E4E4E7;
    border-radius: 1px;
    transition: background .2s ease;
}

.comp-wiz-close {
    background: transparent;
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #71717A;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease, color .15s ease;
}
.comp-wiz-close:hover { background: #F4F4F5; color: #18181B; }

.comp-wiz-pane {
    display: none;
    padding: 20px 28px 24px;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}
.comp-wiz-pane.is-active {
    display: flex;
    animation: comp-wiz-pane-in .25s ease;
}
@keyframes comp-wiz-pane-in {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.comp-wiz-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #0A0A0A;
    line-height: 1.2;
}

.comp-wiz-deck {
    margin: 0;
    color: #525252;
    font-size: 14px;
    line-height: 1.55;
}
.comp-wiz-deck strong { color: #18181B; font-weight: 600; }

/* Kategori kartları */
.comp-wiz-cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}
.comp-wiz-cat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 14px 12px;
    border: 1.5px solid #E4E4E7;
    border-radius: 12px;
    cursor: pointer;
    transition: all .15s ease;
    background: #fff;
}
.comp-wiz-cat input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.comp-wiz-cat:hover {
    border-color: #C4B5FD;
    background: #FAF5FF;
}
.comp-wiz-cat:has(input:checked) {
    border-color: #7C3AED;
    background: linear-gradient(135deg, rgba(124, 58, 237, .06), rgba(168, 85, 247, .04));
    box-shadow: 0 4px 16px -4px rgba(124, 58, 237, .25);
}
.comp-wiz-cat-icon { font-size: 20px; line-height: 1; }
.comp-wiz-cat-label {
    font-size: 14px;
    font-weight: 600;
    color: #18181B;
    letter-spacing: -.01em;
}
.comp-wiz-cat-hint {
    font-size: 11.5px;
    color: #737373;
    line-height: 1.35;
}

/* Önizleme (pane 2) */
.comp-wiz-preview {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid #E4E4E7;
    border-radius: 12px;
    background: #FAFAFA;
}
.comp-wiz-preview-img {
    width: 84px;
    height: 112px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #E4E4E7 center/cover no-repeat;
    position: relative;
}
.comp-wiz-preview-skel {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #E4E4E7 0%, #F4F4F5 50%, #E4E4E7 100%);
    background-size: 200% 100%;
    animation: comp-wiz-skel 1.4s linear infinite;
}
@keyframes comp-wiz-skel {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}
.comp-wiz-preview-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}
.comp-wiz-preview-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #18181B;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.comp-wiz-preview-cat {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(168, 85, 247, .08));
    color: #6D28D9;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.comp-wiz-rules {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.comp-wiz-rules li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: #525252;
    line-height: 1.45;
}
.comp-wiz-rules li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 13px;
}
.comp-wiz-rules li strong { color: #18181B; font-weight: 600; }

/* Başarı (pane 3) */
.comp-wiz-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 12px 0 4px;
}
.comp-wiz-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, .14), rgba(16, 185, 129, .06));
    color: #10B981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: comp-wiz-success-pop .35s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes comp-wiz-success-pop {
    0%   { transform: scale(.4); opacity: 0; }
    70%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}

/* Footer */
.comp-wiz-foot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid #F4F4F5;
    margin-top: 4px;
}
.comp-wiz-foot--center { justify-content: center; }

.comp-wiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: all .15s ease;
}
.comp-wiz-btn--ghost {
    background: #F4F4F5;
    color: #525252;
}
.comp-wiz-btn--ghost:hover { background: #E4E4E7; color: #18181B; }

.comp-wiz-btn--primary {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    box-shadow: 0 6px 16px -4px rgba(124, 58, 237, .4);
}
.comp-wiz-btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.comp-wiz-btn--primary:active { transform: scale(.97); }
.comp-wiz-btn--primary[disabled] {
    opacity: .55;
    cursor: not-allowed;
    filter: none;
    transform: none;
}

@media (max-width: 520px) {
    .comp-wiz { padding: 0; align-items: flex-end; }
    .comp-wiz-shell {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 18px 18px 0 0;
        animation: comp-wiz-slide-up .26s cubic-bezier(.2,.7,.3,1);
    }
    @keyframes comp-wiz-slide-up {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    .comp-wiz-pane { padding: 18px 18px 22px; }
    .comp-wiz-cats { grid-template-columns: 1fr; }
    .comp-wiz-title { font-size: 19px; }
}

