/* ========================================
   OMG Gaming - inout.games Dark Theme
   ======================================== */

:root {
  --color-primary-cyan: #00AEEF;
  --color-accent-magenta: #E6007E;
  --color-highlight-yellow: #FFF200;
  --color-bg-main: #1A1C21;
  --color-bg-header-footer: #121417;
  --color-text-main: #FFFFFF;
  --color-text-body: #E0E6ED;
  --color-text-muted: #8A94A6;

  --bg: var(--color-bg-main);
  --bg-elevated: #1F232A;
  --card-bg: #232731;
  --white: var(--color-text-main);
  --text-primary: var(--color-text-main);
  --text-secondary: var(--color-text-body);
  --accent: var(--color-primary-cyan);
  --accent-hover: var(--color-accent-magenta);
  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(0, 174, 239, 0.35);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: var(--color-primary-cyan);
  color: var(--color-text-main);
}

.btn-primary:hover {
  background: var(--color-accent-magenta);
  color: var(--color-text-main);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(230, 0, 126, 0.6);
}

.btn-showcase {
  padding: 12px 28px;
  background: var(--color-primary-cyan);
  color: var(--color-text-main);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.btn-showcase:hover {
  background: var(--color-accent-magenta);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(230, 0, 126, 0.6);
}

.btn-showcase svg {
  margin-left: 8px;
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent-magenta);
  color: var(--color-accent-magenta);
}

.btn-outline:hover {
  border-color: var(--color-accent-magenta);
  background: var(--color-accent-magenta);
  color: var(--color-text-main);
}

.btn-dark {
  background: var(--card-bg);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-dark:hover {
  background: #222;
  border-color: var(--border-accent);
}


/* ========================================
   HEADER
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-header-footer);
  border-bottom: 1px solid var(--border);
  height: 80px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary-cyan);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--color-highlight-yellow);
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card-bg);
}

.lang-selector::after {
  content: '▾';
  position: absolute;
  right: 10px;
  color: var(--accent);
  pointer-events: none;
  font-size: 12px;
}

.lang-select {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 28px 8px 8px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Outfit', sans-serif;
}

.lang-select option {
  color: var(--bg);
  background: var(--white);
  font-size: 13px;
  padding: 6px 8px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  aspect-ratio: 1920 / 450;
  display: flex;
  align-items: center;
}


@media (max-width:768px) {

  .hero {
    aspect-ratio:700 / 450;
  }

}


/* ========================================
   HERO IMAGE
   ======================================== */


.hero-carousel {

  position:absolute;
  inset:0;

  width:100%;
  height:100%;

}



.hero-slide {

  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  opacity:0;

  transition:opacity 1s ease;

}



.hero-slide.active {

  opacity:1;

}



.hero-slide picture {

  display:block;

  width:100%;

  height:100%;

}



.hero-slide img {

  width:100%;

  height:100%;

  display:block;

  object-fit:cover;

}

.hero-content{
    max-width:560px;
}

.hero h1{
    color:#fff;
    font-size:clamp(34px,3.4vw,44px);
    line-height:1.15;
    margin-bottom:16px;
}

.hero p{
    color:rgba(255,255,255,.8);
    line-height:1.7;
    font-size:16px;
    margin-bottom:24px;
}

.hero-btns{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-stats{
    display:flex;
    gap:48px;
    margin-top:36px;
}

.hero-stat-value{
    font-size:36px;
    color:var(--accent);
    font-weight:800;
}

.hero-stat-label{
    font-size:13px;
    color:rgba(255,255,255,.6);
}

.hero-dots{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.hero-dot{
    width:10px;
    height:10px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    cursor:pointer;
    transition:.3s;
}

.hero-dot.active{
    width:28px;
    border-radius:20px;
    background:var(--accent);
}

/* ========================================
   MOBILE
======================================== */


@media (max-width:768px){

    .header{
        height:70px;
    }

    .header-inner{
        padding:0 16px;
    }

    .logo img{
        height:34px;
    }

    .nav{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .hero{
        width:100%;
        aspect-ratio:700 / 450;
        height:auto;
    }

    .hero-carousel,
    .hero-slide,
    .hero-slide picture,
    .hero-slide img{
        width:100%;
        height:100%;
    }

    .hero-slide img{
        object-fit:cover;
    }

    .hero-overlay-inner{
        justify-content:center;
        text-align:center;
        padding:0 20px;
    }

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

    .hero h1{
        font-size:30px;
        text-align:center;
    }

    .hero p{
        font-size:15px;
        text-align:center;
        margin:0 auto 20px;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        gap:28px;
        margin-top:24px;
    }

    .hero-stat-value{
        font-size:28px;
    }

    .hero-stat-label{
        font-size:12px;
    }

    .hero-dots{
        bottom:14px;
    }

}


/* ========================================
   SHOWCASE FADE EDGES
   ======================================== */

.showcase-track-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.showcase-track-wrapper::before,
.showcase-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.showcase-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.showcase-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--bg-elevated);
}

.section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin: 16px 0 16px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.12);
  color: var(--accent);
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form-card {
  background: linear-gradient(145deg, var(--card-bg), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.section-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* ========================================
   HOT GAMES
   ======================================== */

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.game-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(17, 17, 19, 0.95) 45%, rgba(0, 0, 0, 1) 100%);
  padding: 40px 16px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-info {
  margin-bottom: 12px;
}

.game-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.game-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.game-meta span {
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
}

.game-btns {
  display: flex;
  gap: 8px;
}

.game-btns .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content .btn {
  margin-top: 24px;
}

/* ADVANTAGES — removed per Allen request */

/* ========================================
   PARTNERS
   ======================================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.partner-logo {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: var(--transition);
  overflow: hidden;
}

.partner-logo:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.1);
}

.partner-logo:hover img {
  filter: brightness(1.2);
}

.partner-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
}

.partner-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   NEWS
   ======================================== */

.about-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-points div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(135deg, var(--card-bg), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.news-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.news-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.news-link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg);
  color: var(--text-secondary);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 18px;
  color: var(--white);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent);
}

