/* Complete CSS for Games and Reels Website - No Bootstrap Dependencies */

/* Font Import */
@import url("https://fonts.googleapis.com/css2?family=Bakbak+One:wght@500;600;700&family=Inter:wght@200;300;400;500;600;700;800&display=swap");

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

/* =====================
   GENERAL & BASE STYLES
   ===================== */
body {
  background: #101010;
  font-weight: 400;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.75);
}

/* Typography */
h1,
.aw-h1 {
  font-size: 32px;
}
h2,
.aw-h2 {
  font-size: 45px;
}
h3,
.aw-h3 {
  font-size: 24px;
}
h4,
.aw-h4 {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.aw-h1,
.aw-h2,
.aw-h3,
.aw-h4,
.aw-h5,
.aw-h6 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1;
}

b,
strong {
  font-weight: 800;
  color: #fff;
}

p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* Links */
a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  color: #ff512f;
}

h4 a:hover,
a.text-white:hover {
  color: #ff512f !important;
}

/* Utility Classes */
.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.mb-6 {
  margin-bottom: 30px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-80 {
  padding-bottom: 80px;
}

.ptb-120 {
  padding: 120px 0;
}

/* Grid System (Bootstrap Replacement) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

.container-sm {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-md {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-lg {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-xl {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Column Classes */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}
.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
.col-md-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}
.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}
.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
.col-xl-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}
.col-xxl-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

/* Offset Classes */
.offset-md-2 {
  margin-left: 16.666667%;
}

/* =====================
   HEADER STYLES
   ===================== */
