/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Kanit', sans-serif !important;
    background-color: #18191C !important;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Header Styles */
.header {
    background-color: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    border-bottom: none;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 80px;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
}

.navbar {
    padding: 0;
    position: relative;
    z-index: 10000;
    width: 100%;
    padding: 0px 20px;
}
.header.scrolled .navbar{
    padding: 0px 20px !important; 
}

.navbar-brand {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 145px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled .logo-text {
    text-shadow: none;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 0.8rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

.header.scrolled .navbar-nav .nav-link {
    text-shadow: none;
}


.navbar-nav .nav-link:hover {
    color: #E1874F !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E1874F;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons i {
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.header-icons i:hover {
    color: #E1874F;
    transform: scale(1.1);
}

.notification-icon-wrapper {
    position: relative;
    display: inline-block;
}

.notification-icon-wrapper i {
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.notification-icon-wrapper:hover i {
    color: #E1874F;
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    z-index: 10;
}

.login-register-btn {
    display: inline-block;
    background-color: #4EA4F8;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}


.login-register-btn:hover {
    background-color: #3d8de0;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.signup-btn {
    background: #0056b3;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup-btn:hover {
    background: #E1874F;
    transform: translateY(-2px);
    box-shadow: #e1874f65;
}

.common-padding {
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Common Padding Class */
.add {
    padding-top: 50px;
}

/* Section Blending Effect */
.section-blend {
    position: relative;
}

.section-blend::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, #00000000, rgb(17 17 17 / 52%), #18191c);
    z-index: 5;
    pointer-events: none;
}

.hero-slider {
    height: 100vh;
}

.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-updates-carousel {
    position: absolute;
    bottom: 35px;
    right: 0px;
    z-index: 4;
    max-width: 730px;
    width: 100%;
}

.hero-updates-carousel .updates-carousel {
    margin: 0;
}

.hero-updates-carousel .update-card {
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
}

.hero-updates-carousel .update-image {
    height: 280px;
}

.hero-updates-carousel .update-content {
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
}

.hero-updates-carousel .update-content h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hero-updates-carousel .update-content p {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .hero-updates-carousel {
        max-width: 300px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-updates-carousel .update-image {
        height: 150px;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    color: #ffffff;
}

.hero-title span {
    display: block;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.learn-more-btn {
    background: #ffffff;
    color: #000;
    border: 2px solid #ffffff;
    padding: 10px 1.5rem;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.learn-more-btn:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .owl-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.hero-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Section Styles */
.section-title {
    font-size: 2.6rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.section-description {
    font-weight: 200;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.79);
}

.discover-link {
    color: #E1874F;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.discover-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.carousel-nav .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

.carousel-nav .btn:hover {
    background: #E1874F;
    border-color: #E1874F;
    transform: scale(1.1);
}

/* Sports Section */
.sports-section {
    /* background-color: #111111; */
    /* padding: 5rem 0; */
}

/* Sports Carousel */
.sports-carousel {
    /* max-width: 1200px;
    margin: 0 auto; */
}

.sport-card {
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 280px;
    cursor: pointer;
}

.sport-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: none !important;
}

.sport-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.sport-card:hover .sport-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.sport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sport-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    text-align: center;
}

/* Enhanced sport card styling to match the uploaded design */
.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

.sport-card:hover::before {
    opacity: 1;
}

.sport-overlay {
    z-index: 2;
}

/* Add subtle border and shadow effects */
.sport-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 40px;
}

.sport-card:hover {
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

/* Clubs Section */
.clubs-section {
    /* background-color: #0a0a0a; */
    /* padding: 5rem 0; */
}

.club-card {
    box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.1);
    background: #262932;

    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 20px 30px;
}





.club-logo-img {
    width: 90px !important;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.club-card h5 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    margin: 1rem 0;
    line-height: 1.3;
    /* text-align: center; */
}

.club-info {
    width: 100%;
}

.club-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.club-info i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-right: 4px;
}

/* Image Section */
/* .image-section {
    background-color: #18191C;
    padding: 5rem 0;
} */

.text-content {
    padding: 0;
}

.section-title-large {
    font-weight: 500;
    font-size: 55px;
    color: #fff;
}


/* Connecting Section */
/* .connecting-section {
    background-color: #111111;
    padding: 5rem 0;
} */

/* Updates Section */
.updates-section {
    /* background-color: #18191C; */
    padding: 5rem 0;
}

.updates-header {
    padding-right: 3rem;
}

.updates-header .section-title-large {
    margin-bottom: 2.5rem;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333333;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: #555555;
    transform: scale(1.05);
}

.updates-carousel {
    margin: 0;
}

.update-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 15px;
    position: relative;
}

.update-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 370px;
    border-radius: 20px;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.update-card:hover .update-image img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.play-overlay i {
    margin-left: 3px;
}

.update-card:hover .play-overlay {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.update-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), transparent);
    backdrop-filter: blur(1px);
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.update-content h5 {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.update-content p {
    color: #b5b5b5;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.update-content i {
    color: #b5b5b5;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Talent Section */
.talent-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/random.jpg') center/cover;
    padding: 10rem 0;
    text-align: left;
}

.talent-content {
    width: 100%;
}

/* Academy Section */
.academy-section {
    /* background-color: #18191C;
    padding: 5rem 0; */
}

.academy-carousel {
    margin: 0;
}

.academy-card {
    background: #262932;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    position: relative;
}

.academy-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); */
}

.academy-image {
    overflow: hidden;
    border-radius: 20px;
}

.academy-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.academy-card:hover .academy-image img {
    transform: scale(1.05);
}

.academy-content {
    padding: 1.5rem;
    position: relative;
}

.academy-content h5 {
    font-weight: 400;
    font-size: 20px;
    color: #fcfdff;
}

.coach-history-content h5 {
    font-weight: 500;
    font-size: 27px;
}

.coach-history-content h6 {
    font-weight: 400;
    font-size: 17px;
    color: #fff;
}

.coach-history-content h6 span {
    font-weight: 300;
}

.coach-history-content .coach-experience-position-sub {
    margin-top: 15px;
}

.coach-history-content .coach-experience-position-sub ul {
    padding-left: 25px;
    margin-bottom: 0 !important;
}

.coach-history-content .coach-experience-position-sub ul li {
    font-weight: 300;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.coach-history-content .coach-experience-position-sub h6 {
    font-weight: 300;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
}

.academy-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* margin-bottom: 0.8rem; */
}

.rating-number {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.academy-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.academy-location i {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.location-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-btn {
    background: #18191c;
    color: #ffffff;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 26px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #555555;
    transform: scale(1.05);
}

/* Coach Section */
/* .coach-section {
    background-color: #18191C;
    padding: 5rem 0;
} */

.coach-carousel {
    margin: 0;
}

.coach-card {
    background: #262932;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* margin: 0 15px; */
    position: relative;
}



.coach-image {
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.coach-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.05);
}

.coach-content {
    padding: 1.5rem;
    text-align: center;
}

.coach-content h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.coach-content p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Unifying Section */


.stat-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stat-image {
    height: 200px;
    overflow: hidden;
}

.stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-image img {
    transform: scale(1.1);
}

.stat-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-description {
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    color: #666;
    text-align: center;
}

.stat-btn {
    background: #4ea4f8;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: auto;
}

.stat-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.stat-btn i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.unifying-image {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.unifying-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.unifying-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.unifying-image:hover img {
    transform: scale(1.1);
}

/* Responsive Design for Stat Cards */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #4ea4f8;
    }

    .stat-label {
        font-size: 1rem;
        font-weight: 600;
    }

    .stat-description {
        font-size: 0.9rem;
    }

    .stat-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .stat-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #4ea4f8;
    }

    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    .stat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .stat-image {
        height: 160px;
    }
}

/* Player Section */
.player-section {
    /* background-color: #18191C;
    padding: 5rem 0; */
    height: 100%;
}

.player-card {
    background: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
    /* height: 100%; */
    height: 330px;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 20px;
}

.player-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, #262932fa 20%, #262932b8 35%, #26293257 70%, #2629320b 100%);
    z-index: 1;
    border-radius: 0 0 20px 20px;
}

.player-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
}

/* .player-card:hover::before {
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 30%, 
        rgba(0, 0, 0, 0.3) 60%, 
        rgba(0, 0, 0, 0.05) 100%);
} */

.market-value {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
}

.market-label {
    display: block;
    font-weight: 300;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.market-amount {
    display: block;
    font-size: 11px;
    color: #ffffff;
    font-weight: 400;
}

.team-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 4;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-image {
    display: none;
}

.player-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 2;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.player-info {
    display: flex;
    justify-content: space-between;

}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-weight: 300;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.3rem;
}

