:root {
    --bg: #050810;
    --darkblue: #07090c;
    --surface: #0d1120;
    --surface2: #131829;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #00e5ff;
    --accent2: #7b5ea7;
    --accent3: #ff6b35;
    --gold: #ffd166;
    --text: #e8eaf0;
    --muted: #7a809a;
    --glow: rgba(0, 229, 255, 0.15);
    --nm-text: 1rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    color: #c3c7d3;
    font-family: 'Nunito Sans', sans-serif;
    font-size: var(--nm-text);
    background-color: var(--bg);
}

img {
    width: 100%;
    height: auto;
}

.web {
    display: none;
}

.mobi {
    display: block;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3 {
    line-height: 1.1;
    font-family: "Geom", sans-serif;
    color: #fff;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: rgba(13, 17, 32, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav.scrolled {
    height: 60px;
    background: rgba(5, 8, 16, 0.95);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-bar-wrap {
    width: 100%;
    padding: 0 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    max-width: 150px;
}

.navbar-nav {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.navbar-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-nav>li:last-child {
    border-bottom: none;
}

.navbar-nav>li>a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-nav>li>a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}

.header-nav {
    padding: 0;
}

.nav>li {
    position: relative;
    display: block;
}

.nav {
    list-style: none;
}

.btn {
    text-align: center;
    font-size: 13px;
    padding: 6px 12px;
}

.col-xs-12 {
    width: 100%;
    float: left;
}

.collapse {
    display: none;
}

.navbar-toggle {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 30px;
    height: 30px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.burger-icon {
    width: 100%;
    height: 100%;
}

.navbar-collapse.in {
    overflow-y: auto;
}

.collapse.in {
    display: block;
}

.navbar-collapse {
    padding: 0 15px;
    overflow-x: visible;
    border-top: 1px solid transparent;
    -webkit-overflow-scrolling: touch;
}

#navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(26 32 48 / 98%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 20px 30px;
    display: none;
    z-index: 1000;
}


/* ── HERO SECTION (MOBILE FIRST) ── */
.homewrap {
    width: 100%;
    min-height: 100vh;
    padding: 100px 0 60px;
    background-color: #07090c;
    position: relative;
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #21e6c1 0%, #3a86ff 40%, #ff4e9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1rem;
    color: #8b97a2;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 400px;
}

.hero-btns {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--accent);
    color: #07090c;
    padding: 16px 32px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 20px rgba(33, 230, 193, 0.4);
    box-shadow: 0 5px 20px rgba(33, 230, 193, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 16px 32px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
}

.stat-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #8b97a2;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-visual {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.hero-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-mockup,
.phone-mockup img {
    width: 100%;
    max-width: 220px;
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 8px 12px;
    z-index: 3;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    min-width: 160px;
}

.floating-card.game-rewards {
    top: 5%;
    left: 2%;
    -webkit-animation: float-left 8s ease-in-out infinite;
    animation: float-left 8s ease-in-out infinite;
}

.floating-card.live-match {
    bottom: 15%;
    right: -2%;
    -webkit-animation: float-right 10s ease-in-out infinite;
    animation: float-right 10s ease-in-out infinite;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
    min-width: 140px;
    padding: 10px;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-rewards .card-icon {
    background: linear-gradient(135deg, #9333ea, #3b86ff);
}

.game-rewards .card-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.card-info {
    flex: 1;
}

.card-info .label {
    display: block;
    font-size: 9px;
    color: #8b97a2;
    font-weight: 600;
    margin-bottom: 1px;
}

.card-info .title {
    display: block;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.card-info .cta {
    display: none;
}

.match-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 10px;
    color: #8b97a2;
    font-weight: 600;
}

.match-teams {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.match-teams span {
    color: #8b97a2;
    margin: 0 3px;
    font-weight: 400;
}

.match-score {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.score-num {
    font-size: 16px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 2px 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.match-time {
    font-size: 11px;
    color: #21e6c1;
    font-weight: 700;
}

@-webkit-keyframes float-left {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-10px, -15px);
        transform: translate(-10px, -15px);
    }
}

@keyframes float-left {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-10px, -15px);
        transform: translate(-10px, -15px);
    }
}

@-webkit-keyframes float-right {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(15px, 10px);
        transform: translate(15px, 10px);
    }
}

@keyframes float-right {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(15px, 10px);
        transform: translate(15px, 10px);
    }
}

@-webkit-keyframes float {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.homewrap::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 230, 193, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.homewrap::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

/* scroll-down */
.homebg {
    width: 100%;
}

.scroll-btn {
    padding: 70px 0 0;
}

.scroll-btn .mouse {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    border: 2px solid #fff;
    border-radius: 23px;
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
}

.scrolltxt {
    font-size: 12px;
    margin: 0 auto;
    padding: 8px;
    color: var(--muted);
}

.scroll-btn .mouse>* {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

/* ── ABOUT SECTION (MOBILE FIRST) ── */
#about {
    background-color: #0d1117;
    padding: 60px 0;
    overflow: hidden;
}

.about-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.about-tagline {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-title,
.section-title {
    font-size: 31px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -1px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.about-desc {
    font-size: 16px;
    color: #8b97a2;
    line-height: 1.6;
    margin-bottom: 40px;
}

.content-tags {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.tag-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.about-right {
    flex: 1;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-card {
    background: #07090c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, border-color 0.3s ease;
    -moz-transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, border-color 0.3s ease;
    -ms-transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, border-color 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, border-color 0.3s ease;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.about-card.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.about-card:hover {
    -webkit-transform: translateY(-10px) !important;
    -ms-transform: translateY(-10px) !important;
    transform: translateY(-10px) !important;
    border-color: rgba(0, 229, 255, 0.3);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-box svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.card-icon-box.purple {
    background: rgba(147, 51, 234, 0.2);
}

.card-icon-box.cyan {
    background: rgba(6, 182, 212, 0.2);
}

.card-icon-box.orange {
    background: rgba(249, 115, 22, 0.2);
}

.card-icon-box.blue {
    background: rgba(37, 99, 235, 0.2);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 14px;
    color: #8b97a2;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    #about {
        padding: 100px 0;
    }

    .about-container {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 60px;
    }

    .about-left {
        flex: 1.2;
    }

    .about-right {
        flex: 1;
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-title,
    .section-title {
        font-size: 54px;
    }
}

/* ── MOBILE FIRST: CONTENT SHOWCASE ── */
.showcase-section {
    padding: 60px 20px;
    background-color: #050810;
}

.showcase-header {
    text-align: center;
    margin: 0 auto 1rem;
}

.showcase-header .section-sub {
    margin: 0.8rem auto 0;
    font-size: 15px;
}

/* Tab navigation */
.showcase-tabs {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
    margin: 0 auto 3rem;
    padding: 10px;
    background: rgba(13, 17, 32, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted);
    padding: 8px 10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column: span 4;
    white-space: nowrap;
}

.tab-btn:nth-child(4) {
    grid-column: 4 / span 3;
}

.tab-btn:nth-child(5) {
    grid-column: 7 / span 3;
}

.tab-btn svg {
    width: 16px;
    height: 16px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.tab-btn:hover svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, #00b8d4 100%);
    color: var(--darkblue);
    -webkit-box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active svg {
    color: var(--darkblue);
}

.tab-btn svg {
    width: 18px;
    height: 18px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--darkblue);
    -webkit-box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-animation: tabProgress 5s linear forwards;
    animation: tabProgress 5s linear forwards;
}

@-webkit-keyframes tabProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes tabProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.tab-btn.active svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: var(--darkblue);
}

.tab-btn:not(.active) svg {
    color: var(--accent);
}

.panels-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    position: relative;
    width: 100%;
}

/* Showcase panels */
.showcase-panel {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
    -ms-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.showcase-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── SHOWCASE PANELS (MOBILE FIRST) ── */
.panel-inner {
    display: grid;
    grid-auto-flow: row;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.panel-text {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-image {
    opacity: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-panel.active .panel-text,
.showcase-panel.active .panel-image {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

/* Stagger the inner elements slightly */
.showcase-panel.active .panel-text {
    transition-delay: 0.1s;
}

.showcase-panel.active .panel-image {
    transition-delay: 0.2s;
}

.panel-image img {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.panel-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    padding: 5px;
}

.brand-name {
    font-family: 'Geom', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.panel-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 15px 0;
}

.panel-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
}

.panel-features {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.feat-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text);
}

.feat-dot {
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.panel-cta {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.panel-cta:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Per-brand colors */
.c-games {
    --brand: #7c3aed;
    --brand-light: rgba(124, 58, 237, 0.15);
}

.c-audio {
    --brand: #fbbf24;
    --brand-light: rgba(251, 191, 36, 0.15);
}

.c-movie {
    --brand: #ef4444;
    --brand-light: rgba(239, 68, 68, 0.15);
}

.c-ai {
    --brand: #5a62ff;
    --brand-light: rgba(90, 98, 255, 0.15);
}

.c-sport {
    --brand: #22c55e;
    --brand-light: rgba(34, 197, 94, 0.15);
}

/* ── MOBILE FIRST: FAQ ── */
.faq {
    background: url('../img/faq-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 60px 15px;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--surface) 0%, rgba(5, 8, 16, 0.8) 50%, var(--surface) 100%);
    z-index: 1;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .section-sub {
    margin: 0.8rem auto 0;
}

.faq-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s;
    -moz-transition: -moz-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s;
    -ms-transition: -ms-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.faq-item.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.faq-item.open {
    border-color: rgba(0, 229, 255, 0.3);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    -webkit-transition: -webkit-transform 0.3s, background 0.3s;
    -moz-transition: -moz-transform 0.3s, background 0.3s;
    -ms-transition: -ms-transform 0.3s, background 0.3s;
    transition: transform 0.3s, background 0.3s;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: var(--accent);
    color: var(--bg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease, padding 0.4s;
    -moz-transition: max-height 0.4s ease, padding 0.4s;
    -ms-transition: max-height 0.4s ease, padding 0.4s;
    transition: max-height 0.4s ease, padding 0.4s;
}

.faq-item.open .faq-a {
    max-height: 800px;
}

.faq-a-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-a-inner ul {
    margin: 0.5rem 0 0 1rem;
}

.faq-a-inner li {
    margin-bottom: 0.3rem;
}

.faq-a-inner strong {
    color: var(--text);
    font-weight: 500;
}

/* contactus */
#contact {
    background: url('../img/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 80%);
    filter: blur(10px);
    z-index: 1;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-subtitle {
    color: var(--muted);
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 20px;
    max-width: 450px;
}

.info-boxes {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    -ms-transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.6s ease,
        border-color 0.3s ease;
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
}

.info-box.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateX(10px) !important;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--accent);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.info-icon svg {
    width: 21px;
    height: 21px;
}

.info-text {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1px;
}

.info-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* Form Styles */
.contact-right {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    -webkit-box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00e5ff, #00acc1);
    color: var(--darkblue);
    border: none;
    padding: 18px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.submit-btn:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 15px 30px rgba(0, 229, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.4);
    filter: brightness(1.1);
}

.submit-btn svg {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--muted);
}

.form-captcha {
    margin-bottom: 20px;
}

#overlay_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
}

#overlay_box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #0d1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    z-index: 2001;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #e8eaf0;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

#popbox_title {
    font-family: "Geom", sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

#popbox_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #7a809a;
    margin-bottom: 30px;
}

#popbox_closebtn {
    background: linear-gradient(135deg, #00e5ff 0%, #3a86ff 100%);
    color: #050810;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

#popbox_closebtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
}

#popbox_closebtn:active {
    transform: translateY(0);
}

/* Success Icon container for the popup */
.popup-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #00e5ff;
}

.popup-icon svg {
    width: 32px;
    height: 32px;
}

/* footer */
.footer-main {
    background-color: #00050a;
    padding: 30px 0;
    margin: 0 auto;
}

.footer-img {
    max-width: 150px;
}

.footer-wrap {
    display: grid;
    justify-items: center;
    gap: 15px;
    align-items: center;
}

.tnclinks,
.tnclinks a {
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
}

.tnclinks a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
}

.copyright a {
    cursor: pointer;
    text-decoration: none;
    color: var(--muted);
}

/* scrollup */
.scrollup {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 50px;
    width: 50px;
    display: none;
    background-color: var(--accent);
    color: var(--darkblue);
    cursor: pointer;
    z-index: 1000;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
}

.scrollup:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 30px rgba(0, 229, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.5);
    background-color: #fff;
}

.scrollup svg {
    width: 100%;
    height: 100%;
}

.fa-chevron-up {
    font-size: 28px;
    color: #b0c7d0;
}

@media (max-width: 500px) {
    .home {
        top: 30%;
    }
}

@media (max-width: 340px) {
    .scroll-btn {
        padding: 40px 0 0;
    }
}

@media (min-width: 768px) {
    .web {
        display: block;
    }

    .mobi {
        display: none;
    }

    .container {
        width: 750px;
    }

    .hero-container {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .floating-card {
        padding: 15px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        gap: 15px;
        min-width: 220px;
        -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .floating-card.game-rewards {
        top: 12%;
        left: 12%;
    }

    .floating-card.live-match {
        bottom: 25%;
        right: -30%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-width: 220px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
    }

    .card-info .label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .card-info .title {
        font-size: 13px;
    }

    .card-info .cta {
        display: block;
        font-size: 12px;
        color: #00f9ff;
    }

    .hero-content {
        flex: 1;
        max-width: 650px;
    }

    .hero-content h1 {
        font-size: 80px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 0 40px;
        max-width: 500px;
    }

    .phone-mockup,
    .phone-mockup img {
        max-width: 280px;
    }

    .hero-btns {
        margin-bottom: 60px;
    }

    .hero-visual {
        width: 45%;
        justify-content: flex-end;
    }

    .match-teams {
        font-size: 14px;
    }

    .match-teams span {
        margin: 0 5px;
    }

    .score-num {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .navbar-collapse {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex !important;
        width: auto;
    }

    #navbar {
        position: static;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex !important;
        background: transparent;
        padding: 0;
        border: none;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .navbar-nav {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        padding: 0;
    }

    .navbar-nav>li {
        border-bottom: none;
    }

    .navbar-nav>li>a {
        padding: 10px 0;
    }

    .navbar-toggle {
        display: none;
    }

    .panel-inner {
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
    }

    .panel-title {
        font-size: 48px;
    }

    .faq {
        padding: 100px 20px;
    }

    .faq-q-text {
        font-size: 1.1rem;
    }

    .contact-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }

    .contact-title {
        font-size: 64px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-tabs {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 8px;
        width: 95%;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
    }

    .tab-btn {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        min-width: 140px;
        padding: 10px 20px;
        font-size: 13px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
        grid-column: auto !important;
    }

    .tab-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}