:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --success:#22c55e;

    --background:#f5f7fb;
    --surface:#ffffff;

    --border:#e5e7eb;

    --text:#111827;
    --muted:#6b7280;

    --radius:18px;

    --cc-container-max:1320px;
    --cc-container-gutter:24px;

}

.cc-container,
.container{

    box-sizing:border-box;
    width:100%;
    max-width:var(--cc-container-max);
    margin-left:auto;
    margin-right:auto;
    padding-left:var(--cc-container-gutter);
    padding-right:var(--cc-container-gutter);

}

@media (max-width:991.98px){

    :root{ --cc-container-gutter:20px; }

}

@media (max-width:767.98px){

    :root{ --cc-container-gutter:16px; }

}

body{

    background:var(--background);

    color:var(--text);

    font-family:
        Inter,
        "Segoe UI",
        sans-serif;

}

/*==================================================
 NAVBAR
==================================================*/

.navbar{

    background:#fff!important;

    border-bottom:1px solid var(--border);

    box-shadow:0 2px 10px rgba(0,0,0,.03);

    padding:16px 0;

}

.navbar-brand{

    color:var(--primary)!important;

    font-size:26px;

    font-weight:700;

}

.nav-link{

    color:#374151!important;

    font-weight:600;

    margin:0 10px;

    transition:.2s;

}

.nav-link:hover,
.nav-link.active{

    color:var(--primary)!important;

}

/*==================================================
 PAGE
==================================================*/

.page-title{

    font-size:46px;

    font-weight:700;

    margin-bottom:10px;

}

.page-subtitle{

    color:var(--muted);

    font-size:18px;

    margin-bottom:45px;

}

/*==================================================
 SEARCH CARD
==================================================*/

.search-card{

    background:var(--surface);

    border-radius:24px;

    padding:28px;

    border:1px solid var(--border);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

}

.cc-search-input{

    height:64px;

    border-radius:18px;

    border:2px solid var(--border);

    padding:0 22px;

    font-size:18px;

    transition:.25s;

}

.cc-search-input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .20rem rgba(37,99,235,.10);

}

.cc-search-select{

    height:64px;

    border-radius:18px;

    border:2px solid var(--border);

    font-size:17px;

    padding:0 18px;

}

.cc-search-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .20rem rgba(37,99,235,.10);

}

.cc-search-btn{

    width:64px;

    height:64px;

    border:none;

    border-radius:18px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

}

.cc-search-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

.cc-search-btn:focus{

    box-shadow:none;

}

/*==================================================
 BOOKING CARD
==================================================*/

.booking-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:30px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);

    transition:.25s;

}

.booking-card:hover{

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}

.booking-title{

    font-size:30px;

    font-weight:700;

}

.booking-meta{

    color:var(--muted);

    font-size:16px;

    margin-top:12px;

}

.booking-meta i{

    color:var(--primary);

}

/*==================================================
 BUTTONS
==================================================*/

.btn-outline-primary{

    border-radius:14px;

    padding:12px 24px;

    font-weight:600;

}

.badge{

    border-radius:999px;

    font-size:13px;

    padding:8px 14px;

}

/*==================================================
 AVATAR
==================================================*/

.avatar{

    width:42px;

    height:42px;

    border-radius:50%;

    object-fit:cover;

}

/*==================================
 BOOKING TABS
===================================*/

.booking-tabs{

    display:flex;
    gap:12px;

    border:none;

}

.booking-tabs .nav-link{

    border:none;

    background:#fff;

    border:1px solid var(--border);

    border-radius:999px;

    color:var(--muted);

    font-weight:600;

    padding:12px 20px;

    transition:.25s;

}

.booking-tabs .nav-link:hover{

    border-color:var(--primary);

    color:var(--primary);

}

.booking-tabs .nav-link{

    color:var(--text);

}

.booking-tabs .nav-link.active{

    background:var(--primary);

    color:#fff !important;

    border-color:var(--primary);

}

.booking-tabs .nav-link.active,
.booking-tabs .nav-link.active:hover{

    color:#fff !important;

}

.booking-tabs .nav-link .badge{

    background:#eef2ff;

    color:var(--primary);

    font-size:12px;

    font-weight:600;

}

.booking-tabs .nav-link.active .badge{

    background:rgba(255,255,255,.25)!important;

    color:#fff!important;

}

/*====================================
 SEARCH RESULTS
====================================*/

.filter-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    position:sticky;

    top:100px;

}

.venue-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:22px;

    margin-bottom:20px;

    transition:.25s;

}

.venue-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.venue-thumb{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:18px;

}

.venue-title{

    font-size:28px;

    font-weight:700;

}

.venue-address{

    color:var(--muted);

    margin:12px 0;

}

.venue-rating{

    margin-bottom:15px;

}

