* {
    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;
    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; }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

.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,
.nav-links li a:hover { color: #f5a623; }

.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;
}

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

/* ── Mobile menu ────────────────────────────────────────── */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}
.mobile-menu-backdrop.active { display: block; }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    z-index: 1000;
    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;
}

.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,
.mobile-nav-links li a:hover { color: #FE8E1C; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('/static/site/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;
}

.hero-title {
    font-size: 69px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.7;
    margin-top: 14px;
}

.hero-image img { max-width: 100%; height: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.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;
}

.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;
}

.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;
}

/* ── Typography ─────────────────────────────────────────── */
.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;
}

/* ── 3-Steps feature cards ──────────────────────────────── */
.features-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.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;
}

.feature-card-img-wrap 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;
}

/* ── Past Auctions section ──────────────────────────────── */
.auctions-section {
    position: relative;
    background: linear-gradient(91.1deg, #000746 5.82%, #00030A 95.54%);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s;
}
.btn-view-all:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
}
.btn-view-all-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-view-all-dark:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    color: #ffffff;
}

.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/site/images/web/auction-card.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.auction-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auction-logo {
    width: 155px;
    height: 155px;
    background: #ffffff;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auction-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; }

/* ── Advanced features ──────────────────────────────────── */
.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; }
.feature-card-img img { width: 100%; height: auto; display: block; }

.advanced-card-body { padding: 20px 15px; }

.advanced-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #29032D;
    margin-bottom: 8px;
}

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

/* ── 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 0 15px;
}

.feature-image-area {
    background-image: url('/static/site/images/web/auction-card.webp');
    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 section ────────────────────────────────────────── */
.cta-section { background: #ffffff; }

.cta-wrapper { max-width: 600px; }

.cta-texts p { font-size: 15px; color: #1a1a1a; margin: 0; }
.cta-texts p span { color: rgba(0, 0, 0, 0.45); }

/* ── Footer ─────────────────────────────────────────────── */
.footer-section { background: #ffffff; }
.footer-wrapper { max-width: 600px; }

/* ── Decorative pseudo-elements ─────────────────────────── */
@media (min-width: 1200px) {
    .features-section::after {
        content: "";
        position: absolute;
        bottom: -30px;
        right: -120px;
        width: 249px;
        height: 249px;
        background: url('/static/site/images/web/cricket-player.webp') no-repeat center / contain;
        pointer-events: none;
    }
    .advanced-features::after {
        content: "";
        position: absolute;
        bottom: -180px;
        left: 0;
        width: 350px;
        height: 350px;
        background: url('/static/site/images/web/cricket.webp') no-repeat center / contain;
        z-index: 1;
        pointer-events: none;
    }
    .auctions-section::before {
        content: "";
        position: absolute;
        top: -240px;
        left: 0;
        width: 1000px;
        height: 1200px;
        background: url('/static/site/images/web/cricket-trophy.webp') no-repeat center / contain;
        pointer-events: none;
    }
}

@media (min-width: 1420px) {
    .auctions-section::after {
        content: "";
        position: absolute;
        bottom: -250px;
        right: 0;
        width: 270px;
        height: 504px;
        background: url('/static/site/images/web/cricket-stadium.webp') no-repeat center / contain;
        z-index: 1;
        pointer-events: none;
    }
}

/* ── Responsive ─────────────────────────────────────────── */
@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%; }
}

@media (max-width: 992px) {
    .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: 767px) {
    .main-feature-card { margin: 10px 0; }
    .feature-text-area h2 { font-size: 26px; }
}

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