/* style.css - Complete Stylesheet */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0b0f1a;
    --card: #161d2f;
    --accent: #0ea5e9;
    --text: #ffffff;
    --gray: #94a3b8;
    --green: #22c55e;
    --accent-dark: #0369a1;
    --red: #ef4444;
    --orange: #f97316;
    --yellow: #f59e0b;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-accent {
    0% { box-shadow: 0 5px 0 var(--accent-dark), 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { box-shadow: 0 5px 0 var(--accent-dark), 0 0 0 10px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 5px 0 var(--accent-dark), 0 0 0 0 rgba(14, 165, 233, 0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============ HEADER ============ */
.header {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
    background: #0f1420;
    animation: fadeIn 0.5s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px;
    backdrop-filter: blur(10px);
}

.header i {
    transition: transform 0.3s ease;
}

.header i:hover {
    transform: scale(1.1);
}

.container {
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ BUTTONS ============ */
.auth-btn {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.auth-btn:active {
    transform: scale(0.95);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: transparent;
    padding: 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    transform: scale(1.05);
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
    transition: border-color 0.3s ease;
}

.user-avatar:hover {
    border-color: var(--orange);
}

/* ============ SIDEBAR ============ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.open {
    display: block;
    opacity: 1;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100%;
    background: var(--bg);
    border-right: 1px solid #1f2937;
    z-index: 10001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.sidebar.open {
    left: 0;
}

.sidebar-menu-item {
    background: #1a202c;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #2a3346;
    transition: all 0.3s ease;
}

.sidebar-menu-item:hover {
    border-color: var(--orange);
    background: #1e2532;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: var(--orange);
    flex-shrink: 0;
}

.sidebar-menu-text {
    flex: 1;
    font-weight: bold;
    font-size: 15px;
    color: white;
}

/* ============ WALLET CARD ============ */
.wallet-card {
    background: linear-gradient(135deg, #1c2437, #161d2f);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #3f4e6b;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wallet-title {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 5px;
    position: relative;
}

.wallet-balance {
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    margin: 5px 0 15px;
    position: relative;
}

/* ============ BANNER ============ */
.banner {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #1f2937;
    margin: 10px 0 15px;
    background: #161d2f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.5s ease-out backwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 0.8s ease;
    text-decoration: none;
}

.slide.active {
    display: block;
}

/* ============ CATEGORY CARDS ============ */
#dynamic-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cat-card {
    background: var(--card);
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #2a3346;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeUp 0.6s ease-out backwards;
    margin-bottom: 0;
}

.cat-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cat-card:active {
    background: #1f2a41;
    transform: scale(0.98);
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.cat-card:hover .cat-img {
    transform: scale(1.08);
}

.cat-title {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    background: #1c2437;
    border-top: 1px solid #2a3346;
    letter-spacing: 0.5px;
}

/* ============ MATCH CARDS ============ */
.match-card {
    background: #1c2437;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 25px;
    border: 1px solid #2d3748;
    position: relative;
    box-shadow: 0 8px 0 #0f131e;
    transition: all 0.3s ease;
    animation: fadeUp 0.6s ease-out backwards;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 8px 0 #0f131e;
    border-color: var(--accent);
}

.match-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.match-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 2px solid #fff;
    background: #0b0f1a;
    padding: 3px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.match-card:hover .match-logo {
    transform: scale(1.1) rotate(5deg);
}

/* ============ STATS GRID ============ */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    margin-bottom: 20px;
    background: #1e283d;
    border-radius: 20px;
    padding: 12px 0;
    transition: 0.3s ease;
}

.match-card:hover .stats-grid {
    background: #25314a;
}

.stat-item span {
    display: block;
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.stat-item b {
    font-size: 18px;
    font-weight: 700;
}

/* ============ PROGRESS BAR ============ */
.progress-sec {
    margin-bottom: 18px;
}

.slot-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
    color: #a0b3d9;
}

.bar-bg {
    height: 10px;
    background: #2d3748;
    border-radius: 20px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #38bdf8);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

/* ============ BUTTON ROW ============ */
.btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.sub-btn {
    background: #2d3748;
    color: white;
    border: none;
    padding: 12px 5px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.sub-btn:hover {
    background: #3f4a61;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sub-btn:active {
    background: #1f2a41;
    transform: scale(0.95);
}

/* ============ JOIN BUTTON ============ */
.join-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-join {
    flex: 1;
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 0 var(--accent-dark);
    transition: all 0.2s ease;
    animation: pulse-accent 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-join:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-join:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--accent-dark);
    animation: none;
}

.btn-join:disabled {
    background: #4b5563;
    box-shadow: 0 5px 0 #2d3748;
    opacity: 0.7;
    transform: none;
    pointer-events: none;
    animation: none;
}

/* ============ MODAL ============ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 15px;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a202c;
    width: 100%;
    max-width: 420px;
    border-radius: 32px;
    padding: 24px;
    border: 1px solid var(--accent);
    max-height: 80vh;
    overflow-y: auto;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

/* ============ FORM ELEMENTS ============ */
.custom-swal-input {
    background: #1c2437 !important;
    color: white !important;
    border: 1px solid #3f4e6b !important;
    border-radius: 16px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
    transition: 0.3s ease;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.custom-swal-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.15) !important;
}

.custom-swal-input::placeholder {
    color: #64748b !important;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #2a3346;
    background: #0b0f1a;
    color: white;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}

.form-control::placeholder {
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ============ SUPPORT BOX ============ */
.support-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.support-box:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.support-box:active {
    transform: scale(0.95);
}

/* ============ JOINED TEAM CARD ============ */
.joined-team-card {
    background: #1a202c;
    border: 1px solid #2a3346;
    border-radius: 20px;
    padding: 15px;
    margin: 10px 0 20px 0;
    display: none;
    animation: fadeUp 0.5s ease-out;
}

.joined-team-card h5 {
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

/* ============ SLOT SELECTOR ============ */
.slot-selector-container {
    text-align: left;
    margin-top: 15px;
}

.slot-option {
    display: flex;
    align-items: center;
    background: #2d3748;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.slot-option:hover {
    background: #3f4e6b;
    transform: translateX(5px);
}

.slot-option input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.slot-option label {
    cursor: pointer;
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

/* ============ PAYMENT OPTIONS ============ */
.payment-option {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 15px 10px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.payment-option:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-option.selected {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.payment-option img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============ STATUS BADGE ============ */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: var(--yellow);
    color: #000;
}

.status-completed {
    background: var(--green);
    color: #000;
}

.status-failed {
    background: var(--red);
    color: #fff;
}

.status-active {
    background: var(--accent);
    color: #fff;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a202c;
}

::-webkit-scrollbar-thumb {
    background: #3f4e6b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .banner {
        height: 160px;
    }
    
    #dynamic-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 10px 0;
    }
    
    .stat-item b {
        font-size: 16px;
    }
    
    .btn-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }
    
    .sub-btn {
        padding: 10px 5px;
        font-size: 10px;
    }
    
    .btn-join {
        padding: 14px;
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sidebar {
        width: 260px;
        left: -280px;
    }
    
    .match-card {
        padding: 15px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .payment-option {
        height: 60px;
        padding: 10px 5px;
    }
    
    .header h3 {
        font-size: 13px !important;
    }
    
    .wallet-balance {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 140px;
    }
    
    #dynamic-categories {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .cat-title {
        font-size: 12px;
        padding: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 8px 0;
    }
    
    .stat-item b {
        font-size: 14px;
    }
    
    .stat-item span {
        font-size: 8px;
    }
    
    .btn-join {
        padding: 12px;
        font-size: 14px;
    }
    
    .match-card {
        padding: 12px;
        margin-bottom: 18px;
    }
    
    .match-logo {
        width: 40px;
        height: 40px;
    }
    
    .card-top h3 {
        font-size: 14px;
    }
}

/* ============ UTILITY CLASSES ============ */
.text-center {
    text-align: center;
}

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

.text-success {
    color: var(--green);
}

.text-danger {
    color: var(--red);
}

.text-accent {
    color: var(--accent);
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

/* ============ LOADING SPINNER ============ */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(14, 165, 233, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============ SWAL CUSTOM OVERRIDES ============ */
.swal2-popup {
    border-radius: 20px !important;
}

.swal2-title {
    color: white !important;
}

.swal2-html-container {
    color: #e2e8f0 !important;
}

.swal2-confirm {
    background: var(--accent) !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
}

.swal2-cancel {
    background: #2d3748 !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
}

/* ============ TRANSACTION HISTORY ============ */
.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1c2437;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.transaction-amount {
    font-weight: 900;
    font-size: 15px;
}

.transaction-amount.credit {
    color: var(--green);
}

.transaction-amount.debit {
    color: var(--red);
}

.transaction-status {
    font-size: 10px;
    font-weight: bold;
    margin-top: 3px;
}

/* ============ ADMIN SPECIFIC ============ */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1a202c;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #2a3346;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.admin-tab {
    padding: 10px 20px;
    border-radius: 8px;
    background: #1a202c;
    color: #94a3b8;
    text-decoration: none;
    border: 1px solid #2a3346;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
}

.admin-tab:hover {
    background: #25314a;
    color: white;
    transform: translateY(-2px);
}

.admin-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.admin-tab i {
    margin-right: 6px;
}

.admin-card {
    background: #1a202c;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #2a3346;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    color: #94a3b8;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #2a3346;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #2a3346;
}

.admin-table tr:hover {
    background: #1e2532;
}

.admin-table code {
    background: #0b0f1a;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent);
    font-size: 12px;
}

.search-box {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #2a3346;
    background: #0b0f1a;
    color: white;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.search-box:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}

.search-box::placeholder {
    color: #64748b;
}

.user-avatar-admin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============ BUTTON VARIATIONS ============ */
.btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-success {
    background: var(--green);
    color: white;
}

.btn-success:hover {
    background: #16a34a;
}

.btn-danger {
    background: var(--red);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-warning {
    background: var(--yellow);
    color: #000;
}

.btn-warning:hover {
    background: #d97706;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 11px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============ PRINT STYLES ============ */
@media print {
    .header,
    .support-box,
    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .match-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .admin-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}