.venue-tags{

    display:flex;

    gap:8px;

    flex-wrap:wrap;

}

.price{

    color:var(--muted);

    margin-top:15px;

}

.price div{

    font-size:32px;

    color:var(--primary);

    font-weight:700;

}

/*==================================================
VENUE DETAILS
==================================================*/

.venue-page-title{

    font-size:42px;

    font-weight:700;

}

.venue-summary{

    color:#6c757d;

    font-size:15px;

}

.venue-hero{

    width:100%;

    height:460px;

    object-fit:cover;

    border-radius:22px;

    margin-bottom:35px;

}

.cc-section{

    margin-bottom:45px;

}

.cc-section h3{

    margin-bottom:20px;

    font-weight:700;

}

.amenities-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.amenity-item{

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:16px;

}

.sport-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.sport-tags .badge{

    font-size:15px;

    padding:10px 15px;

}

.court-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:25px;

    transition:.25s;

}

.court-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.court-price{

    font-size:28px;

    font-weight:700;

    color:var(--primary);

}

.review-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:25px;

}

.booking-sidebar{

    position:sticky;

    top:100px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.booking-price h2{

    font-size:48px;

    font-weight:700;

    color:var(--primary);

}

/*=========================================
USER MENU
=========================================*/

.user-avatar{

    width:42px;

    height:42px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #fff;

    transition:.25s;

    cursor:pointer;

}

.cc-toast-region{position:fixed;z-index:1090;top:88px;right:20px;display:grid;gap:10px;width:min(390px,calc(100vw - 32px));pointer-events:none}.cc-toast{display:flex;align-items:flex-start;gap:11px;padding:14px 16px;border:1px solid #d9e3ef;border-left:4px solid #16a34a;border-radius:12px;background:#fff;color:#172033;box-shadow:0 14px 38px rgba(15,23,42,.16);font-weight:600;opacity:0;transform:translateY(-8px);transition:opacity .2s ease,transform .2s ease}.cc-toast.is-visible{opacity:1;transform:none}.cc-toast--error{border-left-color:#dc2626}.cc-toast--error i{color:#dc2626}.cc-toast:not(.cc-toast--error) i{color:#16a34a}@media(max-width:575.98px){.cc-toast-region{top:72px;right:16px}}

.user-avatar:hover{

    transform:scale(1.06);

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.user-dropdown{

    width:290px;

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-top:14px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.user-dropdown-header{

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px;

    background:#f8f9fc;

    border-bottom:1px solid #ececec;

}

.user-dropdown-avatar{

    width:58px;

    height:58px;

    border-radius:50%;

    object-fit:cover;

}

.user-name{

    font-size:17px;

    font-weight:700;

    color:#1d3557;

}

.user-email{

    color:#6c757d;

    font-size:13px;

    margin-bottom:2px;

}

.user-dropdown .dropdown-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 20px;

    font-size:15px;

    transition:.2s;

}

.user-dropdown .dropdown-item i{

    width:20px;

    text-align:center;

    color:#4b5563;

}

.user-dropdown .dropdown-item:hover{

    background:#eef4ff;

}

.user-dropdown .dropdown-divider{

    margin:6px 0;

}

/*==================================================
COMMUNITIES
==================================================*/

.creator-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:30px;

    height:100%;

    transition:.25s;

}

.creator-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.creator-icon{

    font-size:48px;

    margin-bottom:15px;

}

.community-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:24px;

    margin-bottom:25px;

    transition:.25s;

}

.community-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.community-cover{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:18px;

}

/*==================================================
COMMUNITY SEARCH
==================================================*/

.community-search{

    display:flex;

    align-items:center;

    gap:15px;

}

.community-search-keyword{

    flex:1;

}

.community-search-filter{

    width:170px;

}

.community-search .form-control,
.community-search .form-select{

    height:56px;

    border-radius:16px;

}

.community-search .cc-search-btn{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

@media (max-width:991px){

    .community-search{

        flex-direction:column;

    }

    .community-search-filter{

        width:100%;

    }

    .community-search .cc-search-btn{

        width:100%;

    }

}

/*==================================================
COMMUNITY DETAILS
==================================================*/

.community-hero{

    position:relative;

    border-radius:24px;

    overflow:hidden;

    margin-bottom:20px;

}

.community-cover-image{

    width:100%;

    height:380px;

    object-fit:cover;

}

.community-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.65),transparent);

}

.community-header{

    position:absolute;

    bottom:30px;

    left:30px;

    right:30px;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    color:#fff;

}

.community-logo{

    width:110px;

    height:110px;

    border-radius:50%;

    border:5px solid #fff;

    object-fit:cover;

    margin-right:20px;

}

.community-info{

    display:flex;

    flex-direction:column;

    flex:1;

}

.community-meta{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-top:10px;

}

.community-nav{

    gap:10px;

}