.info-value {
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.country-flag {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for Player Section */
@media (max-width: 768px) {
    .player-name {
        font-size: 1.1rem;
    }

    .info-label {
        font-size: 0.65rem;
    }

    .info-value {
        font-size: 0.8rem;
    }

    .player-image {
        height: 200px;
        margin-top: 50px;
    }

    .team-logo {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .market-value {
        top: 15px;
        left: 15px;
    }

    .market-label {
        font-size: 0.65rem;
    }

    .market-amount {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .player-name {
        font-size: 1rem;
    }

    .info-label {
        font-size: 0.6rem;
    }

    .info-value {
        font-size: 0.75rem;
    }

    .player-image {
        height: 180px;
        margin-top: 45px;
    }

    .team-logo {
        width: 35px;
        height: 35px;
        top: 12px;
        right: 12px;
    }

    .market-value {
        top: 12px;
        left: 12px;
    }

    .market-label {
        font-size: 0.6rem;
    }

    .market-amount {
        font-size: 0.9rem;
    }

    .country-flag {
        width: 18px;
        height: 18px;
    }
}

.player-card h5 {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #fff;
}

.sport-icon {
    color: #E1874F;
    font-size: 1.5rem;
}

/* Trails Section */


.trail-card {
    background: #262932;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.trail-card:hover {
    transform: translateY(-5px);
}

.trail-image {
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
}

.trail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trail-card:hover .trail-image img {
    transform: scale(1.05);
}

.trail-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.trail-left {
    flex: 1;
    margin-right: 1rem;
}

.trail-right {
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    /* gap: 0.8rem; */
    box-shadow: 0 -5px 18px 0 rgba(0, 0, 0, 0.45);
    background: #262932;
    /* padding: 15px 10px; */
    margin-top: -50px;
    margin-right: -25px;
    border-radius: 20px 0 0 20px;
    z-index: 2;
}

.trail-title {
    font-weight: 400;
    font-size: 19px;
    line-height: 135%;
    color: #fcfdff;
    margin-bottom: 0.5rem;
}

.trail-location {
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.trail-location i {
    margin-right: 0.4rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.trail-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 15px;
}

.date-range {
    font-weight: 400;
    font-size: 16px;
    color: #fcfdff;
}

.date-month {
    font-weight: 300;
    font-size: 15px;
    color: rgba(252, 253, 255, 0.6);
}

.trail-btn {
    background: #18191C;
    border-radius: 0 20px 20px 20px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.trail-btn:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Trails Section */
@media (max-width: 768px) {
    .trail-content {
        flex-direction: column;
        gap: 1rem;
    }

    .trail-left {
        margin-right: 0;
    }

    .trail-right {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .trail-title {
        font-size: 1rem;
    }

    .trail-location {
        font-size: 0.8rem;
    }

    .date-range {
        font-size: 0.9rem;
    }

    .date-month {
        font-size: 0.8rem;
    }

    .trail-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .trail-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .trail-content {
        padding: 1rem;
    }

    .trail-title {
        font-size: 0.95rem;
    }

    .trail-location {
        font-size: 0.75rem;
    }

    .date-range {
        font-size: 0.85rem;
    }

    .date-month {
        font-size: 0.75rem;
    }

    .trail-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }

    .trail-image {
        height: 160px;
    }
}

/* Footer */
.footer {
    background-color: #262932;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-logo img {
    width: 170px;
}

.footer-logo .logo {
    margin-bottom: 1rem;
}

.contact-info h5,
.stay-connected h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

.social-link {
    color: #ffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #434343;
    border-radius: 5px;
    width: 43px;
    height: 43px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E1874F;
    color: #ffffff;
    transform: translateY(-3px);
}

.app-links {
    display: flex;
    gap: 1rem;
}

.app-link img {
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-link:hover img {
    transform: scale(1.05);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: #cccccc;
    margin: 0;
}

/* New Footer Styles */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ea4f8, #357ABD);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arabic-text {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    margin-top: 0.2rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-columns {
    display: flex;
    gap: 3rem;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-navigation .nav-link {
    font-weight: 300;
    font-size: 16px;
    line-height: 161%;
    text-transform: uppercase;
    color: #fcfdff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ea4f8;
}

.social-section {
    margin-top: 1rem;
}

.social-section h3 {
    font-weight: 400;
    font-size: 42px;
    color: #fcfdff;
}

.social-title {
    font-weight: 300;
    font-size: 20px;
    line-height: 137%;
    text-transform: uppercase;
    color: #fcfdff;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-text {
    font-weight: 300;
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
    color: #fcfdff;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    background: #4ea4f8;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #357ABD;
    transform: scale(1.1);
}

.app-download {
    display: flex;
    gap: 1rem;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.app-link:hover {
    transform: translateY(-2px);
}

.app-link img {
    width: 140px;
    height: auto;
}

.app-icon {
    font-size: 1.2rem;
    color: #ffffff;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-store {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4ea4f8;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .nav-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input {
        width: 100%;
    }

    .app-download {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .arabic-text {
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.8rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .nav-column {
        gap: 0.6rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .social-title {
        font-size: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .newsletter-text {
        font-size: 0.8rem;
    }

    .newsletter-input {
        font-size: 0.8rem;
    }

    .newsletter-btn {
        width: 35px;
        height: 35px;
    }

    .app-link {
        padding: 0.6rem 1rem;
    }

    .app-icon {
        font-size: 1rem;
    }

    .app-store {
        font-size: 0.7rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}

/* Responsive Design */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .player-card {
        height: 380px;
    }

    .trail-card {
        height: 350px;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        margin: 0 0.2rem;
    }

    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

/* Large Screens (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .player-card {
        height: 360px;
    }

    .trail-card {
        height: 330px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 2.3rem;
    }

    .stat-number {
        font-size: 2.9rem;
    }

    .stat-label {
        font-size: 1.15rem;
    }

    .stat-description {
        font-size: 1.05rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.45rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.02rem;
        padding: 0.75rem 1.15rem;
        margin: 0 0.15rem;
    }

    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

/* Desktop Screens (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .player-card {
        height: 340px;
    }

    .trail-card {
        height: 310px;
    }

    .footer-logo img {
        width: 150px;
    }

    .social-section h3 {
        font-size: 36px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 2.2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .stat-description {
        font-size: 1rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.98rem;
        padding: 0.7rem 1.1rem;
        margin: 0 0.1rem;
    }

    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

/* Tablet Large (992px to 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .player-card {
        height: 320px;
    }

    .trail-card {
        height: 290px;
    }

    .footer-logo img {
        width: 130px;
    }

    .social-section h3 {
        font-size: 32px;
    }

    .nav-link {
        font-size: 14px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 2.1rem;
    }

    .stat-number {
        font-size: 2.7rem;
    }

    .stat-label {
        font-size: 1.05rem;
    }

    .stat-description {
        font-size: 0.95rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.35rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.96rem;
        padding: 0.65rem 1.05rem;
        margin: 0 0.05rem;
    }

    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

/* Tablet Medium (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .player-card {
        height: 300px;
    }

    .trail-card {
        height: 270px;
    }

    .footer-logo img {
        width: 120px;
    }

    .social-section h3 {
        font-size: 28px;
    }

    .nav-link {
        font-size: 13px;
    }

    .social-title {
        font-size: 18px;
    }

    .newsletter-text {
        font-size: 18px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }

    .navbar-toggler {
        display: block;
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Tablet Small (600px to 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .player-card {
        height: 280px;
    }

    .trail-card {
        height: 250px;
    }

    .footer-logo img {
        width: 110px;
    }

    .social-section h3 {
        font-size: 24px;
    }

    .nav-link {
        font-size: 12px;
    }

    .social-title {
        font-size: 16px;
    }

    .newsletter-text {
        font-size: 16px;
    }

    .app-link img {
        width: 120px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .navbar-toggler {
        display: block;
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Large (475px to 599px) */
@media (max-width: 599px) and (min-width: 475px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .player-card {
        height: 260px;
    }

    .trail-card {
        height: 230px;
    }

    .footer-logo img {
        width: 100px;
    }

    .social-section h3 {
        font-size: 20px;
    }

    .nav-link {
        font-size: 11px;
    }

    .social-title {
        font-size: 14px;
    }

    .newsletter-text {
        font-size: 14px;
    }

    .app-link img {
        width: 100px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .stat-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.15rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
    }

    .navbar-toggler {
        display: block;
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Common Padding */
    .common-padding {
        padding: 2.5rem 0;
    }
}

/* Mobile Small (320px to 474px) */
@media (max-width: 474px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .player-card {
        height: 240px;
    }

    .trail-card {
        height: 210px;
    }

    .footer-logo img {
        width: 90px;
    }

    .social-section h3 {
        font-size: 18px;
    }

    .nav-link {
        font-size: 10px;
    }

    .social-title {
        font-size: 12px;
    }

    .newsletter-text {
        font-size: 12px;
    }

    .app-link img {
        width: 80px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .newsletter-btn {
        width: 35px;
        height: 35px;
    }

    .newsletter-input {
        font-size: 12px;
    }

    /* Unifying Section */
    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .stat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .navbar-toggler {
        display: block;
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Common Padding */
    .common-padding {
        padding: 2rem 0;
    }
}

/* Additional Navbar Styles */
.navbar-toggler {
    color: #ffffff;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse.show {
    display: block !important;
}

.navbar-nav .nav-link.active {
    color: #4ea4f8 !important;
}

/* Search Box Styles */
.search-icon {
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #4ea4f8;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 600px;
    background: #18191C;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-container {
    transform: scale(1) translateY(0);
}

.search-box {
    display: flex;
    align-items: center;
    background: #262932;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    outline: none;
    padding: 0.5rem 0;
}

.search-input::placeholder {
    color: #999;
    font-size: 1.1rem;
}

.search-btn {
    background: #4ea4f8;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    margin-left: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.search-close {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.search-close:hover {
    color: #ffffff;
}

.search-suggestions {
    width: 100%;
}

.suggestion-category h6 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.suggestion-item {
    background: #262932;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-item:hover {
    background: #4ea4f8;
    transform: translateY(-2px);
}

/* Search Box Responsive Styles */
@media (max-width: 768px) {
    .search-container {
        padding: 1.5rem;
        margin: 1rem;
        max-width: 95%;
    }

    .search-box {
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
    }

    .search-input {
        font-size: 1rem;
    }

    .search-input::placeholder {
        font-size: 1rem;
    }

    .search-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-left: 0.8rem;
    }

    .search-close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1rem;
        padding: 0.4rem;
    }

    .suggestion-category h6 {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .suggestion-items {
        gap: 0.6rem;
    }

    .suggestion-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .search-container {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 12px;
    }

    .search-box {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.8rem;
        border-radius: 10px;
    }

    .search-input {
        width: 100%;
        font-size: 0.9rem;
        text-align: center;
    }

    .search-input::placeholder {
        font-size: 0.9rem;
        text-align: center;
    }

    .search-btn {
        width: 100%;
        margin-left: 0;
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .search-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.9rem;
        padding: 0.3rem;
    }

    .suggestion-category h6 {
        font-size: 0.8rem;
        text-align: center;
    }

    .suggestion-items {
        flex-direction: column;
        gap: 0.6rem;
    }

    .suggestion-item {
        text-align: center;
        padding: 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Clubs Page Styles */
.clubs-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clubs-hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clubs-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.clubs-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.clubs-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Clubs Filter Section */
.clubs-filter-section {
    background-color: #18191C;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid #4ea4f8;
    color: #4ea4f8;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: #4ea4f8;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Coach Tabs */
.coach-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.coach-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.coach-tab {
    background: transparent;
    border: 2px solid #3e3e3e;
    color: #ababab;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.coach-tab:hover,
.coach-tab.active {
    background: #4ea4f8;
    color: #ffffff;
    transform: translateY(-2px);
    border-color:#4ea4f8;
}

.coach-carousel-wrapper {
    position: relative;
}

/* Clubs Grid Section */
/* .clubs-grid-section {
    background-color: #1E1E1E;
} */

.club-card {
    background: #262932;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.club-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.club-badge {
    background: #4ea4f8;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.club-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.club-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.club-location {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.club-location i {
    margin-right: 0.5rem;
    color: #4ea4f8;
}

.club-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.club-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.stat-label {
    font-weight: 300;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.club-btn {
    background: #4ea4f8;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.club-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.load-more-btn {
    border: 2px solid #4ea4f8;
    color: #4ea4f8;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #4ea4f8;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Featured Clubs Section */
.featured-clubs-section {
    background-color: #18191C;
}

.clubs-carousel .club-card {
    margin-top: 20px;
}

.featured-clubs-carousel .owl-nav {
    text-align: center;
    margin-top: 2rem;
}

.featured-clubs-carousel .owl-nav button {
    background: #4ea4f8;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.featured-clubs-carousel .owl-nav button:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.featured-club-item {
    background: #262932;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-club-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured-club-image {
    height: 200px;
    overflow: hidden;
}

.featured-club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-club-item:hover .featured-club-image img {
    transform: scale(1.1);
}

.featured-club-content {
    padding: 1.5rem;
    text-align: center;
}

.featured-club-content h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-club-content p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: #ffffff;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Responsive Design for Clubs Page */
@media (max-width: 768px) {
    .clubs-hero-section {
        height: 50vh;
    }

    .clubs-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .clubs-hero-section .hero-subtitle {
        font-size: 1rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .club-image {
        height: 180px;
    }

    .club-content {
        padding: 1rem;
    }

    .club-name {
        font-size: 1.1rem;
    }

    .club-stats {
        gap: 1rem;
    }

    .featured-club-image {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .clubs-hero-section {
        height: 40vh;
    }

    .clubs-hero-section .hero-title {
        font-size: 2rem;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }

    .filter-tab {
        width: 200px;
        text-align: center;
    }

    .club-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .load-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Club Cards Grid Styles */
/* .clubs-grid-section {
    background-color: #1E1E1E;
    padding: 80px 0;
} */

/* .club-card {
    background: #262932;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* .club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #4ea4f8;
} */
/* 
.club-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.club-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.club-info {
    margin-top: auto;
}

.club-info p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.club-info i {
    color: #4ea4f8;
    font-size: 0.8rem;
} */

/* New Club List Styles */
.clubs-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.club-item {
    width: 100%;
}

/* Responsive Design for Club Cards */
@media (max-width: 1200px) {
    .clubs-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .club-card {
        padding: 1.2rem;
    }

    .club-logo {
        width: 70px;
        height: 70px;
    }

    .club-card h5 {
        font-size: 0.9rem;
    }

    .club-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .clubs-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .clubs-grid-section {
        padding: 60px 0;
    }

    .club-card {
        padding: 1rem;
    }

    .club-logo {
        width: 60px;
        height: 60px;
    }

    .club-card h5 {
        font-size: 0.85rem;
    }

    .club-info p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .clubs-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .club-card {
        padding: 0.8rem;
    }

    .club-logo {
        width: 50px;
        height: 50px;
    }

    .club-card h5 {
        font-size: 0.8rem;
    }

    .club-info p {
        font-size: 0.7rem;
    }
}

/* Secondary Banner Styles */

/* .academy-detail-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.325), rgba(0, 0, 0, 0.33)), url(../img/academy/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */
.secondary-banner {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* padding-bottom: 40p  x; */
}

.banner-bg {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.325), rgba(0, 0, 0, 0.33));
    z-index: 2;
}

.banner-branding {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    margin-bottom: 0;
}

/* .banner-logo-section {
    display: flex;
    align-items: flex-end;
    gap: 30px;
} */

.banner-logo {
    position: relative;
    width: 100px;
    height: 100px;
}

.banner-logo img {
    width: 100px;
}

.banner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.banner-title {
    font-weight: 500;
    font-size: 42px;
    color: #fcfdff;
    margin-bottom: 10px;
}

.banner-website {
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .banner-website i {
    color: #4ea4f8;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} */

.banner-meta {
    display: flex;
    /* flex-direction: column; */
    gap: 4rem;
    /* align-items: flex-end; */
    /* padding-bottom: 10px; */
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    flex-direction: column;
    text-align: center;
}

.meta-item i {
    font-size: 22px;
    color: #ffffff;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-weight: 300;
    font-size: 17px;
    text-align: center;
    color: #fff;
}

.meta-value {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    color: #fff;
}

/* Responsive Design for Secondary Banner */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 2.8rem;
    }

    .banner-logo {
        width: 100px;
        height: 100px;
    }

    .logo-ring {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 0.7rem;
        width: 85px;
    }

    .logo-inner {
        width: 60px;
        height: 60px;
    }

    .logo-inner i {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .secondary-banner {
        min-height: 400px;
        padding-bottom: 40px;
    }

    .banner-branding {
        bottom: 30px;
    }

    .banner-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        align-items: center;
    }

    .banner-title {
        font-size: 2.4rem;
    }

    .banner-meta {
        align-items: center;
        margin-top: 20px;
        gap: 20px;
    }

    .banner-bg::before,
    .banner-bg::after {
        display: none;
    }

    .meta-item i {
        font-size: 1.4rem;
    }

    .meta-label {
        font-size: 0.8rem;
    }

    .meta-value {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .secondary-banner {
        min-height: 350px;
        padding-bottom: 30px;
    }

    .banner-branding {
        bottom: 25px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-website {
        font-size: 1rem;
    }

    .banner-logo {
        width: 90px;
        height: 90px;
    }

    .logo-ring {
        width: 90px;
        height: 90px;
    }

    .logo-text {
        font-size: 0.65rem;
        width: 75px;
    }

    .logo-inner {
        width: 55px;
        height: 55px;
    }

    .logo-inner i {
        font-size: 1.3rem;
    }

    .banner-meta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .meta-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .meta-item i {
        font-size: 1.2rem;
    }

    .meta-label {
        font-size: 0.75rem;
    }

    .meta-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .secondary-banner {
        min-height: 300px;
        padding-bottom: 25px;
    }

    .banner-branding {
        bottom: 20px;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .banner-website {
        font-size: 0.9rem;
    }

    .banner-logo {
        width: 80px;
        height: 80px;
    }

    .logo-ring {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 0.6rem;
        width: 65px;
    }

    .logo-inner {
        width: 50px;
        height: 50px;
    }

    .logo-inner i {
        font-size: 1.1rem;
    }

    .banner-meta {
        flex-direction: column;
        gap: 15px;
    }

    .meta-item {
        flex-direction: row;
        gap: 10px;
    }

    .meta-item i {
        font-size: 1.1rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 0.8rem;
    }
}

/* Club Detail Content Styles */
.club-detail-content {
    padding: 40px 0 0;
}

.club-navigation {
    margin-bottom: 30px;
}

.club-nav-tabs {
    position: relative;
    justify-content: space-between;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 0 20px;
    padding: 0 !important;
}

.club-nav-tabs::before {
    position: absolute;
    content: "";
    border: 1px solid #4e4e4e;
    width: 100%;
    bottom: 0;
    left: 0;
}

.club-nav-tabs .nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    background: transparent;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}

.club-nav-tabs .nav-link:hover {
    color: #4ea4f8;
}

.club-nav-tabs .nav-link.active {
    color: #4ea4f8;
    background: transparent;
    border-bottom: 2px solid #4ea4f8;
    z-index: 99;
}

.club-tab-content {
    margin-top: 40px;
}

.about-cont-img {
    border-radius: 30px;
    background: #262932;
    padding: 40px 30px;
}

.about-title {
    font-weight: 400;
    font-size: 32px;
    color: #fcfdff;
}

.about-content p {
    font-weight: 300;
    font-size: 18px;
    color: rgba(217, 217, 217, 0.7);
}

.other-sports-section {
    margin-top: 40px;
}


.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}



.stats-section {
    margin-top: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ea4f8, #357ABD);
}

.stat-icon i {
    font-size: 20px;
    color: #fff;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* 
.placeholder-content {
    text-align: center;
    padding: 60px 20px;
    color: #999;
} */

.placeholder-content h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* Responsive Design for Club Detail */
@media (max-width: 992px) {
    .club-tab-content {
        padding: 30px 20px;
    }



    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .masar-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .masar-stat-item {
        padding: 20px 16px;
    }

    .masar-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .masar-stat-label {
        font-size: 13px;
    }

    .masar-stat-number {
        font-size: 20px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .masar-gallery-thumbnail {
        height: 180px;
    }

    .masar-play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .club-nav-tabs {
        padding: 0 10px;
    }

    .club-nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .club-detail-content {
        padding: 20px 0;
    }

    .club-tab-content {
        padding: 20px 15px;
    }



    .sports-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .masar-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .masar-stat-item {
        padding: 18px 14px;
    }

    .masar-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .masar-stat-label {
        font-size: 12px;
    }

    .masar-stat-number {
        font-size: 18px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .masar-gallery-thumbnail {
        height: 160px;
    }

    .masar-play-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .masar-modal-content {
        width: 95vw;
        height: 95vh;
        max-width: 1000px;
        max-height: 700px;
        min-width: 300px;
        min-height: 200px;
    }

    .masar-modal-image-container,
    .masar-modal-video-container {
        padding: 15px;
    }

    .masar-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .masar-modal-prev {
        left: 10px;
    }

    .masar-modal-next {
        right: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .masar-modal-content {
        width: 98vw;
        height: 98vh;
        max-width: none;
        max-height: none;
        min-width: 280px;
        min-height: 180px;
        border-radius: 8px;
    }

    .masar-modal-image-container,
    .masar-modal-video-container {
        padding: 10px;
    }

    .masar-modal-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .masar-modal-prev {
        left: 5px;
    }

    .masar-modal-next {
        right: 5px;
    }

    .masar-modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* .section-title {
        font-size: 20px;
    } */
/* 
    .about-content p {
        font-size: 14px;
    } */

.club-nav-tabs .nav-link {
    /* padding: 10px 12px; */
    /* font-size: 11px; */
}

@media (max-width: 576px) {
    .club-nav-tabs {
        flex-wrap: wrap;
    }

    .club-nav-tabs .nav-link {
        padding: 8px 10px;
        font-size: 10px;
    }

    .sport-image {
        height: 100px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .stat-value {
        font-size: 16px;
    }
}

/* Template Page Styles */
.template-hero-section {
    background: linear-gradient(135deg, #1E1E1E, #18191C);
    padding: 120px 0 80px;
    text-align: center;
}

.template-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.template-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 0;
}

.template-content-section {
    background-color: #1E1E1E;
    padding: 80px 0;
}

.content-card {
    background: #262932;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
}

.content-features {
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #18191C;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #4ea4f8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ea4f8, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 0;
}

.custom-sport-card .sports-carousel {
    margin-top: 20px !important;
}

.custom-sport-card .sport-card {
    border-radius: 20px;
    height: 200px;
    box-shadow: none !important;
}

.custom-sport-card .sport-card .sport-title {
    font-weight: 400;
    font-size: 20px;
}

.custom-sport-card .owl-nav,
.custom-sport-card .owl-dots {
    display: none !important;
}

/* Masar Statistics Section - Exact UI Design */
.masar-stats-container {
    margin-top: 0;
}

.masar-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.coach-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

/* Additional icon color classes for coach stats */
.masar-stat-icon.blue-icon {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
}

.masar-stat-icon.green-icon {
    background: linear-gradient(135deg, #7ED321, #5BA517);
    color: #ffffff;
}

.masar-stat-icon.light-blue-icon {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #ffffff;
}

/* .masar-stats-grid-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
} */

.masar-stats-grid-custom .masar-stat-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: none;
}

.masar-stat-item-fullwidth {
    grid-column: 1 / -1 !important;
    max-width: none !important;
    width: 100% !important;
}

.masar-stat-item {
    background: #262932;
    border-radius: 15px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.masar-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.masar-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.masar-stat-icon.purple-icon {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.masar-stat-icon.pink-icon {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.masar-stat-icon.yellow-icon {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.masar-stat-icon.green-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.masar-stat-icon.blue-icon {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.masar-stat-item:hover .masar-stat-icon {
    transform: scale(1.1);
}

.masar-stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.masar-stat-label {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
    color: #a9a9a9;
}

.masar-stat-number {
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #fff;
}

/* Masar Gallery Section - Exact UI Design */
.masar-gallery-container {
    margin-top: 0;
}

.masar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
}

.masar-gallery-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.masar-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.masar-gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.masar-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.masar-gallery-item:hover .masar-gallery-thumbnail img {
    transform: scale(1.05);
}

.masar-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.masar-gallery-item:hover .masar-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.masar-play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.masar-play-button:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.masar-play-button i {
    margin-left: 3px;
}

/* Gallery Modal */
.masar-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.masar-gallery-modal.active {
    display: flex;
}

.masar-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.masar-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
    min-width: 320px;
    min-height: 240px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.masar-modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 15px;
}

.masar-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.masar-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.masar-modal-body {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.masar-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.masar-modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.masar-modal-prev {
    left: 20px;
}

.masar-modal-next {
    right: 20px;
}

.masar-modal-image-container,
.masar-modal-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.masar-modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.masar-modal-video-container video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* Template Page Responsive */
@media (max-width: 768px) {
    .template-hero-section {
        padding: 100px 0 60px;
    }

    .template-title {
        font-size: 2.5rem;
    }

    .template-subtitle {
        font-size: 1rem;
    }

    .template-content-section {
        padding: 60px 0;
    }

    .content-card {
        padding: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-item h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .template-hero-section {
        padding: 80px 0 40px;
    }

    .template-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-title {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* Legacy Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-nav {
        padding: 0 1rem;
    }

    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .hero-dots {
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .header-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .carousel-nav {
        justify-content: center;
        margin-top: 1rem;
    }

    .text-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .updates-header {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .updates-header .section-title-large {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .update-card {
        margin: 0 10px;
    }

    .update-image {
        height: 220px;
    }

    .play-overlay {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .update-content {
        padding: 1.2rem;
    }

    .update-content h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .update-content p {
        font-size: 0.85rem;
    }

    .logo-image {
        width: 120px;
    }

    .sport-card {
        height: 300px;
    }

    .sport-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .updates-header .section-title-large {
        font-size: 2rem;
    }

    .update-card {
        margin: 0 8px;
    }

    .update-image {
        height: 200px;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .update-content {
        padding: 1rem;
    }

    .update-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .update-content p {
        font-size: 0.8rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .academy-card {
        margin: 0 8px;
    }

    .academy-image img {
        height: 180px;
    }

    .academy-content {
        padding: 1.2rem;
    }

    .academy-content h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .view-btn {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .coach-card {
        margin: 0 8px;
    }

    .coach-image img {
        height: 180px;
    }

    .coach-content {
        padding: 1.2rem;
    }

    .coach-content h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .coach-content p {
        font-size: 0.85rem;
    }

    .logo-image {
        width: 100px;
    }

    .sport-card {
        height: 250px;
    }

    .sport-title {
        font-size: 1rem;
    }
}

.coaches-card .player-card {
    margin-top: 0;
    height: 300px;
}

/* Trails Detail Page Styles */
.main-content-padding {
    min-height: 100vh;
    padding-top: 100px;
}

.breadcrumb-section {
    margin-top: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    text-decoration: none !important;
}

.breadcrumb-item {
    font-weight: 300;
    font-size: 17px;
    color: #fff;
}

.breadcrumb-item.active {
    color: #4EA4F8;
}

.breadcrumb-separator {
    color: #666666;
    font-size: 14px;
}

/* Left Sidebar */
.trails-sidebar {
    padding: 2rem 2rem 0 0;
}

.sidebar-title {
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
}


/* Right Main Content */
.trail-detail-content {
    padding: 2rem 1rem;
}

.trail-detail-title {
    font-weight: 400;
    font-size: 48px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.trail-meta-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 16px;
    color: #4ea4f8;
}

.apply-trail-btn {
    background: #4ea4f8;
    border-radius: 35px;
    padding: 0.75rem 2.5rem;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    margin-left: auto;
}

.apply-trail-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.trail-hero-image {
    margin-bottom: 2rem;
    border-radius: 30px;
    overflow: hidden;
}

.trail-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trail-description {
    margin-bottom: 2rem;
}

.trail-description p {
    font-weight: 300;
    font-size: 16px;
    color: rgba(217, 217, 217, 0.5);
}

.trail-requirements-section {
    margin-bottom: 2rem;
}

.trail-requirements-title {
    font-weight: 500;
    font-size: 32px;
    color: #fcfdff;
    margin-bottom: 1rem;
}

.trail-requirements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trail-requirement-card {
    border-radius: 30px;
    padding: 12px 40px;
    color: #ffffff;
    background-color: #262932;
    font-weight: 300;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trail-requirement-card:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* .trail-requirement-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
} */

.about-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Review Section Styles */
.review-section-container {
    padding: 2rem 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.review-card {
    background: #262932;
    border-radius: 34px;
    padding: 30px;
}


.review-profile {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}

.review-title {
    font-weight: 300;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.review-quote {
    font-weight: 300;
    font-size: 22px;
    color: rgba(217, 217, 217, 0.5);
}

.review-rating {
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-rating i {
    font-size: 18px;
    color: #fff;
}

.review-rating i.filled {
    color: #ff9000;
}

/* News & Events Section Styles */
.news-events-container {
    padding: 2rem 0;
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.news-events-card {
    /* background: #1a1a1a; */
    /* border-radius: 12px; */
    /* overflow: hidden; */
    /* transition: all 0.3s ease; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    display: flex;
}


.news-events-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
}

.news-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-events-card:hover .news-events-image img {
    transform: scale(1.05);
}

.news-events-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-events-play-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.news-events-play-overlay i {
    color: #000;
    font-size: 20px;
    margin-left: 3px;
}

.news-events-content {
    padding: 20px;
}

.news-events-title {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.news-events-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 10px;
}

.news-events-meta i {
    color: rgba(217, 217, 217, 0.5);
    font-size: 14px;
}

.news-events-date {
    font-weight: 300;
    font-size: 17px;
    color: rgba(217, 217, 217, 0.5);
}



/* Responsive Design for News & Events Section */
@media (max-width: 768px) {
    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-events-image {
        height: 180px;
    }

    .news-events-content {
        padding: 16px;
    }

    .news-events-title {
        font-size: 15px;
    }

    .news-events-meta i,
    .news-events-date {
        font-size: 13px;
    }

    .news-events-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .news-events-play-overlay {
        width: 50px;
        height: 50px;
    }

    .news-events-play-overlay i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-events-image {
        height: 160px;
    }

    .news-events-content {
        padding: 14px;
    }

    .news-events-title {
        font-size: 14px;
    }

    .news-events-meta i,
    .news-events-date {
        font-size: 12px;
    }

    .news-events-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .news-events-play-overlay {
        width: 45px;
        height: 45px;
    }

    .news-events-play-overlay i {
        font-size: 14px;
    }
}

/* Responsive Design for Review Section */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
        border-radius: 24px;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .review-name {
        font-size: 15px;
        font-weight: 600;
    }

    .review-title {
        font-size: 12px;
    }

    .review-quote {
        font-size: 13px;
    }

    .review-rating i {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 16px;
        border-radius: 20px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }

    .review-name {
        font-size: 14px;
    }

    .review-title {
        font-size: 11px;
    }

    .review-quote {
        font-size: 12px;
    }

    .review-rating i {
        font-size: 12px;
    }
}

/* Responsive Design for Trails Detail */
@media (max-width: 992px) {
    .trail-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .apply-trail-btn {
        margin-left: 0;
    }

    .trail-detail-title {
        font-size: 2rem;
    }

    .sidebar-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-content-padding {
        padding-top: 80px;
    }


    .trail-detail-title {
        font-size: 1.75rem;
    }

    .trail-hero-image img {
        height: 200px;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN FOR ALL PAGES ===== */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .player-card {
        height: 380px;
    }

    .trail-card {
        height: 320px;
    }

    .news-events-image {
        height: 250px;
    }

    .masar-gallery-thumbnail {
        height: 250px;
    }

    .masar-stat-item {
        padding: 30px 25px;
    }

    .masar-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .masar-stat-label {
        font-size: 18px;
    }



    .banner-title {
        font-size: 3.5rem;
    }

    .banner-logo img {
        width: 120px;
    }

    /* .club-nav-tabs .nav-link {
        font-size: 14px;
        padding: 12px 20px;
    } */
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .player-card {
        height: 360px;
    }

    .trail-card {
        height: 300px;
    }

    .news-events-image {
        height: 230px;
    }

    .masar-gallery-thumbnail {
        height: 230px;
    }

    .masar-stat-item {
        padding: 25px 20px;
    }

    .masar-stat-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .masar-stat-label {
        font-size: 16px;
    }

    .masar-stat-number {
        font-size: 26px;
    }

    .banner-title {
        font-size: 3rem;
    }

    .banner-logo img {
        width: 100px;
    }

    .club-nav-tabs .nav-link {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* Desktop Screens (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .player-card {
        height: 340px;
    }

    .trail-card {
        height: 280px;
    }

    .news-events-image {
        height: 220px;
    }

    .masar-gallery-thumbnail {
        height: 220px;
    }

    .masar-stat-item {
        padding: 22px 18px;
    }

    .masar-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .masar-stat-label {
        font-size: 15px;
    }

    .masar-stat-number {
        font-size: 24px;
    }

    .banner-title {
        font-size: 2.8rem;
    }

    .banner-logo img {
        width: 90px;
    }

    .club-nav-tabs .nav-link {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Tablet Large (992px - 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .player-card {
        height: 320px;
    }

    .trail-card {
        height: 260px;
    }

    .news-events-image {
        height: 200px;
    }

    .masar-gallery-thumbnail {
        height: 200px;
    }

    .masar-stat-item {
        padding: 20px 16px;
    }

    .masar-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .masar-stat-label {
        font-size: 14px;
    }

    .masar-stat-number {
        font-size: 22px;
    }

    .banner-title {
        font-size: 2.4rem;
    }

    .banner-logo img {
        width: 80px;
    }

    .club-nav-tabs .nav-link {
        font-size: 11px;
        padding: 6px 12px;
    }

    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .masar-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .player-card {
        height: 300px;
    }

    .trail-card {
        height: 240px;
    }

    .news-events-image {
        height: 180px;
    }

    .masar-gallery-thumbnail {
        height: 180px;
    }

    .masar-stat-item {
        padding: 18px 14px;
    }

    .masar-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .masar-stat-label {
        font-size: 13px;
    }

    .masar-stat-number {
        font-size: 20px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-logo img {
        width: 70px;
    }

    .club-nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .club-nav-tabs .nav-link {
        font-size: 10px;
        padding: 5px 10px;
    }

    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .masar-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 10px;
        padding: 20px;
    }
}

/* Mobile Large (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .player-card {
        height: 280px;
    }

    .trail-card {
        height: 220px;
    }

    .news-events-image {
        height: 160px;
    }

    .masar-gallery-thumbnail {
        height: 160px;
    }

    .masar-stat-item {
        padding: 16px 12px;
    }

    .masar-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .masar-stat-label {
        font-size: 12px;
    }

    .masar-stat-number {
        font-size: 18px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-logo img {
        width: 60px;
    }

    .club-nav-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }

    .club-nav-tabs .nav-link {
        font-size: 9px;
        padding: 4px 8px;
    }

    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .masar-stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }
}

/* Mobile Medium (475px - 599px) */
@media (max-width: 599px) and (min-width: 475px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .player-card {
        height: 260px;
    }

    .trail-card {
        height: 200px;
    }

    .news-events-image {
        height: 140px;
    }

    .masar-gallery-thumbnail {
        height: 140px;
    }

    .masar-stat-item {
        padding: 14px 10px;
    }

    .masar-stat-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .masar-stat-label {
        font-size: 11px;
    }

    .masar-stat-number {
        font-size: 16px;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .banner-logo img {
        width: 50px;
    }

    .club-nav-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .club-nav-tabs .nav-link {
        font-size: 8px;
        padding: 3px 6px;
    }

    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .masar-gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .masar-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        margin-top: 8px;
        padding: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* Mobile Small (320px - 474px) */
@media (max-width: 474px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .player-card {
        height: 240px;
    }

    .trail-card {
        height: 180px;
    }

    .news-events-image {
        height: 120px;
    }

    .masar-gallery-thumbnail {
        height: 120px;
    }

    .masar-stat-item {
        padding: 12px 8px;
    }

    .masar-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .masar-stat-label {
        font-size: 10px;
    }

    .masar-stat-number {
        font-size: 14px;
    }

    .banner-title {
        font-size: 1.4rem;
    }

    .banner-logo img {
        width: 40px;
    }

    .club-nav-tabs {
        flex-wrap: wrap;
        gap: 3px;
    }

    .club-nav-tabs .nav-link {
        font-size: 7px;
        padding: 2px 4px;
    }

    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .masar-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .masar-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 6px;
        margin-top: 6px;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        padding: 4px 0;
    }

    .common-padding {
        padding: 30px 0;
    }
}

/* ===== SPECIFIC PAGE RESPONSIVE STYLES ===== */

/* Club Detail Page Specific Responsive */
@media (max-width: 768px) {
    .club-detail-content {
        padding: 20px 0;
    }

    .club-tab-content {
        margin-top: 20px;
    }

    .about-cont-img {
        margin-bottom: 2rem;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .other-sports-section {
        margin-top: 2rem;
    }

    .sport-card {
        height: 150px;
    }

    .sport-title {
        font-size: 1rem;
    }

    .masar-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .masar-stat-item {
        padding: 16px;
    }

    .masar-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .masar-stat-label {
        font-size: 12px;
    }

    .masar-stat-number {
        font-size: 18px;
    }

    .masar-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .masar-gallery-thumbnail {
        height: 160px;
    }

    .masar-play-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .masar-modal-content {
        width: 95vw;
        height: 95vh;
        max-width: none;
        max-height: none;
    }

    .masar-modal-image-container,
    .masar-modal-video-container {
        padding: 10px;
    }

    .masar-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .masar-modal-prev {
        left: 10px;
    }

    .masar-modal-next {
        right: 10px;
    }
}

/* Trails Detail Page Specific Responsive */
@media (max-width: 768px) {
    .main-content-padding {
        padding-top: 80px;
    }

    .breadcrumb-section {
        margin-top: 20px;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .trail-detail-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .trail-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .trail-meta-item {
        font-size: 0.9rem;
    }

    .apply-trail-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .trail-hero-image {
        margin-bottom: 1.5rem;
    }

    .trail-hero-image img {
        height: 200px;
        border-radius: 8px;
    }

    .trail-description {
        margin-bottom: 1.5rem;
    }

    .trail-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .trail-requirements-section {
        margin-bottom: 1.5rem;
    }

    .trail-requirements-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .trail-requirements-list {
        gap: 0.8rem;
    }

    .trail-requirement-card {
        padding: 12px 16px;
    }

    .trail-requirement-text {
        font-size: 0.85rem;
    }

    .trails-sidebar {
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .sidebar-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .trail-card {
        margin-bottom: 1rem;
    }

    .trail-content {
        padding: 1rem;
    }

    .trail-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .trail-location {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .trail-date {
        margin-bottom: 0.8rem;
    }

    .date-range {
        font-size: 0.8rem;
    }

    .date-month {
        font-size: 0.7rem;
    }

    .trail-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Index Page Specific Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .learn-more-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .sport-card {
        height: 200px;
    }

    .sport-title {
        font-size: 1.1rem;
    }

    .player-card {
        margin-bottom: 1rem;
    }

    .trail-card {
        margin-bottom: 1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-logo img {
        width: 120px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input {
        width: 100%;
    }

    .app-link {
        padding: 8px 12px;
    }

    .app-link img {
        width: 100px;
    }
}

/* Template Page Specific Responsive */
@media (max-width: 768px) {
    .template-hero-section {
        padding: 100px 0 60px;
    }

    .template-title {
        font-size: 2.5rem;
    }

    .template-subtitle {
        font-size: 1rem;
    }

    .template-content-section {
        padding: 60px 0;
    }

    .content-card {
        padding: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-item h5 {
        font-size: 1.1rem;
    }
}

/* ===== UTILITY RESPONSIVE CLASSES ===== */
@media (max-width: 768px) {
    .d-mobile-none {
        display: none !important;
    }

    .d-mobile-block {
        display: block !important;
    }

    .text-mobile-center {
        text-align: center !important;
    }

    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }

    .p-mobile-2 {
        padding: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .d-mobile-sm-none {
        display: none !important;
    }

    .d-mobile-sm-block {
        display: block !important;
    }

    .text-mobile-sm-center {
        text-align: center !important;
    }

    .mb-mobile-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .p-mobile-sm-1 {
        padding: 0.25rem !important;
    }
}

/* ===== MINI BANNER STYLES ===== */
.mini-banner {
    background: linear-gradient( rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('../img/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
}
.mini-banner-community {
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%),
        url('../img/random.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
}

.mini-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mini-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mini-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-home:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

.breadcrumb-home i {
    font-size: 12px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb-current {
    color: #007bff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.mini-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mini-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Mini Banner */
@media (max-width: 768px) {
    .mini-banner {
        padding: 60px 0 40px;
        height: 350px;
        background-attachment: scroll;
    }

    .mini-banner-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .mini-banner-subtitle {
        font-size: 1rem;
    }

    .breadcrumb-home,
    .breadcrumb-current {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .mini-banner {
        padding: 50px 0 30px;
        height: 300px;
        background-attachment: scroll;
    }

    .mini-banner-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .mini-banner-subtitle {
        font-size: 0.9rem;
    }

    .mini-banner-breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }

    .breadcrumb-home,
    .breadcrumb-current {
        padding: 4px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .mini-banner {
        height: 250px;
        background-attachment: scroll;
    }

    .mini-banner-title {
        font-size: 1.5rem;
    }

    .mini-banner-subtitle {
        font-size: 0.85rem;
    }

    .coach-info-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }


    .coach-info-bar .info-item:first-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .coach-info-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        margin-top: 10px;
    }

    .coach-info-bar .info-item {
        font-size: 13px;
    }

    .coach-info-bar .info-item i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .coach-info-bar {
        padding: 10px;
        gap: 6px;
    }

    .coach-info-bar .info-item {
        font-size: 12px;
        gap: 6px;
    }

    .coach-info-bar .info-item i {
        font-size: 13px;
    }
}

/* ===== COACH INFO BAR STYLES ===== */
.coach-info-bar {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.coach-info-bar .info-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin: 0;
    gap: 10px;
}

.coach-info-bar .info-item .banner-mini-flag img {
    width: 25px;
    height: 25px;
}

.coach-info-bar .info-item .banner-mini-flag2 img {
    width: 25px;
    height: 25px;
    margin-left: -20px;
}

.coach-info-bar .info-item i {
    font-size: 16px;
    color: #ffffff;
}


/* ===== STATISTICS MENU STYLES ===== */
.stat-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 14px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.menu-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.menu-item:hover {
    background: #333;
}

.menu-item i {
    font-size: 12px;
    width: 16px;
}

.edit-item {
    color: #28a745;
}

.edit-item:hover {
    background: rgba(40, 167, 69, 0.1);
    color: #20c997;
}

.delete-item {
    color: #dc3545;
}

.delete-item:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #e74c3c;
}

/* Modal Styles for Statistics */
.modal-content {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #444;
    padding: 20px;
}

.modal-title {
    color: #ffffff;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 20px;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    background: #333;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #444;
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    color: #ffffff;
}

.form-control option {
    background: #333;
    color: #ffffff;
}

.modal-footer {
    border-top: 1px solid #444;
    padding: 20px;
}

.btn-secondary {
    background: #6c757d;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357ABD, #2c5aa0);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

/* ===== COMMUNITY PAGE STYLES ===== */
/* .community-feed {
    padding: 20px 0;
} */
.community-section {
    margin-top: 70px;
}

.community-post-section {
    height: 65vh;
    overflow: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for Community Posts */
.community-post-section::-webkit-scrollbar {
    width: 8px;
}

.community-post-section::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.community-post-section::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px;
}

.community-post-section::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* Firefox Scrollbar */
.community-post-section {
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #2a2a2a;
}

.community-search-bar {
    background: #262932;
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 30px;
    /* border: 1px solid #333; */
}

.community-search-bar .community-search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.community-search-bar .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.community-search-bar .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
}

.search-input-container {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    gap: 12px;
}

.search-input-container .search-icon {
    color: #888;
    font-size: 16px;
    flex-shrink: 0;
}

.community-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    padding: 0;
}

.community-search-input::placeholder {
    color: #888;
}

.search-submit-btn {
    background: transparent;
    font-size: 18px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    transform: scale(1.05);
}

.community-post {
    background: #262932;
    border-radius: 20px;
    margin-bottom: 25px;

}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 15px; */
    padding: 20px;
    border-bottom: 2px solid #191a1d;
}

.post-user-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.post-avatar {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    overflow: hidden;
}

.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-user-details h5.username {
    font-weight: 400;
    font-size: 24px;
    color: #fcfdff;
    margin-bottom: 10px;
}

.post-user-details p.user-role {
    font-weight: 300;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.options-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.options-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.post-content {
    /* margin-bottom: 20px; */
    padding: 20px;
}

.post-title {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.post-text {
    font-weight: 300;
    font-size: 18px;
    color: #fff;
}

.post-image {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 15px;
    height: 300px;
    width: 100%;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.post-engagement {
    /* padding: 20px; */
}

.engagement-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 15px; */
    padding: 0 20px 20px;
}

.likes-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.like-avatars {
    display: flex;
    /* margin-right: 8px; */
}

.like-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #2a2a2a;
    margin-left: -6px;
}

.like-avatars img:first-child {
    margin-left: 0;
}

.likes-info span,
.comments-count span {
    color: #fff;
    font-size: 14px;
}

.post-actions {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 2px solid #191a1d;
    padding: 20px;
}

.action-btn {
    background: transparent;
    border: none;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    padding: 5px;
}


.action-btn i {
    font-size: 20px;
}

/* Like Button States */
.like-btn.liked {
    color: #e74c3c !important;
}

.like-btn.liked .like-icon {
    color: #e74c3c !important;
}

.like-btn:hover {
    color: #e74c3c !important;
}

.like-btn:hover .like-icon {
    color: #e74c3c !important;
    transform: scale(1.1);
}

/* Repost Dropdown Styles - Exact UI Design */
.repost-dropdown-menu {
    background: #18191C !important;
    /* border: 1px solid rgba(255, 255, 255, 0.08) !important; */
    border-radius: 15px !important;
    padding: 0 !important;
    margin-top: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    min-width: 320px !important;
    z-index: 1050 !important;
}


/* Force dropdown to show when Bootstrap fails */
.repost-dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Dropdown positioning */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
}

.repost-dropdown-item {
    padding: 15px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 15px !important;
    border: none !important;
    background: transparent !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border-radius: 15px;
    border: none;
}


.repost-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.repost-dropdown-item:active {
    background: rgba(255, 255, 255, 0.08) !important;
}

.repost-dropdown-item i {
    font-size: 20px;
    color: #ffffff;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.repost-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.repost-option-title {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.repost-option-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Dropdown Animation */
.repost-dropdown-menu {
    animation: dropdownSlide 0.2s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Repost Dropdown */
@media (max-width: 768px) {
    .repost-dropdown-menu {
        min-width: 250px !important;
    }

    .repost-dropdown-item {
        padding: 10px 15px !important;
        gap: 12px !important;
    }

    .repost-dropdown-item i {
        font-size: 16px;
    }

    .repost-option-title {
        font-size: 14px;
    }

    .repost-option-desc {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .repost-dropdown-menu {
        min-width: 220px !important;
        margin-top: 5px !important;
    }

    .repost-dropdown-item {
        padding: 8px 12px !important;
        gap: 10px !important;
    }

    .repost-dropdown-item i {
        font-size: 14px;
    }

    .repost-option-title {
        font-size: 13px;
    }

    .repost-option-desc {
        font-size: 11px;
    }
}

/* Comments Modal Styles - Exact UI Design */
.comments-modal-content {
    background: #18191C !important;
    border: none !important;
    border-radius: 20px !important;
    max-height: 70vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.comments-modal-header {
    /* background: #1e1e1e !important; */
    border-bottom: none !important;
    padding: 15px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.comments-modal-title {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin: 0 !important;
}

.comments-close-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 20px !important;
    padding: 8px !important;
    opacity: 1 !important;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.comments-close-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.comments-modal-body {
    padding: 0 !important;
    max-height: 75vh;
    overflow-y: auto;
    /* background: #1e1e1e; */
}

/* Custom Scrollbar for Comments Modal */
.comments-modal-body::-webkit-scrollbar {
    width: 8px;
}

.comments-modal-body::-webkit-scrollbar-track {
    background: #18191C;
    border-radius: 10px;
}

.comments-modal-body::-webkit-scrollbar-thumb {
    background: #4ea4f8;
    border-radius: 10px;
    border: 2px solid #18191C;
}

.comments-modal-body::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* Firefox Scrollbar */
.comments-modal-body {
    scrollbar-width: thin;
    scrollbar-color: #4ea4f8 #18191C;
}

/* Comment Input Section */
.comments-input-section {
    padding: 20px 30px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    /* background: #1e1e1e; */
}

.comments-input-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comments-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comments-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comments-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    background: #18191C;
    border-radius: 50px;
    padding: 12px 20px;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-input {
    flex: 1;
    background: transparent;
    border: none;
    font-weight: 300;
    font-size: 14px;
    color: #FFFF;
    outline: none;
    padding: 0;
}

.comments-input::placeholder {
    color: #888;
    font-weight: 400;
}

.comments-submit-btn {
    /* background: #4A90E2; */
    border: solid 2px #4ea4f8;
    background: transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ea4f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .comments-submit-btn:hover {
    background: #357ABD;
    transform: scale(1.05);
} */

/* Comments List */
.comments-list {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #18191C;
}

.comments-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 20px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}

.comments-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comments-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comments-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comments-content {
    flex: 1;
}

.comments-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
}

.comments-user-info {
    display: flex;
    gap: 5px;
}

.comments-username {
    font-weight: 400;
    font-size: 22px;
    color: #fff;
}

.comments-role {
    font-weight: 300;
    font-size: 17px;
    color: rgba(252, 253, 255, 0.6);
}

.comments-like-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: -2px;
}

.comments-like-btn:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.comments-like-btn.liked {
    color: #e74c3c;
}

.comments-text {
    font-weight: 300;
    font-size: 17px;
    color: #fff;
}

.comments-reply-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
}

.comments-reply-btn:hover {
    color: #4A90E2;
}

/* Responsive Design for Comments Modal */
@media (max-width: 768px) {
    .comments-modal-content {
        margin: 10px;
        max-height: 90vh;
    }

    .comments-input-section,
    .comments-list {
        padding: 15px 20px;
    }

    .comments-item {
        gap: 12px;
    }

    .comments-avatar,
    .comments-user-avatar {
        width: 40px;
        height: 40px;
    }

    .comments-username {
        font-size: 15px;
    }

    .comments-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .comments-modal-header {
        padding: 15px 20px !important;
    }

    .comments-modal-title {
        font-size: 18px !important;
    }

    .comments-input-section,
    .comments-list {
        padding: 12px 15px;
    }

    .comments-input-container {
        gap: 10px;
    }

    .comments-user-avatar {
        width: 35px;
        height: 35px;
    }

    .comments-submit-btn {
        width: 28px;
        height: 28px;
    }
}

.latest-news-sidebar {
    padding: 0;
    /* border: 1px solid #333; */
    height: 77vh;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Custom Scrollbar for Latest News Sidebar */
.news-items {
    overflow-y: auto;
    padding-right: 10px;
}

.news-items::-webkit-scrollbar {
    width: 8px;
}

.news-items::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.news-items::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
}

.news-items::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* Firefox Scrollbar */
.news-items {
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #2a2a2a;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 15px;
    flex-shrink: 0;
}

.sidebar-header h3 {
    font-weight: 600;
    font-size: 28px;
    color: #fff;
}

.view-all-link {
    font-weight: 400;
    font-size: 15px;
    color: rgba(217, 217, 217, 0.5);
    text-decoration: NONE;
}

.view-all-link:hover {
    color: #357ABD;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* Custom Scrollbar for News Items */
.news-items::-webkit-scrollbar {
    width: 8px;
}

.news-items::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.news-items::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px;
    border: 2px solid #2a2a2a;
}

.news-items::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* Firefox Scrollbar */
.news-items {
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #2a2a2a;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-image {
    width: 200px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-title {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-weight: 300;
    font-size: 13px;
    color: rgba(217, 217, 217, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    font-size: 12px;

}

.read-more-btn {
    background: #4A90E2;
    border: none;
    border-radius: 15px;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #357ABD;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Responsive Design for Community Page */
@media (max-width: 992px) {
    .latest-news-sidebar {
        margin-top: 30px;
        position: static;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .latest-news-sidebar {
        height: 400px;
    }

    .sidebar-header {
        padding: 15px 15px 12px;
    }

    .sidebar-header h3 {
        font-size: 24px;
    }

    .news-items {
        padding: 15px;
        gap: 15px;
    }
}

.community-search-bar {
    padding: 12px 15px;
}

.community-post {
    padding: 15px;
}
}

@media (max-width: 768px) {
    .post-actions {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
    }

    .action-btn {
        flex: 1;
        min-width: calc(50% - 5px);
        justify-content: center;
    }

    .news-item {
        gap: 10px;
    }

    .news-image {
        width: 60px;
        height: 60px;
    }

    .news-title {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .community-search-bar .community-search-container {
        gap: 10px;
    }

    .community-search-bar .user-avatar {
        width: 35px;
        height: 35px;
    }

    .search-submit-btn {
        width: 35px;
        height: 35px;
    }

    .post-avatar {
        width: 40px;
        height: 40px;
    }

    .post-user-details h5.username {
        font-size: 15px;
    }

    .post-user-details p.user-role {
        font-size: 13px;
    }

    .post-title {
        font-size: 16px;
    }

    .post-text {
        font-size: 13px;
    }
}

/* ===== MATCH STATS TABLE STYLES ===== */
.match-stats-table-container {
    background: #1a1a1a;
    border-radius: 12px;
    overflow-x: auto;
}

.match-stats-table {
    width: 100%;
    border-collapse: collapse;
    background: #373C4A;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.match-stats-table thead {
    background: #30333C;
}

.match-stats-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    border-bottom: 2px solid #444;
    white-space: nowrap;
}

.match-stats-table td {
    padding: 12px;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    border-bottom: 1px solid #444;
    vertical-align: middle;
}

.match-stats-table tbody tr {
    transition: background-color 0.3s ease;
}

.match-stats-table tbody tr:hover {
    background: #333;
}

.match-stats-table tbody tr:nth-child(even) {
    background: #30333C;
}

.match-stats-table tbody tr:nth-child(even):hover {
    background: #333;
}

.result-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.result-badge.win {
    background: #28a745;
    color: #ffffff;
}

.result-badge.loss {
    background: #dc3545;
    color: #ffffff;
}

.result-badge.draw {
    background: #ffc107;
    color: #000000;
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-edit-table,
.btn-delete-table {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.btn-edit-table {
    background: #4A90E2;
    color: #ffffff;
}

.btn-edit-table:hover {
    background: #357ABD;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

.btn-delete-table {
    background: #dc3545;
    color: #ffffff;
}

.btn-delete-table:hover {
    background: #c82333;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.add-data-section {
    text-align: center;
    margin-top: 20px;
}

.btn-add-data {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-add-data:hover {
    background: linear-gradient(135deg, #357ABD, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-add-data i {
    font-size: 14px;
}

/* Modal Styles for Match Data */
#matchDataModal .modal-content {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
}

#matchDataModal .modal-header {
    border-bottom: 1px solid #444;
    padding: 20px;
}

#matchDataModal .modal-title {
    color: #ffffff;
    font-weight: 600;
}

#matchDataModal .btn-close {
    filter: invert(1);
}

#matchDataModal .modal-body {
    padding: 20px;
}

#matchDataModal .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

#matchDataModal .form-control {
    background: #333;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

#matchDataModal .form-control:focus {
    background: #444;
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    color: #ffffff;
}

#matchDataModal .form-control option {
    background: #333;
    color: #ffffff;
}

#matchDataModal .modal-footer {
    border-top: 1px solid #444;
    padding: 20px;
}

#matchDataModal .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

#matchDataModal .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

#matchDataModal .btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

#matchDataModal .btn-primary:hover {
    background: linear-gradient(135deg, #357ABD, #2c5aa0);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

/* Responsive Design for Table */
@media (max-width: 768px) {
    .match-stats-table-container {
        padding: 15px;
        margin: 15px 0;
    }

    .match-stats-table th,
    .match-stats-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .action-buttons {
        gap: 6px;
    }

    .btn-edit-table,
    .btn-delete-table {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .btn-add-data {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .match-stats-table-container {
        padding: 10px;
        margin: 10px 0;
    }

    .match-stats-table th,
    .match-stats-table td {
        padding: 8px 6px;
        font-size: 12px;
    }

    .result-badge {
        padding: 3px 8px;
        font-size: 10px;
    }

    .btn-edit-table,
    .btn-delete-table {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .btn-add-data {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== ACADEMY LINK STYLES ===== */
.academy-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.academy-link:hover {
    text-decoration: none !important;
    color: inherit;
}

.academy-link:focus {
    text-decoration: none !important;
    color: inherit;
    outline: none;
}

/* ===== CLUB LINK STYLES ===== */
.club-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.club-link:hover {
    text-decoration: none !important;
    color: inherit;
}

.club-link:focus {
    text-decoration: none !important;
    color: inherit;
    outline: none;
}

/* ===== RECENT NEWS SECTION STYLES ===== */
.recent-news {
    margin-top: 5rem;
    /* margin-bottom: 2rem; */
}

.recent-news-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
}

/* Bootstrap grid is used instead of CSS Grid */

.recent-news-card {
    box-shadow: 0 7px 45px 0 rgba(0, 0, 0, 0.1);
    background: #262932;
    display: flex;
    gap: 20px;
    border-radius: 20px;
    padding: 20px 30px;
    transition: transform 0.3s ease;

}

.recent-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.achievement-cards .recent-news-image {
    width: 200px;
}

.achievement-cards .recent-news-card {
    align-items: center;
}

.achievement-cards .recent-news-card-title {
    margin: 0;
    font-size: 32px;
}

.achievement-cards .recent-news-card .recent-news-meta {
    margin-top: 5px;
}

.achievement-cards .recent-news-card .recent-news-date {
    font-weight: 300;
    font-size: 26px;
    color: #666;
}

.achievement-cards .recent-news-card h6 {
    font-weight: 300;
    font-size: 26px;
    color: #fff;
    margin-top: 5px;
}

.recent-news-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 15px;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-news-card:hover .recent-news-image img {
    transform: scale(1.05);
}

/* .recent-news-content {
    padding: 1.5rem;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    height: 100%;
} */

.recent-news-card-title {
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.recent-news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 15px;
}

.recent-news-meta i {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
}

.recent-news-date {
    font-weight: 300;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    /* margin-top: 10px; */
}

/* Responsive Design for Recent News Section */
@media (max-width: 768px) {
    .recent-news {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .recent-news-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .recent-news-image {
        height: 180px;
    }

    .recent-news-content {
        padding: 1.2rem;
    }

    .recent-news-card-title {
        font-size: 1rem;
    }

    .recent-news-meta i,
    .recent-news-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .recent-news-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .recent-news-image {
        height: 160px;
    }

    .recent-news-content {
        padding: 1rem;
    }

    .recent-news-card-title {
        font-size: 0.95rem;
    }

    .recent-news-meta i,
    .recent-news-date {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .recent-news-title {
        font-size: 1.2rem;
    }

    .recent-news-image {
        height: 140px;
    }

    .recent-news-content {
        padding: 0.8rem;
    }

    .recent-news-card-title {
        font-size: 0.9rem;
    }

    .recent-news-meta i,
    .recent-news-date {
        font-size: 0.7rem;
    }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-container {
    min-height: 100vh;
    width: 100%;
}

.login-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
}

.login-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/login/banner.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.login-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(139 92 246 / 0%) 0%, rgb(9 9 9 / 14%) 50%, black 100%);
    z-index: 2;
}

.login-content-overlay {
    position: relative;
    z-index: 3;
    padding: 50px;
}

.login-text-content {
    text-align: left;
}

.login-main-title {
    font-weight: 500;
    font-size: 48px;
    color: #fff;
}

.login-form-section {
    height: 100vh;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.glow-circle {
    position: absolute;
    bottom: -125px;
    right: -125px;
    background: radial-gradient(circle,
            rgba(72, 142, 222, 0.3) 0%,
            rgba(72, 142, 222, 0.2) 20%,
            rgba(72, 142, 222, 0.1) 60%,
            rgba(72, 142, 222, 0) 70%,
            transparent 100%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 1;
}

.login-form-content {
    max-width: 500px;
    width: 100%;
}

.login-header {
    margin-bottom: 40px;
}

.login-title {
    font-weight: 500;
    font-size: 42px;
    text-transform: uppercase;
    color: #fff;
}

.login-subtitle {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

.form-label {
    font-weight: 400;
    font-size: 20px;
    color: #fcfdff;
}

.required {
    color: #ff4757;
}

.phone-input-container {
    position: relative;
}

/* International Telephone Input Styling */
.iti {
    width: 100%;
}

.iti__flag-container {
    background: #262932;
    border-radius: 50px;
    border: none;
    padding: 2px;
    box-shadow: none !important;
}

.iti__selected-flag {
    background: #262932;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.iti__selected-flag:hover {
    background: #555;
}

.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #ffffff;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.iti--show-dropdown .iti__arrow {
    transform: rotate(180deg);
}

.iti__country-list {
    background: #4a4a4a;
    border: 1px solid #555;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-height: 350px;
    overflow-y: scroll;
    z-index: 1000;
}

/* Search input styling */
.iti__search-input {
    background: #3a3a3a !important;
    border: 1px solid #555 !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 10px 12px !important;
    margin: 8px 12px !important;
    font-size: 14px !important;
}

.iti__search-input:focus {
    border-color: #4A90E2 !important;
    box-shadow: 0 0 0 0.1rem rgba(74, 144, 226, 0.25) !important;
    outline: none !important;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.iti__country {
    padding: 12px 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #555;
}

.iti__country:hover {
    background: #555;
}

.iti__country:last-child {
    border-bottom: none;
}

.iti__country-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.iti__dial-code {
    color: #4A90E2;
    font-size: 14px;
    font-weight: 500;
}

.iti__flag {
    background-image: url("../img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../img/flags@2x.png");
    }
}

/* Custom Scrollbar for Country Dropdown */
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #4a4a4a;
    border-radius: 10px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #357ABD;
}

/* ===== ROLE SELECTION PAGE STYLES ===== */
.role-container {
    /* min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    font-family: 'Kanit', sans-serif;
}

/* .role-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
} */

.role-header {
    margin-bottom: 60px;
}

.role-title {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.role-subtitle {
    font-weight: 300;
    font-size: 18px;
    color: #f5f5f5;
    max-width: 700px;
}

.role-bootstrap-container {
    margin-bottom: 60px;
}

.role-card {
    background: #262932;
    height: 100%;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #3C414D;
}

/* .role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.role-card.selected:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
}

.role-card.selected {
    border: 2px solid #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
    background: #2a2a2a;
} */

.role-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 20px; */
}


.role-info {
    /* padding: 25px 20px; */
    margin-top: 20px;
    text-align: center;
}

.role-name {
    font-weight: 400;
    font-size: 21px;
    color: #fff;
    margin-bottom: 12px;
}

.role-description {
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    color: #565d67;
    margin: 0;
}

.role-check {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #262932;
    border: solid 1.5px #3C414D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 10;
    /* box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4); */
}

.role-card.selected .role-check {
    opacity: 1;
    transform: scale(1);
}

.role-check i {
    color: #59B151;
    font-size: 18px;
    font-weight: bold;
}

.role-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}



/* Responsive Design for Bootstrap Layout */
@media (max-width: 1200px) {
    .role-bootstrap-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .role-container {
        padding: 30px 15px;
    }

    .role-title {
        font-size: 40px;
    }

    .role-subtitle {
        font-size: 16px;
    }

    .role-header {
        margin-bottom: 40px;
    }

    .role-bootstrap-container {
        margin-bottom: 45px;
    }
}

@media (max-width: 768px) {
    .role-title {
        font-size: 32px;
    }

    .role-subtitle {
        font-size: 15px;
    }

    .role-image {
        height: 160px;
    }

    .role-name {
        font-size: 20px;
    }

    .role-description {
        font-size: 13px;
    }

    .role-info {
        padding: 20px 15px;
    }
}

@media (max-width: 600px) {
    .role-container {
        padding: 20px 10px;
    }

    .role-title {
        font-size: 28px;
    }

    .role-subtitle {
        font-size: 14px;
    }

    .role-image {
        height: 180px;
    }


}

@media (max-width: 475px) {
    .role-title {
        font-size: 24px;
    }

    .role-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .role-header {
        margin-bottom: 30px;
    }

    .role-bootstrap-container {
        margin-bottom: 40px;
    }


}

@media (max-width: 320px) {
    .role-container {
        padding: 15px 5px;
    }

    .role-title {
        font-size: 22px;
    }

    .role-subtitle {
        font-size: 12px;
    }

    .role-name {
        font-size: 18px;
    }

    .role-description {
        font-size: 12px;
    }

    .role-info {
        padding: 15px 10px;
    }
}

/* ===== PATH SELECTION PAGE STYLES ===== */
.path-selection-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 40px;
}

.path-content {
    padding: 0 50px;
}

/* 

.path-title {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.path-subtitle {
    font-weight: 300;
    font-size: 18px;
    color: #f5f5f5;
    margin: 0;
} */

.path-card {
    background: transparent;
    height: 100%;
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    /* overflow: hidden; */
}

.path-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.path-card.selected {
    border: 2px solid #59B151;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(89, 177, 81, 0.2);
}

.path-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.path-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 51%) 50%, #00000000 100%);
    border-radius: 0 0 18px 18px;
}

.path-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.path-name {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.path-check {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #59B151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.path-card.selected .path-check {
    opacity: 1;
    transform: scale(1);
}

.path-check i {
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.path-actions {
    margin-top: 60px;
    width: 100%;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-family: 'Kanit', sans-serif;
    display: flex;
    align-items: center;
    border-radius: 8px;
    min-height: 44px;
    visibility: visible !important;
    opacity: 1 !important;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateX(-3px);
}

.back-btn i {
    font-size: 14px;
}

.save-continue-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-family: 'Kanit', sans-serif;
    min-height: 44px;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
}

.save-continue-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    color: #ffffff;
}

/* Responsive Design for Path Selection */
@media (max-width: 992px) {
    .path-selection-section {
        padding: 30px 20px;
    }

    .path-title {
        font-size: 28px;
    }

    .path-subtitle {
        font-size: 15px;
    }

    .path-header {
        margin-bottom: 40px;
    }

    .path-actions {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .path-selection-section {
        padding: 25px 15px;
    }

    .path-title {
        font-size: 24px;
    }

    .path-subtitle {
        font-size: 14px;
    }

    .path-image {
        height: 240px;
    }

    .path-name {
        font-size: 18px;
    }

    .path-info {
        padding: 15px;
    }

    .path-actions {
        margin-top: 40px;
    }

    .save-continue-btn {
        font-size: 15px;
        padding: 12px 35px;
    }
}

@media (max-width: 576px) {
    .path-selection-section {
        padding: 20px 10px;
    }

    .path-title {
        font-size: 22px;
    }

    .path-subtitle {
        font-size: 13px;
    }

    .path-header {
        margin-bottom: 30px;
    }

    .path-image {
        height: 220px;
    }

    .path-name {
        font-size: 16px;
    }

    .path-actions {
        margin-top: 35px;
    }

    .save-continue-btn {
        font-size: 14px;
        padding: 10px 30px;
    }

    .back-btn {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .path-selection-section {
        padding: 15px 5px;
    }

    .path-title {
        font-size: 20px;
    }

    .path-subtitle {
        font-size: 12px;
    }

    .path-image {
        height: 200px;
    }

    .path-name {
        font-size: 15px;
    }

    .path-info {
        padding: 12px;
    }
}

/* ===== CREATE PROFILE PAGE STYLES ===== */
.create-profile-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px;
}

/* Common Profile Header */
.common-profile-header {
    /* text-align: center; */
    margin-bottom: 30px;
    padding: 20px 0;
}

.common-profile-title {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
}

.profile-content {
    width: 100%;
    /* text-align: center; */
}

/* Step 1 Fields */
#step1Fields {
    transition: all 0.3s ease;
}

/* Step 2 Fields Transition */
#step2Fields {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}

#step2Fields[style*="block"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Force visibility when display is block */
#step2Fields[style*="display: block"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Step 3 Fields Transition */
#step3Fields {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}

#step3Fields[style*="block"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Force visibility when display is block */
#step3Fields[style*="display: block"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.profile-header {
    margin-bottom: 40px;
}

.profile-title {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.profile-subtitle {
    font-weight: 300;
    font-size: 18px;
    color: #f5f5f5;
    margin: 0;
}


.photo-upload-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.profile-photo-section {
    margin-bottom: 30px;
}

.photo-upload-container {
    display: flex;
    justify-content: center;
}

.photo-preview-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3C414D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* overflow: hidden; */
    position: relative;
    border: 2px solid #4A4A4A;
}

.photo-preview-circle:hover {
    transform: scale(1.05);
    border-color: #4A90E2;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.photo-placeholder i {
    font-size: 28px;
    color: #8B92A5;
}

.photo-edit-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2B2F3A;
    z-index: 10;
}

.photo-edit-badge i {
    font-size: 10px;
    color: #ffffff;
}

.photo-input {
    display: none;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    font-weight: 400;
    font-size: 14px;
    color: #f5f5f5;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #E74C3C;
}

.profile-input {
    background: #262932 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    font-family: 'Kanit', sans-serif !important;
    box-shadow: none !important;
}

.profile-input:focus {
    background: #262932 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #fff !important;
}

.profile-input.is-invalid {
    background: #262932 !important;
    border: none !important;
    box-shadow: none !important;
}

.profile-input.is-valid {
    background: #262932 !important;
    border: none !important;
    box-shadow: none !important;
}



.profile-input::placeholder {
    color: #565d67 !important;
    font-weight: 300 !important;
}

.profile-input option {
    background: #262932 !important;
    color: #fff !important;
}

.profile-input.is-invalid {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25) !important;
}

.date-input-wrapper {
    position: relative;
    cursor: pointer;
}

.date-input-wrapper .profile-input {
    padding-right: 45px !important;
    cursor: pointer;
}

/* Hide default date picker icons */
.date-input-wrapper .profile-input::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
    width: 0;
    height: 0;
}

.date-input-wrapper .profile-input::-webkit-inner-spin-button,
.date-input-wrapper .profile-input::-webkit-outer-spin-button {
    display: none !important;
    -webkit-appearance: none;
    margin: 0;
}

.date-input-wrapper .profile-input[type="date"] {
    -moz-appearance: textfield;
}

.date-input-wrapper .profile-input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent !important;
    color: transparent !important;
    cursor: pointer;
    display: none !important;
    opacity: 0 !important;
}

.date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B92A5;
    font-size: 18px;
    pointer-events: auto;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.date-icon:hover {
    color: #4A90E2;
}

.date-input-wrapper:hover .date-icon {
    color: #4A90E2;
}

.date-input-wrapper:hover {
    cursor: pointer;
}

.date-input-wrapper:hover .profile-input {
    border-color: #4A90E2 !important;
}

.select-input-wrapper {
    position: relative;
}

.select-input-wrapper .profile-input {
    padding-right: 45px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #565d67;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-input-wrapper:hover .select-arrow {
    color: #4A90E2;
}

.select-input-wrapper select:focus+.select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #4A90E2;
}

/* Sport Selection Step Styling */
.sport-selection-step {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.sport-form-container {
    margin-bottom: 50px;
}

.sport-selection-step .profile-header {
    margin-bottom: 40px;
}

.sport-selection-step .profile-title {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.sport-selection-step .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.sport-selection-step .form-label {
    font-weight: 400;
    font-size: 14px;
    color: #f5f5f5;
    margin-bottom: 8px;
    display: block;
}

.sport-selection-step .profile-input {
    background: #262932 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    font-family: 'Kanit', sans-serif !important;
    box-shadow: none !important;
    width: 100%;
    height: 48px;
}

.sport-selection-step .profile-input:focus {
    background: #262932 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #fff !important;
}

.sport-selection-step .select-input-wrapper {
    position: relative;
}

.sport-selection-step .select-input-wrapper .profile-input {
    padding-right: 45px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.sport-selection-step .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #565d67;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.sport-selection-step .select-input-wrapper:hover .select-arrow {
    color: #4A90E2;
}

.sport-selection-step .select-input-wrapper select:focus+.select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #4A90E2;
}

.sport-selection-step .profile-actions {
    margin-top: 50px;
    width: 100%;
}

/* Federation Options Styling */
.federation-options {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.federation-options .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.federation-options .form-check-input {
    width: 20px;
    height: 20px;
    background-color: transparent !important;
    border: 2px solid #565d67 !important;
    border-radius: 50% !important;
    margin: 0 !important;
    position: relative;
}

.federation-options .form-check-input:checked {
    background-color: #4A90E2 !important;
    border-color: #4A90E2 !important;
}

.federation-options .form-check-input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.federation-options .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25) !important;
}

.federation-options .form-check-label {
    color: #f5f5f5;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

/* ID Upload Container Styling */
.id-upload-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.id-upload-container .profile-input {
    flex: 1;
    margin-right: 10px;
}

.upload-btn {
    background: #4A90E2;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Kanit', sans-serif;
    white-space: nowrap;
    min-width: 120px;
}

.upload-btn:hover {
    background: #357ABD;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    color: #ffffff;
}

.file-input {
    display: none;
}

/* Success Modal Styles */
.success-modal-content {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-modal-body {
    padding: 50px 40px;
    text-align: center;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 80px;
    color: #28a745;
    animation: successPulse 2s ease-in-out infinite;
}

.success-title {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-message {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
}

.loading-text {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Profile Dropdown Styles */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn:focus {
    box-shadow: none;
    outline: none;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-dropdown-menu {
    background: #EDE6D6;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 15px;
    min-width: 320px;
    margin-top: 15px;
    right: 0;
    left: auto;
    overflow: hidden;
}

.dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.profile-popup-title {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-icon {
    width: 20px;
    font-size: 16px;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.profile-menu-item span {
    flex: 1;
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

.profile-menu-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
}

.message-badge {
    background: #e74c3c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 12px;
    margin-left: auto;
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

/* Identity Input Container with Tick Button */
.identity-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.identity-input-container .profile-input {
    flex: 1;
    margin-right: 10px;
}

.tick-btn {
    background: #6c757d;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.5;
}

.tick-btn:disabled {
    background: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.5;
}

.tick-btn.enabled {
    background: #4A90E2;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.tick-btn.enabled:hover {
    background: #357ABD;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.tick-btn.confirmed {
    background: #28a745;
    animation: confirmPulse 0.6s ease-out;
}

.tick-btn.confirmed:hover {
    background: #218838;
}

@keyframes confirmPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.gender-options {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

/* Form check custom styling removed - using default Bootstrap */

/* Form check styles removed - using default Bootstrap */

.profile-actions {
    margin-top: 50px;
    width: 100%;
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 20px 0;
    display: block !important;
    visibility: visible !important;
}

.login-check-input-label .form-check-input {
    position: relative;
    background-color: transparent !important;
    border: 2px solid #fff !important;
    border-radius: 4px !important;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    box-shadow: none !important;
}

.login-check-input-label .form-check-input:checked {
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.login-check-input-label .form-check-input:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}



.login-check-input-label .form-check-input:hover {
    border-color: #ffff !important;
}


/* Custom notification positioning */
.alert.position-fixed {
    top: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    max-width: 350px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 8px;
}

.alert-danger {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #d1e7dd !important;
    color: #0f5132 !important;
    border-left: 4px solid #198754;
}

.login-check-input-label .form-check-label,
.login-check-label {
    font-weight: 300;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    margin-left: 8px;
}

/* Responsive Design for Create Profile */
@media (max-width: 992px) {
    .create-profile-section {
        padding: 30px 20px;
    }

    .common-profile-header {
        margin-bottom: 25px;
        padding: 15px 0;
    }

    .common-profile-title {
        font-size: 24px;
    }

    .success-modal-body {
        padding: 40px 30px;
    }

    .success-icon i {
        font-size: 70px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 14px;
    }

    .profile-dropdown-menu {
        min-width: 300px;
    }

    .profile-menu-item {
        padding: 14px 18px;
    }

    .profile-menu-item span {
        font-size: 14px;
    }

    .profile-title {
        font-size: 28px;
    }

    .profile-subtitle {
        font-size: 16px;
    }

    .profile-header {
        margin-bottom: 35px;
    }

    .profile-actions {
        margin-top: 40px;
    }

    /* Sport Selection Step Responsive */
    .sport-selection-step .profile-title {
        font-size: 28px;
    }

    .sport-selection-step .profile-header {
        margin-bottom: 35px;
    }

    .sport-selection-step .profile-actions {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .create-profile-section {
        padding: 25px 15px;
    }

    .common-profile-header {
        margin-bottom: 20px;
        padding: 12px 0;
    }

    .common-profile-title {
        font-size: 22px;
    }

    .success-modal-body {
        padding: 35px 25px;
    }

    .success-icon i {
        font-size: 60px;
    }

    .success-title {
        font-size: 22px;
    }

    .success-message {
        font-size: 13px;
    }

    .profile-dropdown-menu {
        min-width: 280px;
    }

    .profile-menu-item {
        padding: 13px 16px;
    }

    .profile-menu-item span {
        font-size: 13px;
    }

    .profile-avatar {
        width: 35px;
        height: 35px;
    }

    .profile-btn {
        width: 35px;
        height: 35px;
    }

    .profile-title {
        font-size: 24px;
    }

    .profile-subtitle {
        font-size: 15px;
    }

    .photo-preview-circle {
        width: 80px;
        height: 80px;
    }

    .photo-placeholder i {
        font-size: 24px;
    }

    .photo-edit-badge {
        width: 24px;
        height: 24px;
        top: -3px;
        right: -3px;
        border-width: 2px;
    }

    .photo-edit-badge i {
        font-size: 8px;
    }

    .profile-actions {
        margin-top: 35px;
    }

    /* Sport Selection Step Responsive */
    .sport-selection-step .profile-title {
        font-size: 24px;
    }

    .sport-selection-step .profile-actions {
        margin-top: 35px;
    }

    .sport-selection-step .form-label {
        font-size: 13px;
    }

    .sport-selection-step .profile-input {
        font-size: 13px !important;
        padding: 10px 12px !important;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .create-profile-section {
        padding: 20px 10px;
    }

    .common-profile-header {
        margin-bottom: 18px;
        padding: 10px 0;
    }

    .common-profile-title {
        font-size: 20px;
    }

    .success-modal-body {
        padding: 30px 20px;
    }

    .success-icon i {
        font-size: 50px;
    }

    .success-title {
        font-size: 20px;
    }

    .success-message {
        font-size: 12px;
    }

    .profile-dropdown-menu {
        min-width: 260px;
    }

    .profile-menu-item {
        padding: 12px 14px;
    }

    .profile-menu-item span {
        font-size: 12px;
    }

    .profile-avatar {
        width: 32px;
        height: 32px;
    }

    .profile-btn {
        width: 32px;
        height: 32px;
    }

    .profile-title {
        font-size: 22px;
    }

    .profile-subtitle {
        font-size: 14px;
    }

    .profile-header {
        margin-bottom: 30px;
    }

    .form-label {
        font-size: 13px;
    }

    .profile-input {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    .gender-options {
        gap: 20px;
    }

    /* Form check label responsive styling removed - using default Bootstrap */

    .profile-actions {
        margin-top: 30px;
    }

    /* Sport Selection Step Responsive */
    .sport-selection-step .profile-title {
        font-size: 22px;
    }

    .sport-selection-step .profile-header {
        margin-bottom: 30px;
    }

    .sport-selection-step .form-label {
        font-size: 13px;
    }

    .sport-selection-step .profile-input {
        font-size: 13px !important;
        padding: 10px 12px !important;
        height: 42px;
    }

    .sport-selection-step .profile-actions {
        margin-top: 30px;
    }

    .federation-options {
        gap: 20px;
    }

    .federation-options .form-check-label {
        font-size: 13px;
    }

    .upload-btn {
        font-size: 11px;
        padding: 10px 14px;
        min-width: 100px;
    }

    .id-upload-container {
        gap: 8px;
    }

    .tick-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .identity-input-container {
        gap: 8px;
    }
}

@media (max-width: 320px) {
    .create-profile-section {
        padding: 15px 5px;
    }

    .common-profile-header {
        margin-bottom: 15px;
        padding: 8px 0;
    }

    .common-profile-title {
        font-size: 18px;
    }

    .success-modal-body {
        padding: 25px 15px;
    }

    .success-icon i {
        font-size: 45px;
    }

    .success-title {
        font-size: 18px;
    }

    .success-message {
        font-size: 11px;
    }

    .profile-dropdown-menu {
        min-width: 240px;
    }

    .profile-menu-item {
        padding: 11px 12px;
    }

    .profile-menu-item span {
        font-size: 11px;
    }

    .profile-avatar {
        width: 30px;
        height: 30px;
    }

    .profile-btn {
        width: 30px;
        height: 30px;
    }

    .profile-menu-icon {
        font-size: 14px;
        margin-right: 12px;
    }

    .loading-spinner {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .loading-text {
        font-size: 12px;
    }

    .profile-title {
        font-size: 20px;
    }

    .profile-subtitle {
        font-size: 13px;
    }

    .photo-preview-circle {
        width: 70px;
        height: 70px;
    }

    .photo-placeholder i {
        font-size: 20px;
    }

    .photo-edit-badge {
        width: 20px;
        height: 20px;
        top: -3px;
        right: -3px;
        border-width: 2px;
    }

    .photo-edit-badge i {
        font-size: 6px;
    }

    .form-label {
        font-size: 12px;
    }

    .profile-input {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    /* Sport Selection Step Responsive */
    .sport-selection-step .profile-title {
        font-size: 20px;
    }

    .sport-selection-step .form-label {
        font-size: 12px;
    }

    .sport-selection-step .profile-input {
        font-size: 12px !important;
        padding: 8px 10px !important;
        height: 40px;
    }

    .tick-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .identity-input-container {
        gap: 6px;
    }

    .upload-btn {
        font-size: 10px;
        padding: 8px 12px;
        min-width: 80px;
    }

    .id-upload-container {
        gap: 6px;
    }
}


/* .otp-modal-header .btn-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.1);
    opacity: 1 !important;
} */

.otp-modal-header .btn-close:focus {
    box-shadow: none !important;
    outline: none !important;
}

.otp-modal-body {
    padding: 20px 40px 40px !important;
    text-align: center;
}

.otp-content {
    max-width: 400px;
    margin: 0 auto;
}

.otp-title {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.otp-subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.otp-input {
    width: 50px;
    height: 50px;
    background: #3a3a3a;
    border: 1px solid #555;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
}

.otp-input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    background: #444;
}

.otp-input:valid {
    border-color: #28a745;
}

.otp-verify-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    border-radius: 25px;
    padding: 14px 24px;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: none;
    margin-bottom: 20px;
}

.otp-verify-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    color: #ffffff;
}

.otp-resend-section {
    text-align: center;
}

.otp-resend-text {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.resend-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.resend-link:hover {
    color: #357ABD;
    text-decoration: underline;
}

/* Responsive Design for OTP Modal */
@media (max-width: 768px) {
    .otp-modal-body {
        padding: 15px 25px 30px !important;
    }

    .otp-input-container {
        gap: 8px;
    }

    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .otp-title {
        font-size: 22px;
    }

    .otp-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .otp-modal-content {
        margin: 10px;
    }

    .otp-modal-body {
        padding: 10px 20px 25px !important;
    }

    .otp-input-container {
        gap: 6px;
    }

    .otp-input {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .otp-title {
        font-size: 20px;
    }
}

.phone-input-container:focus-within {
    border-color: #262932;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #4a4a4a;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.country-code-text {

    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.phone-input {
    background: #262932 !important;
    border: 1px solid #262932 !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    /* padding: 12px 16px !important; */
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.phone-input:focus {
    background: #262932 !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Form check margin removed - using default Bootstrap */

/* Login page form check styles removed - using default Bootstrap */

.disclaimer-text {
    margin-bottom: 40px;
}

.disclaimer-text p {
    font-weight: 300;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.login-verify-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    border-radius: 50px;
    padding: 16px 153px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: none;
    margin: 0 auto;
}

.login-verify-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    color: #ffffff;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-image-section {
        display: none;
    }

    .login-form-section {
        height: 100vh;
        padding: 20px;
    }

    .login-main-title {
        font-size: 36px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .login-form-section {
        padding: 15px;
    }

    .login-main-title {
        font-size: 32px;
    }

    .login-title {
        font-size: 24px;
    }

    .phone-input-container {
        flex-direction: column;
        align-items: stretch;
    }

    .country-code {
        margin-right: 0;
        margin-bottom: 8px;
        justify-content: center;
    }
}

/* ===== LANDING PAGE STYLES ===== */
.landing-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.landing-image-section {
    height: 100vh;
    background: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), 
                url('../img/login/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url('../img/sports/player1.png');
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 1;
}

.landing-content-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.landing-content {
    text-align: center;
    color: white;
    max-width: 500px;
    animation: fadeInUp 1s ease-out;
}

.landing-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.landing-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.landing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.landing-btn-primary,
.landing-btn-secondary {
    width: 280px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.landing-btn-primary {
    background: white;
    color: #667eea;
    border-color: white;
}

.landing-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.landing-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.landing-btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Button animations */
.landing-btn-primary::before,
.landing-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.landing-btn-primary:hover::before,
.landing-btn-secondary:hover::before {
    left: 100%;
}

/* Dividing Line */
.landing-image-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b6b, #ee5a24);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

/* Animated Background Pattern */
.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.03) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 20px 20px;
    animation: movePattern 20s linear infinite;
    pointer-events: none;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .landing-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .landing-content-section {
        padding: 1rem;
    }

    .landing-btn-primary,
    .landing-btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}