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

body {
    font-family: 'Inter', sans-serif;
}

body a{
    text-decoration: none;
}

.bideleven-container {
  max-width: 1284px ;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

@media (max-width: 992px) {
    .bideleven-container {
        max-width: 960px ;
    }
}

@media (max-width: 768px) {
    .bideleven-container{
        padding-left: 20px ;
        padding-right: 20px ;
        max-width: 760px ;
    }
}

/* Header*/
.header {
    display: flex;
    width: 100%;
    height: 60px;
    background: #ffffff;
    top: 0;
    position: sticky;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px 0 100px;
    flex-shrink: 0;
    height: 60px;
}

.header-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 100px 0 30px;
}

@media (max-width: 1400px) {
    .header-right{
        justify-content: space-evenly;
        padding: 0;
    }
    
    .header-logo{
        padding: 0 50px 0 50px;
    }
}
    
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: #f5a623;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.main-nav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    height: 60px;
}

.nav-links li {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links li a{
    color: #111111;    
    font-size: 16px;
    font-weight: 500;
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links li a.active {
    color: #f5a623;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

.mobile-menu-backdrop.active {
    display: block;
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; 
    background: #ffffff;
    z-index: 999;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
}

.close-menu {
    background: none;
    border: none;
    color: #103C75;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0; 
    border-top: 1px solid #F4F3F3;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links li a {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.mobile-nav-links li a.active {
    color: #FE8E1C;
}

.menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: #103C75;
    cursor: pointer;
    padding: 5px;
}

.btn-login {
    background: #FE8E1C;
    color: #ffffff;
    border: none;
    padding: 0 22px;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;    
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero Section */
.hero{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('/static/images/web/hero-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}
 
.hero-badge {
    background: rgba(124, 58, 237, 0.15);
    border: 0.8px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    color: #A78BFA;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
 
.hero-badge-box {
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.43);
    display: inline-block;
}

/* Heading */
.hero-title {
    font-size: 69px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}
 
/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.7;
    margin-top: 14px;
}

/* CTA — Create Tournament */
.btn-create-tournament {
    background: #F59E0B;
    color: #ffffff;
    border: none;
    padding: 14px 33px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
}

/* CTA — Watch Demo */
.btn-watch-demo {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
}
 
.hero-image img{
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-content {
    font-size: 16px;
    font-weight: 400;
    color: #29032D;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .header-logo {
        padding: 0 40px;
    }
    .header-right {
        padding: 0 40px;
    }
    .hero-title{
        font-size: 40px;
        line-height: 1.3;
    }
    
    .hero-subtitle{
        font-size: 16px;
    }
    
    .section-title{
        font-size: 28px;
    }
    
    .section-content{
        font-size: 14px;
    }
}

@media (max-width: 1090px) {
    .header {
        justify-content: space-between;
        padding: 0 20px;
    }
    .header-logo {
        padding: 0;
        height: unset;
    }
    .header-right {
        width: auto;
        padding: 0;
    }
    .main-nav {
        display: none !important;
    }
    .btn-login {
        display: none !important;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-create-tournament {
        width: 100%;
    }
    .mobile-menu-container {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-content {
        text-align: center;
    }
}

.features-section {
    background: #ffffff;
}

@media (min-width: 1200px) {
    .features-section::after {
        content: "";
        position: absolute;
        bottom: -30px;
        right: -120px;
        width: 249px;
        height: 249px;
        background: url('/static/images/web/cricket-player.webp') no-repeat;
        background-size: contain;
    }
    .advanced-features::after{
        content: "";
        position: absolute;
        bottom: -180px;
        left: 0;
        width: 350px;
        height: 350px;
        background: url('/static/images/web/cricket.webp') no-repeat;
        background-size: contain;
        z-index: 1;
    }
}

/* ── Feature card ────────────────────────────────────────── */
.advanced-feature-card {
    border: none;
    background: transparent;
}
 
.advanced-card-title{
    font-size: 16px;
    font-weight: 600;
    color: #29032D;
    margin-bottom: 8px;
}

.advanced-card-body p{
    font-size: 14px;
    color: #29032D;
}

.feature-card-img-wrap {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}


.feature-card-img-wrap img, .feature-card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.feature-card-body {
    max-width: 397px;
    margin: 0 auto;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #29032D;
    margin-bottom: 8px;
}
 
.auctions-section {
    position: relative;
    background: linear-gradient(91.1deg, #000746 5.82%, #00030A 95.54%);
}

@media (min-width: 1200px) {
    .auctions-section::before {
        content: "";
        position: absolute;
        top: -240px;
        left: 0;
        width: 1000px;
        height: 1200px;
        background: url('/static/images/web/cricket-trophy.webp') no-repeat;
        background-size: contain;
    }
}
@media (min-width: 1420px) {
    .auctions-section::after {
        content: "";
        position: absolute;
        bottom: -250px;
        right: 0;
        width: 270px;
        height: 504px;
        background: url('/static/images/web/cricket-stadium.webp') no-repeat;
        background-size: contain;
        z-index: 1;
    }
}

.btn-view-all {
    background: #F59E0B;
    color: #171C26;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 202, 126, 0.62);
    border-radius: 5px;
}
 
.auctions-divider {
    border-color: rgba(255, 255, 255, 0.10);
}
 
/* ── Auction card ─────────────────────────────────────────── */
.auction-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 5px 5px 15px 5px;
}
 
.auction-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url('/static/images/web/auction-card.webp');
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
 
.auction-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    display: block;
}
 
.auction-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.auction-logo {
    width: 155px;
    height: 155px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* ── Card body ────────────────────────────────────────────── */
.auction-card-body, .advanced-card-body {
    padding: 20px 15px;
}
 
.auction-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #29032D;
    margin-bottom: 10px;
}
 
.auction-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
}
 
.auction-meta span {
    font-size: 14px;
    font-weight: 400;
    color: #29032D;
    display: flex;
    align-items: center;
    gap: 5px;
}
 
.auction-meta svg {
    flex-shrink: 0;
    color: #29032D;
}

.advanced-feature-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px #00000017;
}

.feature-card-img {
    display: flex;
    justify-content: center;
}

@media (min-width: 1200px) {
    .tournaments-section::before{
        content: "";
        position: absolute;
        top: -240px;
        left: 0;
        width: 1000px;
        height: 1200px;
        background: url('/static/images/web/cricket-trophy.webp') no-repeat;
        background-size: contain;
    }

    .tournaments-section::after{
        content: "";
        position: absolute;
        bottom: 0;
        right: -43px;
        width: 184px;
        height: 184px;
        background: url('/static/images/web/cricket-referee.webp') no-repeat;
        background-size: contain;
    }   
}

.tournament-card {
    background: #051139;
    border: 2px solid #2CE8DA;
    border-radius: 14px;
    padding: 10px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.tournament-card-img {
    background-image: url('/static/images/web/auction-card.webp');
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    height: 218px;
}
 
.tournament-logo{
    width: 155px;
    height: 155px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.tournament-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.4;
}
 
.btn-squad {
    background: #F59E0B;
    color: #171C26;
    border: none;
    border-radius: 6px;
    padding: 7px 32px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    letter-spacing: 0.3px;
}

/* ─── PHOTO MOSAIC SECTION ───────────────────────────────── */
.photo-mosaic-section {
    background: #ffffff;
}
 
.photo-mosaic-section .section-title {
    color: #29032D;
}
 
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 10px;
}
 
.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
 
.mosaic-item {
    border-radius: 25px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 1420px) {
    .mosaic-item img {
        width: 100%;
        height:0auto;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
}
 
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mosaic-item img {
        width: 100%;
        height: 180px !important;
    }
}
 
/* ─── WHO USES SECTION ───────────────────────────────────── */
.who-uses-section {
    background: linear-gradient(180deg, #000746 0%, #051139 100%);
    padding: 80px 0 0 0;
}

.who-uses-row{
    gap: 5px;
}

.side-col {
  flex: 1.4; 
}

.center-col {
  flex: 1.65; 
}

.side-col .info-card-small {
    flex: 1;
    display: flex;
    flex-direction: column;
} 

.info-card-small {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 5px 20px 15px;
}

.info-card-small .icon-box {
    background: rgba(245, 158, 11, 0.08);
    border: 0.62px solid rgba(245, 158, 11, 0.19);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 16px;
}

.info-card-small h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.info-card-small p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.main-feature-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    padding: 15px 15px 0px 15px;
}

.feature-image-area {
    background-image: url('/static/images/web/auction-card.webp');
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 279px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 15px;
}

.center-logo {
    max-width: 200px;
    height: auto;
}

.feature-text-area {
    padding: 35px 20px;
}

.feature-text-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-text-area p {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-texts p span{
    color: rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
    .main-feature-card {
        margin: 10px 0;     
    }
    
    .feature-text-area h2 {
        font-size: 26px;
    }
}