.player-card,
.stats-card,
.event-card,
.venue-mini-card,
.organizer-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:20px;

    padding:24px;

    height:100%;

    transition:.25s;

}

.player-card:hover,
.stats-card:hover,
.event-card:hover,
.venue-mini-card:hover,
.organizer-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.stats-card h2{

    font-size:38px;

    color:var(--primary);

    font-weight:700;

}

.players-today-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(40,167,69,.15);

    color:#28a745;

    border:1px solid rgba(40,167,69,.35);

    padding:10px 18px;

    border-radius:50px;

    font-weight:700;

}

.players-today-badge i{

    color:#28a745;

    font-size:9px;
}

.players-today{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#fff;

    color:#222;

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.players-today .dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(34,197,94,.6);

    }

    70%{

        box-shadow:0 0 0 10px rgba(34,197,94,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(34,197,94,0);

    }

}

/*==================================================
EVENTS
==================================================*/

.event-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:25px;

    transition:.25s;

}

.event-card:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.event-card .progress{

    border-radius:50px;

    background:#edf2f7;

}

.event-card .progress-bar{

    border-radius:50px;

}

.event-card h3{

    font-weight:700;

}


/*==================================================
EVENT DETAILS
==================================================*/

.event-stat{

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    border:1px solid #ececec;

    height:100%;

}

.event-stat h3{

    font-weight:700;

    margin-bottom:8px;

}

.registration-card{

    position:sticky;

    top:90px;

    border-radius:22px;

}

.avatar-stack{

    display:flex;

    align-items:center;

}

.avatar-stack img{

    width:48px;

    height:48px;

    border-radius:50%;

    object-fit:cover;

    margin-right:-12px;

    border:3px solid #fff;

}

.avatar-more{

    margin-left:20px;

    font-weight:600;

}

.timeline{

    margin:0;
    padding-left:20px;

}

.timeline li{

    margin-bottom:18px;

}

.progress{

    height:10px;

    border-radius:30px;

}

.progress-bar{

    border-radius:30px;

}


.event-timeline{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.timeline-item{
    display:flex;
    align-items:center;
    gap:20px;
}

.timeline-time{
    width:110px;
    font-weight:700;
    color:#0d6efd;
}

.timeline-content{
    flex:1;
    padding:12px 18px;
    background:#f8f9fa;
    border-radius:12px;
}

/*==================================================
CREATE EVENT
==================================================*/

.upload-box{

    border:2px dashed #d9dee7;

    border-radius:20px;

    padding:60px;

    text-align:center;

    background:#fafbfc;

    transition:.25s;

}

.upload-box:hover{

    border-color:#0d6efd;

    background:#f8fbff;

}

.upload-box i{

    color:#0d6efd;

}

.form-control,
.form-select{

    min-height:48px;

    border-radius:12px;

}

textarea.form-control{

    min-height:140px;

}

.card{

    overflow:hidden;

}


/*==================================================
CREATE EVENT CHECKLIST
==================================================*/

.create-checklist{

    border-radius:20px;

}

.checklist-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    border-bottom:1px solid #f1f3f5;

    color:#495057;

}

.checklist-item:last-child{

    border-bottom:none;

}

.checklist-item i{

    width:22px;

    text-align:center;

    font-size:18px;

    color:#adb5bd;

}

.checklist-item.completed{

    color:#198754;

    font-weight:600;

}

.checklist-item.completed i{

    color:#198754;

}

.create-checklist .progress{

    background:#edf2f7;

}

.event-type-card{

    display:block;

    position:relative;

    border:2px solid #e9ecef;

    border-radius:18px;

    padding:25px;

    cursor:pointer;

    transition:.25s;

    height:100%;

    background:#fff;

}

.event-type-card:hover{

    border-color:#0d6efd;

    transform:translateY(-3px);

    box-shadow:0 .5rem 1rem rgba(0,0,0,.08);

}

.event-type-card input{

    position:absolute;

    opacity:0;

}

.event-type-card input:checked + .icon{

    color:#0d6efd;

}

.event-type-card input:checked ~ h6{

    color:#0d6efd;

}

.event-type-card input:checked ~ small{

    color:#495057;

}

.event-type-card:has(input:checked){

    border-color:#0d6efd;

    background:#f8fbff;

}

.event-type-card .icon{

    font-size:34px;

    margin-bottom:15px;

    color:#6c757d;

}

.event-type-card h6{

    font-weight:700;

    margin-bottom:8px;

}

.event-type-card small{

    color:#6c757d;

    line-height:1.5;

}


.venue-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.venue-card{

    display:block;

    padding:20px;

    border:2px solid #e9ecef;

    border-radius:18px;

    cursor:pointer;

    transition:.25s;

    background:#fff;

}

