:root {
    --pink: #FF00BF;
    --cyan: #00A0DF;
    --yellow: #FFD700;
    --orange: #FF8C00;
    --white: #FFFFFF;
    --title-yellow: #FFDA11;
}

@font-face {
    font-family: 'Bokis';
    src: url('../fonts/Bokis-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Section 1: Header Image */
.header-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.desktop-header {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   EVENT BAR — wraps the hero, anchors overlays
   ============================================ */
.event-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    pointer-events: none; /* let clicks pass through empty areas */
}

/* ---- Logo — independently positioned top-left ---- */
.event-bar__logo {
    position: absolute;
    top: 35px;
    left: 60px;
    pointer-events: all;
    line-height: 0;
}

.event-bar__logo img {
    display: block;
    height: auto;
    width: 163px;
}

@media (max-width: 768px) {
    .event-bar__logo img {
        width: 94px;
    }
}

/* ---- Tab strip — independently positioned top-right ---- */
.event-bar__tabs {
    position: fixed;
    top: 40px;
    right: 35px;
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background-image: url('../img/bg menu.png');
    background-size: cover;
    background-position: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.event-bar__tabs::-webkit-scrollbar {
    display: none;
}

.event-bar__tab {
    display: flex;
    position: relative;
    align-self: stretch;
}

/* separator */
.event-bar__tab:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    pointer-events: none;
}

.event-bar__tab-link {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    font-family: 'Aldrich', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.event-bar__tab-link:hover {
    color: #ffffff;
}

/* active state — white text + bottom accent bar */
.event-bar__tab.is-active .event-bar__tab-link {
    color: #ffffff;
    background-color: #4FC8F1;
    border-top-left-radius: 10px;
    padding: 16px 22px;
}

.event-bar__tab.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: #00c8ff; */
    /* border-radius: 3px 3px 0 0; */
}


/* ============================================
   SECTION 1 — Hero / Header Image
   ============================================ */
.header-section {
    position: relative;
    width: 100%;
    line-height: 0;
}

.header-section .desktop-header {
    width: 100%;
    height: auto;
    display: block;
}

.image-bottom-overlay{
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, rgba(6, 12, 72, 0) 0%, #060C48 100%);
}

/* ============================================
   SECTION 2 — Dark feature section
   ============================================ */
.section-feature {
    background-color: #13161F;
    width: 100%;
    padding: 60px 0 70px;
}

.section-feature__title {
    display: block;
    width: 80%;
    margin: 0 auto 40px;
    height: auto;
}

.image-bottom-overlay{
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, rgba(6, 12, 72, 0) 0%, #060C48 100%);
}

.section-feature__grid-wrap {
    width: 80%;
    margin: 0 auto;
}

.section-feature__grid {
    display: block;
    width: 100%;
    height: auto;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .event-bar__logo {
        left: 2vw;
        top: 5vw;
    }

    .event-bar__logo img {
        height: auto;
    }

    .event-bar__tab-link {
        padding: 14px 14px;
        font-size: 11px;
    }

    .section-feature {
        padding: 40px 0 50px;
    }

    .section-feature__title,
    .section-feature__grid-wrap {
        width: 92%;
    }
}

@media (max-width: 480px) {
    .event-bar__tab-link {
        padding: 12px 10px;
        font-size: 10px;
    }

    .section-feature__title,
    .section-feature__grid-wrap {
        width: 96%;
    }
}

























/* ================= FULL PAGE BG ================= */
.page-bg {
  position: relative;
  width: 100%;
}

.page-bg-img {
  width: 100%;
  display: block;
}

/* Overlay layer */
.page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* ================= SECTION POSITIONING ================= */

/* Common container */
.section-block {
  max-width: 100%;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* 🔥 Adjust these values based on your design */
/* .section-series {
    margin-top: 54.7vw;
}

.section-games {
    margin-top: 10.5vw;
}

.section-news {
  margin-top: 7%;
}

.section-tcg {
  margin-top: 8vw;
} */

.section-shop {
    /* margin-top: 9vw; */
    /* margin-top: 17vw; */
}

@media (min-width: 1280px) and (max-width: 1399px) {
  .section-shop {
    /* margin-top: 16vw; */
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  /* .page-overlay {
    position: absolute;
  } */
}