.ib-header {
  background: rgba(16, 16, 16, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: 0.3s;
}

.ib-header.sticky {
  background: rgba(16, 16, 16, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  width: 80px;
}

.header-right-inner {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-right-inner > li {
  margin-left: 30px;
}

.header-right-inner > li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.header-right-inner > li a:hover {
  color: #ff512f;
}

/* Play Now Button */
.play-now-btn {
  background: linear-gradient(135deg, #ff512f 0%, #f09819 100%);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 81, 47, 0.3);
}

.play-now-btn:hover {
  background: linear-gradient(135deg, #f09819 0%, #ff512f 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 81, 47, 0.4);
}

/* =====================
   HERO SECTION STYLES
   ===================== */
.hero-bg {
  background-image: url("../img/hero-bg.jpg");
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner-style {
  position: relative;
  z-index: 2;
}

.hero-banner-style .banner-content {
  position: relative;
  z-index: 3;
}

.hero-banner-style .banner-content .title {
  margin-bottom: 30px;
}

.hero-banner-style .banner-content .title span {
  display: block;
  color: #ff512f;
}

.hero-banner_inner {
  padding: 120px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 0;
}

.section-title p {
  margin-top: 20px;
}

.top-section-gap {
  margin-top: 70px;
}

@media (max-width: 991px) {
  .top-section-gap {
    margin-top: 80px;
  }
}

@media (max-width: 575px) {
  .top-section-gap {
    margin-top: 60px;
  }
}

.hero-flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

@media (max-width: 767px) {
  .hero-flex-center {
    min-height: 300px;
    padding: 0 10px;
  }
}

.hero-heading {
  margin-bottom: 20px;
}

.hero-heading h1 {
  margin-bottom: 40px;
  font-size: 56px;
}

@media (max-width: 991px) {
  .hero-heading h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-heading h1 {
    font-size: 28px;
  }
}

h1 {
  font-size: 32px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 22px;
  }
}

/* =====================
   GAMES GRID & CARD STYLES
   ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.game-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 81, 47, 0.15);
}

.game-card .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #181818;
}

.game-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.game-card:hover .thumb img {
  transform: scale(1.05);
}

.game-card .content {
  padding: 32px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
}

.game-card .title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

@media (max-width: 991px) {
  .games-grid {
    gap: 24px;
  }
  .game-card .content {
    padding: 24px 12px 20px 12px;
  }
  .game-card .title {
    font-size: 18px;
  }
  .game-card .thumb {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 575px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .game-card .content {
    padding: 16px 8px 14px 8px;
  }
  .game-card .title {
    font-size: 16px;
  }
  .game-card .thumb {
    aspect-ratio: 1/1;
  }
}

/* Square Game Display for Individual Game Pages */
iframe {
  width: 100%;
  height: calc(100vw * (960 / 1990));
  border: 0px;
}

/* =====================
   FOOTER STYLES
   ===================== */
.footer {
  background-color: #1e3430;
  text-align: center;
  color: white;
  padding: 1.25rem 0 0.625rem;
}

.footer .f-logo {
  display: inline-block;
  text-align: center;
  width: 300px;
  margin-bottom: 2rem;
}

.footer .legal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .legal img {
  height: 1.875rem;
  margin-block: 1.875rem;
  margin-inline: 0.9375rem;
}

.footer .f-links {
  margin-block: 1.875rem;
}

.footer .f-links a {
  font-weight: var(--fw-reg);
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid white;
  transition: all 0.4s ease;
}
.footer .f-links a:hover {
  color: #ff512f;
  border-color: 1px solid #ff512f;
}

.footer .f-copy p,
.footer .f-copy a {
  text-transform: uppercase;
  color: white;
}

.footer .f-copy a {
  color: #ff512f;
}
.footer .f-copy {
  float: none;
}

@media (min-width: 800px) {
  .footer {
    padding: 2.5rem 0 1.25rem;
  }
  .footer .f-links a {
    font-weight: bold;
  }
}

/* =====================
   POLICY & TERMS PAGE STYLES
   ===================== */
.page-header {
  padding: 120px 0 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #fff;
}

.page-header .text-muted {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}

.page-section {
  padding: 80px 0;
  background: #101010;
}

.policy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.policy-content > div,
.terms-content > div {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-content > div:last-child,
.terms-content > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-content h2,
.terms-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #fff;
}

.policy-content h3,
.terms-content h3 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: #fff;
  font-weight: 600;
}

.policy-content p,
.terms-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.policy-content ul,
.terms-content ul {
  margin: 20px 0;
  padding-left: 25px;
}

.policy-content li,
.terms-content li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.policy-content strong,
.terms-content strong {
  color: #fff;
  font-weight: 600;
}

/* Contact Information Styling */
.policy-content ul:last-child,
.terms-content ul:last-child {
  margin-top: 20px;
}

.policy-content ul:last-child li,
.terms-content ul:last-child li {
  margin-bottom: 15px;
}

.policy-content ul:last-child li:last-child,
.terms-content ul:last-child li:last-child {
  margin-bottom: 0;
}

/* =====================
   MOBILE MENU STYLES
   ===================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  z-index: 1201;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #181818;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  z-index: 1201;
  padding: 32px 24px 24px 24px;
  transition: right 0.3s;
}
.mobile-menu-panel.open {
  right: 0;
}
.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-panel li {
  text-align: left;
}
.mobile-menu-panel a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-panel a.play-now-btn {
  display: block;
  padding: 12px 24px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff512f 0%, #f09819 100%);
  color: #fff !important;
  font-size: 18px;
  text-align: center;
  margin-top: 12px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 1202;
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-panel {
    display: flex;
  }
  .policy-content,
  .terms-content {
    padding: 24px 10px;
    margin: 0 5px;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-menu-panel,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* =====================
   MEDIA QUERIES (GENERAL)
   ===================== */
@media (max-width: 1199px) {
  .col-xl-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .container-xl {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  h2,
  .aw-h2 {
    font-size: 35px;
  }
  .pt-120 {
    padding-top: 80px;
  }
  .pb-120 {
    padding-bottom: 80px;
  }
  .ptb-120 {
    padding: 80px 0;
  }
  .pt-90 {
    padding-top: 60px;
  }
  .pb-90 {
    padding-bottom: 60px;
  }
  .pb-80 {
    padding-bottom: 60px;
  }
  .hero-banner_inner {
    padding: 80px 0;
  }

  .col-lg-4,
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .container-lg {
    max-width: 720px;
  }
  .policy-content,
  .terms-content {
    padding: 24px 10px;
    margin: 0 5px;
  }
}

@media (max-width: 767px) {
  .col-md-6,
  .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-2 {
    margin-left: 0;
  }
  .container-md {
    max-width: 540px;
  }

  .play-now-btn {
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .policy-content,
  .terms-content {
    padding: 16px 4px;
    border-radius: 10px;
  }
}

@media (max-width: 575px) {
  h2,
  .aw-h2 {
    font-size: 28px;
  }
  p {
    font-size: 16px;
  }
  .hero-banner_inner {
    padding: 60px 0;
  }
  .header-right-inner > li {
    margin-left: 15px;
  }

  .play-now-btn {
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .col-12,
  .col-md-6,
  .col-md-8,
  .col-lg-4,
  .col-lg-6,
  .col-xl-4,
  .col-xxl-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 10px;
  }
  .policy-content,
  .terms-content {
    padding: 8px 2px;
    margin: 0 2px;
  }
}

/* =====================
   MISCELLANEOUS
   ===================== */
.bg-overlay {
  position: relative;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Top Seller Styles */
.top-seller-style-two {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.top-seller-style-two:hover {
  background: rgba(255, 255, 255, 0.1);
}

.top-seller-style-two .thumb-wrapper {
  position: relative;
  margin-right: 15px;
}

.top-seller-style-two .thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.top-seller-style-two .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-seller-style-two .content .title a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.top-seller-style-two .content .title a:hover {
  color: #ff512f;
}

.top-seller-style-two .items-number {
  background: #ff512f;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Popular Collection Styles */
.popular-collection-style-two {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: 30px;
}

.popular-collection-style-two:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popular-collection-style-two .thumb {
  display: block;
  position: relative;
  overflow: hidden;
}

.popular-collection-style-two .thumb img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.3s;
}

.popular-collection-style-two:hover .thumb img {
  transform: scale(1.1);
}

.popular-collection-style-two .content {
  padding: 20px;
}

.popular-collection-style-two .content .title {
  margin-bottom: 0;
}

.popular-collection-style-two .content .title a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.popular-collection-style-two .content .title a:hover {
  color: #ff512f;
}