.venue-card:hover{

    border-color:#0d6efd;

    box-shadow:0 .5rem 1rem rgba(0,0,0,.08);

}

.venue-card input{

    display:none;

}

.venue-card:has(input:checked){

    border-color:#0d6efd;

    background:#f8fbff;

}

.venue-thumb{

    width:120px;

    height:90px;

    object-fit:cover;

    border-radius:12px;

}

.registration-option{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 22px;

    border:1px solid #e9ecef;

    border-radius:14px;

    background:#fff;

}

.registration-option .form-check-input{

    width:3rem;

    height:1.5rem;

}

.registration-option .form-check-label{

    font-weight:600;

    margin-left:10px;

}

.payment-card{

    display:block;

    border:2px solid #e9ecef;

    border-radius:18px;

    padding:25px;

    cursor:pointer;

    transition:.25s;

    height:100%;

    background:#fff;

}

.payment-card:hover{

    border-color:#0d6efd;

    box-shadow:0 .5rem 1rem rgba(0,0,0,.08);

}

.payment-card input{

    display:none;

}

.payment-card:has(input:checked){

    border-color:#0d6efd;

    background:#f8fbff;

}

.payment-icon{

    font-size:36px;

    margin-bottom:15px;

    color:#0d6efd;

}


.banner-upload{

    border:2px dashed #ced4da;

    border-radius:20px;

    min-height:320px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    transition:.25s;

    background:#fafafa;

}

.banner-upload:hover{

    border-color:#0d6efd;

    background:#f8fbff;

}

.upload-icon{

    font-size:70px;

    color:#0d6efd;

}

.banner-preview{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 .5rem 1rem rgba(0,0,0,.08);

}

.banner-preview img{

    display:block;

    width:100%;

    aspect-ratio:16/7;

    object-fit:cover;

}

.review-section{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:25px;

    margin-bottom:20px;

}

.review-section h5{

    font-weight:700;

    margin-bottom:15px;

}

.check-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    font-weight:600;

}

.check-item.success{

    color:#198754;

}

.check-item i{

    font-size:18px;

}

.wizard-steps{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-top:35px;

    position:relative;

}

.wizard-step{

    flex:1;

    text-align:center;

    position:relative;

}

.wizard-step:not(:last-child)::after{

    content:"";

    position:absolute;

    top:22px;

    left:60%;

    width:80%;

    height:2px;

    background:#e9ecef;

    z-index:0;

}

.wizard-step.completed:not(:last-child)::after{

    background:#198754;

}

.wizard-circle{

    width:44px;

    height:44px;

    margin:auto;

    border-radius:50%;

    background:#f8f9fa;

    border:2px solid #dee2e6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    position:relative;

    z-index:2;

}

.wizard-title{

    display:block;

    margin-top:12px;

    font-size:.9rem;

    color:#6c757d;

}

.wizard-step.active .wizard-circle{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

}

.wizard-step.active .wizard-title{

    color:#0d6efd;

    font-weight:700;

}

.wizard-step.completed .wizard-circle{

    background:#198754;

    border-color:#198754;

    color:#fff;

}

.wizard-step.completed .wizard-title{

    color:#198754;

    font-weight:600;

}

.select-card{

    position:relative;

    display:block;

    cursor:pointer;

    border:2px solid #e5e7eb;

    border-radius:18px;

    padding:24px;

    background:#fff;

    transition:.25s;

    height:100%;

}

.select-card input{

    display:none;

}

.select-card:hover{

    border-color:#3b82f6;

    transform:translateY(-2px);

}

.select-card .emoji{

    font-size:34px;

    margin-bottom:12px;

}

.select-card h6{

    font-weight:700;

    margin:0;

}

.select-card .check{

    position:absolute;

    right:16px;

    top:16px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:#dbeafe;

    color:#2563eb;

    display:none;

    align-items:center;

    justify-content:center;

}

.select-card input:checked + .check{

    display:flex;

}

.select-card:has(input:checked){

    border-color:#2563eb;

    background:#eff6ff;

    box-shadow:0 10px 25px rgba(37,99,235,.10);

}

.small-card{

    padding:20px;

    text-align:center;

}

.small-card h6{

    margin-top:4px;

}


.settings-card{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:28px;

    box-shadow:0 6px 20px rgba(0,0,0,.04);

}

.option-card{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:18px;

    border:2px solid #e9ecef;

    border-radius:14px;

    cursor:pointer;

    transition:.25s;

    height:100%;

}

.option-card:hover{

    border-color:#0d6efd;

    background:#f8fbff;

}

.option-card input{

    width:20px;

    height:20px;

    margin-top:3px;

}

.option-card strong{

    display:block;

    font-size:15px;

}

.option-card small{

    display:block;

    color:#6c757d;

    margin-top:3px;

}

.option-card:has(input:checked){

    border-color:#0d6efd;

    background:#eff6ff;

}