/* ========================================
   NEWS PAGE
   ======================================== */

.page-header {

    position: relative;

    width: 100%;

    aspect-ratio: 1920 / 450;

    background: var(--bg);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.page-header picture {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

}


.page-header-bg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}



/* ========================================
   MOBILE 700 x 450
======================================== */

@media (max-width:768px){

    .page-header {

        width:100%;

        aspect-ratio:700 / 450;

        min-height:0;

    }


    .page-header picture {

        width:100%;

        height:100%;

    }


    .page-header-bg {

        width:100%;

        height:100%;

        object-fit:cover;

    }

}

/* ========================================
   ARTICLE PAGE
   ======================================== */

.article-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-header {
  text-align: center;
  margin-bottom: 48px;
}

.article-category {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.article-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 14px;
  color: var(--text-secondary);
}

.article-featured-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 20px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 16px;
}

.article-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body ul li {
  margin-bottom: 12px;
  position: relative;
  color: var(--text-secondary);
}

.article-body ul li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: -16px;
}

.related-articles {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.related-articles h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(18, 20, 23, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }

  .nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
  }

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

  .hero h1 {
    font-size: 40px;
    text-align: center;
  }

  .hero p {
    text-align: center;
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 400px;
  }

  .hero-visual img {
    max-height: 280px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .game-card {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }

  .game-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
  }

  .game-overlay {
    padding: 18px 14px 14px;
  }

  .game-btns .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 32px;
  }

  .showcase-rows {
    padding: 0 24px;
  }
  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
  }

  .showcase-header h2 {
    font-size: 28px;
  }

  .showcase-track {
    gap: 14px;
  }

  .showcase-game {
    width: 180px;
    height: 240px;
  }
}

/* ========================================
   GAME SHOWCASE (3-ROW Scrolling)
   ======================================== */

.game-showcase {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 60px;
}

.showcase-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.showcase-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 60px;
}

.showcase-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.showcase-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Row 1: right to left */
.showcase-track[data-dir="rtl"] {
  animation: scroll-rtl 50s linear infinite;
}

/* Row 2: left to right */
.showcase-track[data-dir="ltr"] {
  animation: scroll-ltr 50s linear infinite;
  animation-delay: -18s;
}

/* Row 3: right to left */
.showcase-track[data-dir="rtl-slow"] {
  animation: scroll-rtl 50s linear infinite;
}


@keyframes scroll-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.showcase-game {
  flex-shrink: 0;
  width: 160px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.showcase-game:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.12);
  border-color: var(--accent);
}

.showcase-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .showcase-rows {
    gap: 14px;
    padding: 0 24px;
  }
  .showcase-game {
    width: 130px;
    height: 180px;
  }
  .showcase-track {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .showcase-rows {
    padding: 0 16px;
  }
  .showcase-game {
    width: 110px;
    height: 150px;
  }
  .showcase-header {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ========================================
   LOGO IMAGE
   ======================================== */

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img,
.logo img {
  height: 100px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
  display: block;
}

.entry-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.entry-modal.open {
  display: flex;
}

.entry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.entry-modal-card {
  position: relative;
  width: min(560px, calc(100% - 40px));
  padding: 36px;
  background: linear-gradient(180deg, #0d1f42 0%, #191f36 100%);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.entry-modal-card h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
}

.entry-modal-card p {
  font-size: 16px;
  margin-bottom: 28px;
  color: #d2e5ff;
}

.entry-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.entry-modal-actions .btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
}

.entry-modal-actions .btn-primary {
  background: linear-gradient(90deg, #00aeef 0%, #e6007e 100%);
  color: #fff;
}

.entry-modal-actions .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: #00aEEF;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1300;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .entry-modal-card {
    padding: 26px 20px;
  }

  .entry-modal-card h2 {
    font-size: 22px;
  }

  .entry-modal-card p {
    font-size: 14px;
  }
}

/* ========================================
   FOOTER NEW DESIGN
   ======================================== */

.footer-new {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-new--centered {
  justify-content: center;
  align-items: center;
}

.footer-new--centered .footer-brand-new {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand-new .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand-new p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.footer-licenses {
  text-align: center;
  flex: 1;
}

.footer-licenses h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-bottom-new {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom-new .copyright {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ========================================
   LICENSES SECTION
   ======================================== */

.licenses-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.licenses-section h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.license-logo {
  width: 160px;
  height: 90px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.license-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.license-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.3px;
  box-sizing: border-box;
}

/* ========================================
   FOOTER LEGAL LINKS
   ======================================== */

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ========================================
   FEATURE GRID (for feature/contact-item cards)
   ======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid,
  .feature-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Article Image
   ======================================== */


.article-image{
    margin:48px 0;
    text-align:center;
}

.article-image img{
    width:100%;
    max-width:960px;
    display:block;
    margin:0 auto;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.3s ease;
}

.article-image img:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(0,0,0,.2);
}

.image-caption{
    margin-top:12px;
    font-size:14px;
    color:#777;
    font-style:italic;
    line-height:1.6;
}

.article-image-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:40px 0;
}

.article-image-grid .article-image{
    margin:0;
}

.article-image-grid img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}


/* Mobile */
@media(max-width:768px){

    .article-image-grid{
        grid-template-columns:1fr;
    }

}