  
 /*==================================================
ROOT VARIABLES
==================================================*/

:root{

--primary:#2563eb;
--primary-dark:#1d4ed8;
--secondary:#0f172a;

--success:#10b981;
--warning:#f59e0b;
--danger:#ef4444;

--text:#1e293b;
--text-light:#64748b;

--border:#e2e8f0;

--background:#f8fafc;
--surface:#ffffff;

--shadow-sm:
0 4px 14px rgba(15,23,42,.05);

--shadow-md:
0 10px 35px rgba(15,23,42,.08);

--shadow-lg:
0 20px 50px rgba(15,23,42,.12);

--radius-sm:12px;
--radius:18px;
--radius-lg:24px;

--transition:.30s ease;

}

/*==================================================
BODY
==================================================*/

html{

scroll-behavior:smooth;

}

body{

background:#f5f7fb !important;

font-family:
Inter,
"Segoe UI",
sans-serif;

color:var(--text);

font-size:.95rem;

line-height:1.6;

}

/*==================================================
GLOBAL
==================================================*/

a{

text-decoration:none;

transition:var(--transition);

}

img{

max-width:100%;

display:block;

}

.clubs-page{

padding:

35px 0 70px;

}

/*==================================================
CONTAINER
==================================================*/

.container{

max-width:1320px;

}

/*==================================================
HERO
==================================================*/

.clubs-hero{

background:

linear-gradient(
135deg,
#2563eb,
#1d4ed8
);

border-radius:28px;

padding:

42px 45px;

margin-bottom:35px;

overflow:hidden;

position:relative;

box-shadow:var(--shadow-md);

}

.clubs-hero::before{

content:"";

position:absolute;

right:-80px;
top:-80px;

width:260px;
height:260px;

border-radius:50%;

background:

rgba(255,255,255,.08);

}

.clubs-hero::after{

content:"";

position:absolute;

left:-60px;
bottom:-60px;

width:180px;
height:180px;

border-radius:50%;

background:

rgba(255,255,255,.06);

}

.clubs-hero__content{

position:relative;

z-index:2;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:8px;

padding:

8px 18px;

border-radius:999px;

background:

rgba(255,255,255,.16);

color:white;

font-size:.82rem;

font-weight:600;

margin-bottom:18px;

backdrop-filter:blur(10px);

}

.clubs-hero h1{

color:white;

font-size:2.3rem;

font-weight:800;

line-height:1.15;

margin-bottom:16px;

max-width:650px;

}

.clubs-hero p{

color:

rgba(255,255,255,.92);

font-size:1rem;

max-width:620px;

margin:0;

}

/*==================================================
SEARCH
==================================================*/

.clubs-search-section{

margin-bottom:45px;

}

.clubs-search-wrapper{

display:flex;

gap:15px;

align-items:center;

background:white;

padding:18px;

border-radius:22px;

box-shadow:var(--shadow-sm);

}

.clubs-search-input{

border:none;

background:#f8fafc;

border-radius:14px;

padding:

14px 18px;

font-size:.95rem;

box-shadow:none;

}

.clubs-search-input:focus{

background:white;

box-shadow:none;

}

/*==================================================
SECTION HEADERS
==================================================*/

.clubs-section{

margin-bottom:60px;

}

.section-heading{

display:flex;

justify-content:space-between;

align-items:flex-end;

margin-bottom:28px;

}

.section-heading h2{

font-size:1.45rem;

font-weight:800;

margin-bottom:6px;

color:var(--secondary);

}

.section-heading p{

margin:0;

color:var(--text-light);

font-size:.95rem;

}

/*==================================================
BASE CARD STRUCTURE
==================================================*/

.club-card{

background:var(--surface);

border-radius:22px;

overflow:hidden;

position:relative;

box-shadow:var(--shadow-sm);

height:100%;

}

.club-card__cover{

position:relative;

overflow:hidden;

height:155px;

background:#edf2f7;

}

.club-card__cover img{

width:100%;

height:100%;

object-fit:cover;

}

.club-card__placeholder{

width:100%;
height:100%;

display:flex;

align-items:center;
justify-content:center;

font-size:4rem;

background:

linear-gradient(
135deg,
#dbeafe,
#eff6ff
);

}

.club-card__body{

padding:24px;

} 


/*==================================================
CARD CONTENT
==================================================*/