.settings-card h2{

    font-weight:700;

    margin-bottom:6px;

}

.club-member-card{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:20px;

    padding:24px;

    height:100%;

    transition:.25s;

}

.club-member-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.club-member-avatar{

    width:74px;

    height:74px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #edf4ff;

}

.club-rank{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.club-member-stats{

    display:flex;

    justify-content:space-between;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

    padding:18px 0;

    text-align:center;

}

.club-member-stats strong{

    display:block;

    font-size:22px;

    color:#2563eb;

}

.club-member-stats small{

    display:block;

    color:#777;

}

.member-current-tournament{

    background:#f8fafc;

    border-radius:14px;

    padding:14px;

}

.achievement-badge{

    background:#eef4ff;

    color:#2563eb;

    border-radius:999px;

    padding:6px 12px;

    font-size:.85rem;

    font-weight:600;

}

.game-card{

    background:#fff;

    border:1px solid #e8edf5;

    border-radius:22px;

    padding:24px;

    transition:.25s;

}

.game-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.game-thumb{

    width:170px;

    height:120px;

    border-radius:16px;

    object-fit:cover;

    flex-shrink:0;

}

.ms-n2{

    margin-left:-10px;

}

.progress{

    border-radius:20px;

}

.my-club-card{

    border-radius:22px;

    overflow:hidden;

}

.club-logo{

    width:88px;

    height:88px;

    border-radius:18px;

    object-fit:cover;

    flex-shrink:0;

}

.club-stats{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    font-size:.92rem;

    color:#4b5563;

}

.my-club-card .progress{

    height:8px;

    border-radius:30px;

    background:#edf2f7;

}

.my-club-card .progress-bar{

    border-radius:30px;

}

.my-club-card .card-footer{

    padding-top:0;

}

.my-club-card .btn{

    border-radius:12px;

    height:46px;

    font-weight:600;

}

.selection-card{

    display:block;

    cursor:pointer;

    border:2px solid #e9ecef;

    border-radius:18px;

    padding:28px;

    height:100%;

    transition:.25s;

}

.selection-card input{

    display:none;

}

.selection-card .icon{

    font-size:34px;

    margin-bottom:18px;

}

.selection-card h6{

    font-weight:700;

    margin-bottom:8px;

}

.selection-card small{

    color:#6c757d;

    line-height:1.6;

}

.selection-card:hover{

    border-color:#0d6efd;

    transform:translateY(-3px);

}

.selection-card input:checked + .icon,
.selection-card input:checked ~ h6,
.selection-card input:checked ~ small{

    color:#0d6efd;

}

.selection-card:has(input:checked){

    border-color:#0d6efd;

    background:#f8fbff;

    box-shadow:0 0 0 4px rgba(13,110,253,.08);

}

.upload-box{

    border:2px dashed #d7dde5;

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    background:#fafbfc;

    transition:.25s;

    cursor:pointer;

}

.upload-box:hover{

    border-color:#0d6efd;

    background:#f5f9ff;

}

.upload-icon{

    width:72px;

    height:72px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    background:#eef4ff;

    color:#0d6efd;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.upload-box h5{

    font-weight:700;

}

.upload-box p{

    font-size:.9rem;

}

.selection-card.compact{

    padding:22px;

    text-align:center;

}

.selection-card.compact h6{

    margin:0;

}

.selection-card .icon{

    font-size:38px;

    margin-bottom:12px;

}

.setting-box{

    background:#fff;

    border:1px solid #e8edf5;

    border-radius:18px;

    padding:20px;

}

.setting-box .form-check{

    margin-bottom:14px;

}

.setting-box .form-check:last-child{

    margin-bottom:0;

}

.feature-switch{

    border:1px solid #e8edf5;

    border-radius:16px;

    padding:18px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    transition:.25s;

}

.feature-switch:hover{

    border-color:#0d6efd;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.form-switch .form-check-input{

    width:48px;

    height:24px;

}

.club-wizard{

    display:flex;

    justify-content:space-between;

    gap:20px;

    position:relative;

}

.club-wizard::before{

    content:"";

    position:absolute;

    top:22px;

    left:70px;

    right:70px;

    height:2px;

    background:#e9ecef;

    z-index:0;

}

.wizard-item{

    position:relative;

    flex:1;

    text-align:center;

    z-index:1;

}

.wizard-circle{

    width:46px;

    height:46px;

    margin:auto;

    border-radius:50%;

    background:#f1f3f5;

    border:2px solid #dee2e6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    transition:.25s;

}

.wizard-title{

    margin-top:12px;

    font-size:.92rem;

    color:#6c757d;

    font-weight:600;

}

.wizard-item.active .wizard-circle{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

}

.wizard-item.active .wizard-title{

    color:#0d6efd;

}

.wizard-item.completed .wizard-circle{

    background:#198754;

    color:#fff;

    border-color:#198754;

}

.wizard-item.completed .wizard-title{

    color:#198754;

}

@media (max-width:768px){

    .club-wizard{

        overflow-x:auto;

        padding-bottom:10px;

    }

    .club-wizard::before{

        display:none;

    }

    .wizard-item{

        min-width:140px;

    }

}

.wizard-progress{

    display:flex;

    justify-content:space-between;

    position:relative;

    gap:20px;

}

.wizard-progress::before{

    content:"";

    position:absolute;

    top:22px;

    left:70px;

    right:70px;

    height:2px;

    background:#e9ecef;

    z-index:0;

}

.wizard-step{

    flex:1;

    text-align:center;

    position:relative;

    z-index:1;

}

.wizard-circle{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#f8f9fa;

    border:2px solid #dee2e6;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-weight:700;

    transition:.25s;

}

.wizard-label{

    margin-top:12px;

    font-size:.9rem;

    color:#6c757d;

    font-weight:600;

}

.wizard-step.active .wizard-circle{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

}

.wizard-step.completed .wizard-circle{

    background:#198754;

    color:#fff;

    border-color:#198754;

}

.wizard-step.active .wizard-label{

    color:#0d6efd;

}

.wizard-step.completed .wizard-label{

    color:#198754;

}

@media(max-width:768px){

    .wizard-progress{

        overflow-x:auto;

        padding-bottom:10px;

    }

    .wizard-progress::before{

        display:none;

    }

    .wizard-step{

        min-width:150px;

    }

}

.court-card{

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:30px;

    background:#fff;

    transition:.25s;

}

.court-card:hover{

    border-color:#0d6efd;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.amenity-card{

    display:block;

    border:2px solid #e9ecef;

    border-radius:18px;

    padding:24px 15px;

    text-align:center;

    cursor:pointer;

    transition:.25s;

    height:100%;

    background:#fff;

}

.amenity-card input{

    display:none;

}

.amenity-icon{

    font-size:28px;

    color:#6c757d;

    margin-bottom:14px;

}

.amenity-title{

    font-weight:600;

    font-size:.95rem;

}

.amenity-card:hover{

    border-color:#0d6efd;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.amenity-card:has(input:checked){

    border-color:#198754;

    background:#f4fff7;

}

.amenity-card:has(input:checked) .amenity-icon{

    color:#198754;

}

.amenity-card:has(input:checked) .amenity-title{

    color:#198754;

}

.photo-upload-large{

    display:block;

    border:2px dashed #ced4da;

    border-radius:22px;

    padding:70px;

    text-align:center;

    cursor:pointer;

    transition:.25s;

    background:#fafafa;

}

.photo-upload-large:hover{

    border-color:#0d6efd;

    background:#f7fbff;

}

.photo-upload-large .upload-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 20px;

    color:#0d6efd;

    font-size:34px;

}

