/* ========== DRAFT PAGE - PROFESSIONAL LAYOUT ========== */

body.draft-page {
    min-height: 100vh;
    position: relative;
}

.draft-background {
    /* Arka plan çekiliş sayfası ile aynı: bogos-background.jpg + brightness (inline style ile veriliyor) */
}

.draft-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 1.5rem 1rem 4rem;
}

.draft-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(20, 22, 38, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.draft-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.draft-title {
    font-family: 'HiJack', sans-serif !important;
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.02em !important;
    margin: 0 !important;
    background: linear-gradient(90deg, #f59e0b 0%, #fcd34d 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.draft-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.draft-btn-refresh {
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.draft-btn-refresh:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

.draft-btn-refresh .draft-btn-icon {
    margin-right: 0.4rem;
    font-size: 0.9em;
}

.draft-root {
    min-height: 280px;
}

.draft-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.draft-phase-box {
    margin-bottom: 1.75rem;
}

.draft-phase-box h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.98);
}

.draft-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    line-height: 1.45;
}

.draft-info-box {
    padding: 1rem 1.25rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.draft-warning {
    font-size: 0.95rem;
    color: #fcd34d;
    margin-bottom: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 10px;
}

/* ---------- Player card (avatar + name + rank + EP) ---------- */

.draft-player-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.4rem;
}

.draft-player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.draft-player-body {
    flex: 1;
    min-width: 0;
}

.draft-player-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.draft-player-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.draft-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.draft-rank-emoji {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    vertical-align: middle;
}

/* ---------- Member grid (initial / exclude) ---------- */

.draft-members-grid,
.draft-exclude-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.draft-member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.draft-member-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.draft-member-card .draft-player-card {
    margin-bottom: 0.5rem;
}

.draft-member-card .draft-player-avatar {
    width: 48px;
    height: 48px;
}

.draft-exclude-card {
    flex-direction: column;
}

.draft-exclude-toggle {
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}
.draft-exclude-toggle:hover {
    border-color: rgba(248, 113, 113, 0.4);
}
.draft-exclude-toggle.draft-captain-selected {
    border-color: #f87171;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.35);
}

.draft-exclude-card .draft-btn-remove {
    width: 100%;
    margin-top: 0.6rem;
    cursor: pointer;
}

.draft-badge {
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(37, 99, 235, 0.35));
    color: #93c5fd;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.35rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ---------- Buttons (clearly clickable) ---------- */

.draft-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.draft-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.draft-btn:active {
    transform: translateY(0);
}

.draft-btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.draft-btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 22px rgba(79, 70, 229, 0.5);
}

.draft-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.draft-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.draft-btn-competitive {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.draft-btn-competitive:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 22px rgba(234, 88, 12, 0.5);
}

.draft-btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.draft-btn-vote {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.4rem;
    cursor: pointer;
}

.draft-btn-vote:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.draft-btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.draft-btn-danger:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.45);
}