.club-card__language{

display:inline-flex;

align-items:center;

gap:8px;

padding:5px 11px;

margin-bottom:10px;

border-radius:999px;

background:#eff6ff;

color:var(--primary);

font-size:.74rem;

font-weight:700;

}

.club-card__title{

font-size:18px;

font-weight:800;

line-height:1.35;

color:var(--secondary);

margin-bottom:10px;

}

.club-card__description{

margin:0 0 14px;

font-size:.88rem;

line-height:1.5;

min-height:40px;

}

/*==================================================
CLUB STATS
==================================================*/

.club-card__stats{

display:flex;

align-items:center;

gap:18px;

padding:10px 0;

margin-bottom:14px;

font-size:.88rem;

font-weight:600;

color:#64748b;

}

.club-card__stats span{

display:flex;

align-items:center;

gap:5px;

white-space:nowrap;

}

/*==================================================
CARD FOOTER
==================================================*/

.club-card__footer{

display:flex;

justify-content:flex-end;

align-items:center;

}

/*==================================================
EMPTY STATE
==================================================*/

.empty-state{

background:white;

border-radius:24px;

padding:70px 35px;

text-align:center;

box-shadow:var(--shadow-sm);

}

.empty-state__icon{

width:90px;

height:90px;

margin:0 auto 24px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:2.7rem;

background:#eff6ff;

}

.empty-state h3{

font-size:1.6rem;

font-weight:800;

margin-bottom:14px;

color:var(--secondary);

}

.empty-state p{

max-width:520px;

margin:0 auto 28px;

font-size:.96rem;

line-height:1.7;

color:var(--text-light);

}


/*==================================================
BUTTONS
==================================================*/

.btn{

border-radius:14px;

font-weight:700;

padding:12px 22px;

transition:all .25s ease;

box-shadow:none;

}

.btn-primary{

background:var(--primary);

border:1px solid var(--primary);

color:#fff;

}

.btn-primary:hover{

background:var(--primary-dark);

border-color:var(--primary-dark);

color:#fff;

}

.btn-outline-secondary{

border:1px solid var(--border);

background:#fff;

color:var(--text);

}

.btn-outline-secondary:hover{

background:#f8fafc;

border-color:#cbd5e1;

color:var(--secondary);

}

/*==================================================
HERO BUTTON
==================================================*/

.hero-create-btn{

padding:15px 26px;

font-size:.95rem;

font-weight:700;

white-space:nowrap;

}

/*==================================================
SEARCH BUTTONS
==================================================*/

.clubs-search-wrapper .btn{

height:50px;

padding:0 24px;

display:flex;

align-items:center;

justify-content:center;

}

/*==================================================
CARD BUTTON
==================================================*/

.club-card__footer{

display:flex;

justify-content:flex-start;

margin-top:8px;

}

.club-card__footer .btn{

width:auto;

padding:8px 16px;

font-size:.84rem;

font-weight:600;

border-radius:10px;

}

/*==================================================
INPUT
==================================================*/

.form-control{

border:1px solid var(--border);

}

.form-control:focus{

border-color:var(--primary);

box-shadow:
0 0 0 .20rem
rgba(37,99,235,.15);

}

/*==================================================
PAGINATION
==================================================*/

.clubs-pagination{

margin-top:15px;

margin-bottom:25px;

}

.pagination{

gap:8px;

}

.page-item{

margin:0;

}

.page-link{

border:none;

background:#fff;

color:var(--text);

min-width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:12px;

font-weight:700;

box-shadow:var(--shadow-sm);

transition:all .25s ease;

}

.page-link:hover{

background:var(--primary);

color:#fff;

}

.page-item.active .page-link{

background:var(--primary);

color:#fff;

border-color:var(--primary);

}

.page-item.disabled .page-link{

background:#eef2f7;

color:#94a3b8;

pointer-events:none;

box-shadow:none;

}

/*==================================================
MICRO INTERACTIONS
==================================================*/

.club-card{

transition:

transform .25s ease,
box-shadow .25s ease;

}

.club-card__cover img{

transition:

transform .35s ease;

}

.clubs-search-wrapper{

transition:

box-shadow .25s ease,
border-color .25s ease;

}

.clubs-search-wrapper:focus-within{

box-shadow:var(--shadow-md);

}

.btn,
.page-link{

transition:

all .25s ease;

}