.gallery-upload-card{

    border:2px dashed #dee2e6;

    border-radius:18px;

    height:180px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.25s;

    background:#fff;

}

.gallery-upload-card:hover{

    border-color:#198754;

    background:#f8fff9;

}

.venue-status{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    border-radius:30px;

    background:#eafaf0;

    color:#16a34a;

    font-weight:700;

    font-size:.9rem;

    border:1px solid #b9e7c7;
    
    height: 30px;

}

.status-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:0 0 0 4px rgba(34,197,94,.15);

}

.dashboard-stat{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:24px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    height:100%;

}

.dashboard-stat small{

    display:block;

    color:#6c757d;

    margin-bottom:8px;

    font-weight:500;

}

.dashboard-stat h3{

    margin:0;

    font-size:34px;

    font-weight:700;

}

.dashboard-tabs{

    gap:10px;

}

.dashboard-tabs .nav-link{

    border-radius:12px;

    padding:10px 20px;

    font-weight:600;

}

.dashboard-tabs .nav-link.active{

    background:#0d6efd;

}

.calendar-table th{

    white-space:nowrap;

    text-align:center;

    vertical-align:middle;

}

.calendar-table td{

    min-width:90px;

    height:70px;

    text-align:center;

    vertical-align:middle;

    border-color:#f1f3f5;

}

.booking{

    border-radius:10px;

    padding:6px;

    font-size:.80rem;

    font-weight:600;

}

.booking.available{

    background:#f8f9fa;

    height:36px;

}

.booking.confirmed{

    background:#0d6efd;

    color:#fff;

}

.booking.reserved{

    background:#ffc107;

    color:#212529;

}

.booking.occupied{

    background:#dc3545;

    color:#fff;

}

.booking.maintenance{

    background:#6c757d;

    color:#fff;

}

.sales-item{

    display:flex;

    justify-content:space-between;

    font-weight:600;

    margin-bottom:8px;

}

