@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-sidebar: #111111;
    --primary: #FFD700;
    --primary-muted: rgba(255, 215, 0, 0.1);
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: #222222;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --info: #3b82f6;
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden { display: none !important; }

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    transition: var(--transition);
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar-header {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-img {
    width: 120px;
    height: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.sidebar-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}

.nav-list {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    padding: 0 0.75rem;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--primary-muted);
    color: var(--primary);
}

.nav-link i {
    font-size: 1rem;
    width: 20px;
    display: flex;
    justify-content: center;
}

.sidebar.collapsed .nav-link span,
.sidebar.collapsed .sidebar-label,
.sidebar.collapsed .logo-container span {
    display: none;
}

.sidebar.collapsed .sidebar-header {
    justify-content: center;
    padding: 0;
}

.sidebar.collapsed .nav-link {
    justify-content: center;
}

.sidebar-user {
    padding: 1rem;
    margin: 1rem 0.75rem;
    background: #181818;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border);
}

.sidebar.collapsed .sidebar-user {
    padding: 0.5rem;
    justify-content: center;
}

.user-avatar-container {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: var(--success);
    border: 2px solid #181818;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar.collapsed .user-info {
    display: none;
}

.collapse-btn {
    margin: 0 0.75rem;
    padding: 0.75rem;
    background: #181818;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.collapse-btn:hover {
    background: #222;
    color: var(--text-main);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: var(--transition);
    padding: 1.5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed + .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
}

.breadcrumb {
    font-size: 1.25rem;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.action-btn:hover {
    color: var(--text-main);
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
}

#notification-trigger {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.625rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

#notification-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

#notification-trigger i {
    color: #9ca3af;
    transition: color 0.2s;
}

#notification-trigger:hover i {
    color: #facc15;
}

#notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #050507;
}

#notif-badge.hidden {
    display: none !important;
}

#notification-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 320px;
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    z-index: 70;
    backdrop-filter: blur(20px);
}

#notification-dropdown.hidden {
    display: none !important;
}

.text-\[10px\] { font-size: 10px; }
.text-\[9px\] { font-size: 9px; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.font-bold { font-weight: 700; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.border-b { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.mb-2 { margin-bottom: 0.5rem; }
.max-h-96 { max-height: 24rem; }
.overflow-y-auto { overflow-y: auto; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.text-center { text-align: center; }

.header-user:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 215, 0, 0.3);
}

.header-user .user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.header-user .user-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.header-user .user-role {
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-avatar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-user .user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    object-fit: cover;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.dropdown-icon {
    color: var(--text-main);
    opacity: 0.8;
    transition: var(--transition);
}

.header-user:hover .dropdown-icon {
    opacity: 1;
    transform: translateY(1px);
}

.dashboard-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.welcome-msg h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.welcome-msg p {
    color: var(--text-muted);
}

.dashboard-controls {
    display: flex;
    gap: 0.75rem;
}

.date-picker {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.export-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.export-btn:hover {
    background: #eab308;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.search-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 300px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    outline: none;
    width: 100%;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 30px;
    height: 30px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.stat-icon.gold { color: var(--primary); }

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trend-up { color: var(--success); }
.trend-down { color: var(--danger); }

.trend-label {
    color: var(--text-muted);
}

.chart-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

.card-action {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
}

.chart-container {
    height: 250px;
    position: relative;
}

.announcement-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.announcement-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.announcement-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.announcement-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.tournament-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tournament-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-live { background: rgba(34, 197, 94, 0.1); color: var(--success); }
.status-upcoming { background: rgba(59, 130, 246, 0.1); color: var(--info); }
.status-completed { background: rgba(163, 163, 163, 0.1); color: #aaa; }
.status-cancelled, .status-banned { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.user-cell { display: flex; align-items: center; gap: 0.75rem; }
.avatar-sm { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.role-badge { padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.role-admin { background: rgba(255, 215, 0, 0.1); color: var(--primary); }
.role-moderator { background: rgba(59, 130, 246, 0.1); color: var(--info); }
.role-user { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.status-online { background: var(--success); box-shadow: 0 0 10px var(--success); }
.status-offline { background: var(--text-muted); }
.status-banned { background: var(--danger); }

.action-btn { 
    width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border); 
    background: var(--bg-dark); color: var(--text-muted); cursor: pointer; 
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center;
}
.action-btn:hover { color: var(--text-main); border-color: var(--text-muted); }
.action-btn.edit:hover { color: var(--info); border-color: var(--info); }
.action-btn.ban:hover { color: var(--danger); border-color: var(--danger); }
.action-btn.delete:hover { color: var(--danger); background: rgba(239, 68, 68, 0.1); }

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.table-action {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-action:hover {
    color: var(--primary);
}

.team-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rank-badge {
    width: 24px;
    height: 24px;
    background: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.rank-1 { background: var(--primary); color: #000; }
.rank-2 { background: #cbd5e1; color: #000; }
.rank-3 { background: #b45309; color: #fff; }

.team-logo {
    width: 24px;
    height: 24px;
}

.team-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.team-stat-val {
    font-weight: 600;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-indicator {
    font-size: 0.75rem;
    color: var(--success);
}

.progress-container {
    margin-top: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 6px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pagination-btn {
    width: 28px; 
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: #1a1a1a;
    color: #fff;
    border-color: #333;
}

.pagination-btn.active {
    background: #facc15;
    border-color: #facc15;
    color: #000;
}

.pagination-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn i {
    width: 14px;
    height: 14px;
}

.pagination-ellipsis {
    color: #444;
    font-size: 0.8rem;
    padding: 0 4px;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.grid > .item-row {
    margin-bottom: 0 !important;
}

footer {
    margin-top: auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 1400px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .chart-row { grid-template-columns: 1fr 1fr; }
    .bottom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0 !important; }
}

.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.suggestion-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary);
}

.suggestion-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.member-row-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 10px;
    transition: var(--transition);
}

.member-row-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.2);
}

.member-avatar-preview {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    object-fit: cover;
    background: #111;
}

.autocomplete-suggestions {
    background: #181818 !important;
    border: 1px solid rgba(255,215,0,0.1) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5) !important;
}

.suggestion-item {
    padding: 12px 16px !important;
}

.suggestion-avatar {
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
}

.member-entry {
    transition: all 0.3s ease;
}

.member-entry:focus-within {
    border-color: rgba(255,215,0,0.2) !important;
    background: rgba(255,255,255,0.04) !important;
}

.stage-item {
    background: linear-gradient(145deg, rgba(20, 20, 20, 1), rgba(15, 15, 15, 1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.group-box {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: var(--transition);
}

.group-box:hover {
    border-color: rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.03) !important;
}

.group-team-item {
    transition: var(--transition);
}

.group-team-item:hover {
    transform: translateX(3px);
}



.text-center { text-align: center; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.rounded-2xl { border-radius: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.rounded-full { border-radius: 9999px; }
.bg-primary-muted { background-color: var(--primary-muted); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.max-w-xs { max-width: 20rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-6 { gap: 1.5rem; }