/*==================================================
DESKTOP (Large Screens)
==================================================*/

@media (min-width:1400px){

.container{

max-width:1320px;

}

.clubs-hero{

padding:48px 55px;

}

.club-card__cover{

height:155px;

}

}

/*==================================================
LAPTOP
==================================================*/

@media (max-width:1199px){

.clubs-hero__content{

gap:30px;

}

.club-card__cover{

height:150px;

}

}

/*==================================================
TABLET
==================================================*/

@media (max-width:991px){

.clubs-page{

padding:25px 0 60px;

}

.clubs-hero{

padding:35px;

border-radius:24px;

}

.clubs-hero__content{

flex-direction:column;

align-items:flex-start;

}

.clubs-hero__actions{

width:100%;

}

.hero-create-btn{

width:100%;

justify-content:center;

}

.clubs-search-wrapper{

flex-wrap:wrap;

}

.clubs-search-input{

width:100%;

}

.clubs-search-wrapper .btn{

flex:1;

}

.club-card__cover{

height:150px;

}

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:767px){

.clubs-page{

padding:18px 0 50px;

}

.clubs-hero{

padding:28px 22px;

border-radius:20px;

margin-bottom:25px;

}

.hero-badge{

font-size:.78rem;

}

.clubs-hero h1{

font-size:1.75rem;

line-height:1.25;

}

.clubs-hero p{

font-size:.92rem;

}

.section-heading{

flex-direction:column;

align-items:flex-start;

gap:6px;

margin-bottom:22px;

}

.section-heading h2{

font-size:1.25rem;

}

.clubs-search-wrapper{

padding:15px;

gap:12px;

}

.clubs-search-wrapper .btn{

width:100%;

}

.club-card__cover{

height:150px;

}

.club-card__body{

padding:15px;

}

.club-card__title{

font-size:1.15rem;

}

.club-card__description{

font-size:.90rem;

min-height:auto;

}

.club-card__stats{

grid-template-columns:1fr;

gap:18px;

}

.club-card__stats div{

padding-bottom:10px;

border-bottom:1px solid var(--border);

}

.club-card__stats div:last-child{

border-bottom:none;

padding-bottom:0;

}

.empty-state{

padding:20px 10px;

}

.empty-state__icon{

width:75px;

height:75px;

font-size:2.2rem;

}

.empty-state h3{

font-size:1.35rem;

}

.pagination{

flex-wrap:wrap;

justify-content:center;

}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:480px){

.clubs-hero{

padding:24px 18px;

}

.clubs-hero h1{

font-size:1.55rem;

}

.hero-create-btn{

font-size:.90rem;

padding:14px 18px;

}

.club-card__cover{

height:150px;

}

.club-card__body{

padding:18px;

}

.club-card__language{

font-size:.78rem;

padding:6px 12px;

}

.club-card__stats span{

font-size:1rem;

}

.page-link{

min-width:42px;

height:42px;

font-size:.90rem;

}

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

height:10px;

}

::-webkit-scrollbar-track{

background:#eef2f7;

}

::-webkit-scrollbar-thumb{

background:#cbd5e1;

border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

background:#94a3b8;

}

/*==================================================
FINAL ANIMATIONS
==================================================*/

.clubs-hero{

animation:fadeDown .45s ease;

}

.clubs-section{

animation:fadeUp .45s ease;

}

.club-card{

animation:fadeUp .45s ease;

}

@keyframes fadeDown{

from{

opacity:0;

transform:translateY(-18px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(22px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==================================================
FINAL POLISH
==================================================*/

.club-card{

border:1px solid rgba(226,232,240,.8);

background:#fff;

}

.club-card__cover{

background:#edf2f7;

}

.section-heading{

padding-bottom:10px;

border-bottom:1px solid rgba(226,232,240,.8);

margin-bottom:30px;

}

.clubs-search-wrapper{

border:1px solid rgba(226,232,240,.9);

}

.clubs-hero{

overflow:hidden;

}

.club-card,
.clubs-search-wrapper,
.empty-state{

backdrop-filter:blur(10px);

}


/*Render section*/
.club-card__description{

font-size:.88rem;

line-height:1.6;

color:#26292d;

overflow:hidden;

display:-webkit-box;

-webkit-line-clamp:3;

-webkit-box-orient:vertical;

}
     