.progress{

    height:8px;

    border-radius:20px;

}

.setting-switch{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:24px;

    padding:18px 0;

    border-bottom:1px solid #eef2f7;

}

.setting-switch:last-child{

    border-bottom:none;

}

.setting-switch>div:first-child{

    flex:1;

}

.setting-switch>div:last-child{

    flex:0 0 70px;

    display:flex;

    justify-content:flex-end;

}

.setting-switch h6{

    font-weight:600;

    margin:0;

}

.setting-switch small{

    color:#6c757d;

}

.setting-switch .form-check{

    margin:0;

    padding:0;

}

.setting-switch .form-check-input{

    width:3rem;

    height:1.6rem;

    cursor:pointer;

    float:none;

    margin:0;

}

.cc-navbar{

    min-height:82px;

    border-bottom:1px solid #eef2f7;

    transition:.25s;

    z-index:1050;

}

.cc-navbar__inner{

    display:flex;
    align-items:center;

}

.cc-navbar__brand{
    align-items:center;
    color:#171b24!important;
    display:inline-flex;
    font-family:Inter,"Segoe UI",sans-serif;
    font-size:26px;
    font-weight:700;
    gap:10px;
    letter-spacing:-.025em;
    line-height:1;
    white-space:nowrap;
}

.cc-navbar__brand-icon{
    color:#1769ee;
    font-size:25px;
    line-height:1;
}

.cc-navbar.scrolled{

    background:rgba(255,255,255,.97)!important;

    backdrop-filter:blur(12px);

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.cc-logo{

    width:40px;

    height:40px;

    object-fit:contain;

}

.cc-logo-text{

    font-size:2rem;

    font-weight:800;

    color:#111827;

    line-height:1;

}

.navbar-nav .nav-link{

    font-weight:600;

    margin:0 10px;

}

.navbar-nav .nav-link.active{

    color:#2563eb!important;

}

.cc-navbar__guest-signin .nav-link{
    white-space:nowrap;
}

@media (max-width:991px){

    .navbar-collapse{

        padding-top:20px;

    }

    .navbar-nav{

        text-align:center;

    }

    .navbar-nav .btn{

        width:100%;

    }

}

@media (max-width:575.98px){
    .cc-navbar__brand{font-size:22px;gap:8px}
    .cc-navbar__brand-icon{font-size:21px}
}

.dashboard-stat-card{

    background:#fff;

    border-radius:20px;

    padding:24px;

    display:flex;

    align-items:center;

    gap:20px;

    box-shadow:0 8px 30px rgba(15,23,42,.06);

    transition:.25s;

    border:1px solid #eef2f7;

}

.dashboard-stat-card:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(15,23,42,.12);

}

.dashboard-stat-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.dashboard-stat-card h3{

    margin:0;

    font-size:2rem;

    font-weight:700;

}

.dashboard-stat-card p{

    margin:0;

    color:#64748b;

}

.cc-search-input,
.search-card .form-select{

    height:58px;

    border-radius:16px;

    border:1px solid #dbe3ef;

    font-size:1rem;

    box-shadow:none;

}

.search-card .form-select{

    padding-left:18px;

    padding-right:42px;

}

.search-card .form-control:focus,
.search-card .form-select:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 .2rem rgba(37,99,235,.12);

}

.quick-action-card{

    border-radius:18px;

    transition:.25s ease;

}

.quick-action-card:hover{

    transform:translateY(-4px);

    box-shadow:0 .75rem 1.5rem rgba(0,0,0,.08);

    border-color:#0d6efd;

}

.quick-action-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    color:#fff;

    font-size:24px;

}