.draft-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.draft-nav .draft-btn-danger {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

/* ---------- Vote grid ---------- */

.draft-vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.draft-vote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.draft-vote-card .draft-player-card {
    margin-bottom: 0;
}

.draft-vote-card .draft-player-body,
.draft-captain-select-card .draft-player-body {
    text-align: left;
}

.draft-vote-count {
    font-weight: 700;
    font-size: 1rem;
    color: #a5b4fc;
}

.draft-captain-select-card {
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}
.draft-captain-select-card:hover {
    border-color: rgba(165, 180, 252, 0.4);
}
.draft-captain-select-card.draft-captain-selected {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.4);
}
.draft-captain-select-count {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.draft-who-voted {
    margin: 1.25rem 0;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-who-voted h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.draft-who-voted ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.draft-who-voted li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Team cards (vertical, transparent) ---------- */

.draft-teams-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.draft-team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.draft-team-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.draft-captain-turn {
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(165, 180, 252, 0.35), rgba(139, 92, 246, 0.25));
    box-shadow: 0 0 20px rgba(165, 180, 252, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: draft-captain-glow 2s ease-in-out infinite;
}

.draft-captain-turn .draft-player-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@keyframes draft-captain-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(165, 180, 252, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
    50% { box-shadow: 0 0 28px rgba(165, 180, 252, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
}

.draft-turn-indicator {
    margin: 0 0 1rem 0;
    padding: 0.6rem 1rem;
    background: rgba(165, 180, 252, 0.12);
    border: 1px solid rgba(165, 180, 252, 0.25);
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.draft-turn-indicator strong {
    color: #a5b4fc;
}

.draft-turn-you {
    color: #86efac;
    font-weight: 600;
}

.draft-badge-turn {
    background: rgba(165, 180, 252, 0.25);
    color: #a5b4fc;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

.draft-team-card-header {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.draft-team-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a5b4fc;
    margin: 0;
}

.draft-team-avg {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.draft-team-card-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.draft-team-card-body .draft-player-card:first-child {
    background: rgba(165, 180, 252, 0.08);
    border-color: rgba(165, 180, 252, 0.15);
}

/* ---------- Pool (seçilebilir oyuncular) ---------- */

.draft-pool {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-pool h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.draft-turn-msg {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.85rem;
}

.draft-pool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.draft-pool-player {
    text-align: left;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.draft-pool-card {
    cursor: pointer;
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.35);
}

.draft-pool-card:hover:not(.disabled) {
    transform: translateY(-2px);
    background: rgba(79, 70, 229, 0.25);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.draft-pool-player.disabled {
    cursor: default;
    opacity: 0.75;
    background: rgba(255, 255, 255, 0.03);
}

.draft-pool-player .draft-player-card {
    margin: 0;
    border: none;
    background: transparent;
}

/* ---------- Matchups & transfers ---------- */

.draft-matchups {
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.draft-matchup-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.draft-matchup-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-matchup-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #a5b4fc;
}

.draft-matchup-vs {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.draft-matchup-diff {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: auto;
}

.draft-matchup-body {
    padding: 1rem 1.25rem;
}

/* ---------- 5v5 Eşleşme tamamlandı: Lobi başlık + Yeşil vs Kırmızı ---------- */

.fivev5-completed-matchups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.fivev5-lobi-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.fivev5-lobi-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fivev5-lobi-diff {
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

.fivev5-lobi-transfer {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fivev5-lobi-versus {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 120px;
}

.fivev5-team-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-radius: 0;
}

.fivev5-team-green {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.35) 0%, rgba(0, 100, 0, 0.25) 100%);
    border-right: 2px solid rgba(255, 255, 255, 0.15);
}

.fivev5-team-red {
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.35) 0%, rgba(139, 0, 0, 0.25) 100%);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.fivev5-team-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.fivev5-team-green .fivev5-team-label { color: #90ee90; }
.fivev5-team-red .fivev5-team-label { color: #ffb3b3; }

.fivev5-team-avg {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.fivev5-team-players {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: stretch;
}

.fivev5-team-players .draft-player-card,
.fivev5-team-players .draft-player-card-wrap {
    margin: 0;
    flex-shrink: 0;
}

.fivev5-versus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0 0.5rem;
    font-weight: 800;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.draft-no-suggestion {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin: 0;
}

.draft-suggestions-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
}

.draft-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.draft-suggestion-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-suggestion-row.draft-suggestion-readonly {
    opacity: 0.85;
}

.draft-suggestion-swap {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    min-width: 120px;
}

.draft-suggestion-diff {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.draft-select {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(30, 30, 46, 0.95);
    color: #e2e8f0;
    font-size: 0.95rem;
    min-width: 180px;
    font-weight: 500;
}

/* Açılır listede oyuncu adlarının okunaklı olması için: koyu metin, açık arka plan */
.draft-select option {
    background: #ffffff;
    color: #1e293b;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.draft-transfer-requests-card {
    margin: 1.25rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.draft-transfer-requests-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.draft-suggestions-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.draft-no-requests {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.draft-request-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.draft-request-item:last-child {
    margin-bottom: 0;
}

.draft-request-item.draft-request-pending {
    opacity: 0.9;
}

.draft-request-info {
    color: rgba(255, 255, 255, 0.9);
    order: 1;
}

.draft-request-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0.5rem 0;
    width: 100%;
    order: 3;
}

.draft-request-from {
    font-weight: 600;
    color: #a5b4fc;
}

.draft-request-actions {
    display: flex;
    gap: 0.5rem;
    order: 2;
}

.draft-lobi-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.draft-lobi-item {
    padding: 0.6rem 1rem;
    margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.draft-lobi-item strong {
    color: #a5b4fc;
}

.draft-lobi-saldiri {
    color: #f97316;
    font-weight: 600;
}

.draft-lobi-savunma {
    color: #3b82f6;
    font-weight: 600;
}

.draft-btn-success {
    background: rgba(134, 239, 172, 0.2);
    color: #86efac;
    border: 1px solid rgba(134, 239, 172, 0.35);
}

.draft-btn-success:hover {
    background: rgba(134, 239, 172, 0.3);
    border-color: rgba(134, 239, 172, 0.5);
}

.draft-actions {
    margin-top: 1.25rem;
}

/* ---------- Overlay ---------- */

.draft-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.draft-overlay-content {
    padding: 2rem 3rem;
    background: rgba(30, 32, 48, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- Oyuncu değiştir: kart üstü buton ---------- */

.draft-player-card-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.draft-replace-btn {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
}

.draft-replace-btn:hover {
    background: rgba(251, 191, 36, 0.4);
    color: #fcd34d;
}

/* ---------- Oyuncu değiştir modal ---------- */

.draft-replace-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.draft-replace-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.draft-replace-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    overflow: hidden;
    background: rgba(28, 30, 45, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.draft-replace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.draft-replace-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.draft-replace-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.draft-replace-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.draft-replace-hint {
    margin: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.draft-replace-list {
    padding: 0.75rem 1.25rem 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.draft-replace-pick {
    width: 100%;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
}

.draft-replace-pick:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.draft-replace-pick .draft-player-card {
    margin-bottom: 0;
}

.draft-replace-empty {
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