.user-avatar{

    width:42px;

    height:42px;

    object-fit:cover;

    border-radius:50%;

    border:2px solid #fff;

}
.cc-social-nav{display:flex;align-items:center}.cc-nav-badge{align-items:center;background:#ef4444;border:2px solid #fff;border-radius:999px;color:#fff;display:flex;font-size:9px;font-weight:800;height:18px;justify-content:center;min-width:18px;padding:0 3px;position:absolute;right:0;top:2px}.cc-social-dropdown{border:1px solid #e3e9f2;border-radius:14px;box-shadow:0 16px 38px rgba(15,23,42,.15);overflow:hidden;padding:0;width:360px}.cc-social-dropdown header{align-items:center;border-bottom:1px solid #edf1f6;display:flex;justify-content:space-between;padding:14px 16px}.cc-social-dropdown header button{background:none;border:0;color:#2563eb;font-size:12px}.cc-social-item{align-items:flex-start;border-bottom:1px solid #f0f3f7;color:#263246;display:flex;gap:11px;padding:13px 15px;text-decoration:none}.cc-social-item.is-unread{background:#f0f6ff}.cc-social-item>i{align-items:center;background:#eaf2ff;border-radius:9px;color:#2563eb;display:flex;height:36px;justify-content:center;width:36px}.cc-social-item>img{border-radius:50%;height:38px;object-fit:cover;width:38px}.cc-social-item>span{min-width:0}.cc-social-item strong,.cc-social-item small,.cc-social-item time{display:block}.cc-social-item strong{font-size:13px}.cc-social-item small{color:#64748b;font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cc-social-item time{color:#94a3b8;font-size:10px;margin-top:3px}.cc-social-footer{color:#2563eb;display:block;font-size:12px;font-weight:700;padding:12px;text-align:center}.cc-social-empty,.cc-social-loading{color:#718095;padding:28px 15px;text-align:center}@media(max-width:575.98px){.cc-social-dropdown{max-width:calc(100vw - 20px);width:340px}}
.cc-social-page{background:#f5f7fb;min-height:calc(100vh - 82px);padding:38px 18px 70px}.cc-social-shell{margin:auto;max-width:1180px}.cc-social-shell>header{align-items:center;display:flex;justify-content:space-between;margin-bottom:22px}.cc-social-shell h1{font-size:1.8rem;font-weight:800;margin:0}.cc-social-shell>header p{color:#718095;margin:5px 0 0}.cc-notification-history{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden}.cc-history-item{align-items:flex-start;border-bottom:1px solid #edf1f6;color:#263246;display:flex;gap:14px;padding:17px;text-decoration:none}.cc-history-item.is-unread{background:#f0f6ff}.cc-history-item>i{align-items:center;background:#eaf2ff;border-radius:10px;color:#2563eb;display:flex;height:42px;justify-content:center;width:42px}.cc-history-item strong,.cc-history-item p,.cc-history-item time{display:block;margin:0}.cc-history-item p{color:#617086;font-size:.88rem}.cc-history-item time{color:#94a3b8;font-size:.72rem;margin-top:5px}.cc-social-page-empty{color:#718095;padding:55px 20px;text-align:center}.cc-social-page-empty>i{font-size:34px}.cc-social-page-empty h2{color:#263246;font-size:1.1rem;margin:12px 0 5px}.cc-chat{background:#fff;border:1px solid #dfe6ef;border-radius:16px;display:grid;grid-template-columns:340px 1fr;height:680px;overflow:hidden}.cc-chat>aside{border-right:1px solid #e5eaf1;overflow-y:auto}.cc-chat-list button{align-items:center;background:#fff;border:0;border-bottom:1px solid #edf1f6;display:grid;gap:11px;grid-template-columns:auto 1fr auto;padding:14px;text-align:left;width:100%}.cc-chat-list button.active,.cc-chat-list button.is-unread{background:#eef5ff}.cc-chat-list img,.cc-chat-thread header img{border-radius:50%;height:44px;object-fit:cover;width:44px}.cc-chat-list span{min-width:0}.cc-chat-list strong,.cc-chat-list small{display:block}.cc-chat-list small{color:#718095;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cc-chat-list b{background:#2563eb;border-radius:999px;color:#fff;font-size:10px;padding:3px 6px}.cc-chat-thread{display:flex;flex-direction:column;min-width:0}.cc-chat-thread>header{align-items:center;border-bottom:1px solid #e7ecf2;display:flex;gap:12px;padding:14px 18px}.cc-chat-thread>header strong,.cc-chat-thread>header small{display:block}.cc-chat-thread>header small{color:#718095}.cc-chat-placeholder{margin:auto;text-align:center;color:#718095}.cc-chat-placeholder i{font-size:38px}.cc-chat-messages{background:#f8fafc;display:flex;flex:1;flex-direction:column;gap:9px;overflow-y:auto;padding:20px}.cc-bubble{max-width:75%}.cc-bubble p{border-radius:14px;margin:0;padding:10px 13px;white-space:pre-wrap;word-break:break-word}.cc-bubble time{color:#94a3b8;display:block;font-size:9px;margin-top:3px}.cc-bubble.outgoing{align-self:flex-end}.cc-bubble.outgoing p{background:#2563eb;color:#fff}.cc-bubble.incoming{align-self:flex-start}.cc-bubble.incoming p{background:#fff;border:1px solid #e1e7ef}.cc-chat-composer{border-top:1px solid #e5eaf1;display:flex;gap:10px;padding:13px}.cc-chat-composer textarea{border:1px solid #cfd9e6;border-radius:11px;flex:1;padding:10px;resize:none}@media(max-width:767.98px){.cc-social-page{padding:22px 12px}.cc-chat{grid-template-columns:1fr;height:auto;min-height:650px}.cc-chat>aside{border:0;max-height:260px}.cc-chat-thread{border-top:1px solid #e5eaf1;min-height:440px}.cc-social-shell>header{align-items:flex-start;gap:12px}}
