/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    background: #0f0f0f;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background: rgb(0, 0, 0); /* match your design */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* Keeps logo left, nav right */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
  font-size: 30px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

   .title-bar {
    background: transparent; /* no background */
    /*padding: 1px 40px;*/
    display: flex;
    align-items: center;
    /*justify-content: flex-start;*/
    justify-content: space-between;
    padding: 10px 20px;
 }

.main-nav ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 10px 20px;
        gap: 20px;
    }

.main-nav a {
        text-decoration: none;
        color: white;
        font-weight: 500;
    }

    


nav a:hover {
  color: #fbc500; 
}

nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #fbc500;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between; /* Push logo left and nav right */
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    position: relative;
    color: #ccc;
    text-decoration: none;
    margin-left: 30px;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

    .main-nav a::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        left: 0;
        bottom: 0;
        background-color: #fbc500;
        transition: width 0.3s ease;
    }

    .main-nav a.active::after,
    .main-nav a:hover::after {
        width: 100%;
    }

    .main-nav a.active {
        color: #fbc500;
        
    }

.nav-safe-area {
    max-width: 1280px; /* or match your logo's total width */
    margin: 0 auto;
    padding: 0 60px; /* Optional: Adjust based on your logo's side padding */
    box-sizing: border-box;
}

/* ==== HAMBURGER (HIDDEN ON PC) ==== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px; /* aligned to right */
    top: 20px;
}

    .hamburger span {
        height: 3px;
        width: 25px;
        background: white;
        margin: 4px 0;
        border-radius: 2px;
    }
        

/* Hero */


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-video {
    transition: opacity 0.6s ease;
}

    .hero-video.fade-out {
        opacity: 0;
    }

    .hero-video.fade-in {
        opacity: 1;
    }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark fade overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 80%);
    display: flex;
    align-items: center;
    padding-left: 5%;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1s; /* fade in after 1s */
}

/* Text styling */
.hero-text {
    color: #fff;
    max-width: 600px;
}

    .hero-text h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: #ddd;
    }
.hero-overlay {
    transition: opacity 0.6s ease;
}

    .hero-overlay.fade-out {
        opacity: 0;
    }

    .hero-overlay.fade-in {
        opacity: 1;
    }


.hero-buttons {
    display: flex;
    gap: 15px;
}

    .hero-buttons .btn {
        padding: 12px 24px;
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .hero-buttons .btn:hover {
            background: #fff;
            color: #000;
        }

  .video-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.video-dots .dot {
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-dots .dot.active {
  background-color: white;
}


/* Featured Cards */
.featured {
  padding: 60px 20px;
  text-align: center;
}

.featured h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.card img {
  width: 100%;
  display: block;
}

g

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #777;
}


.logo {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.logo-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

    .logo-btn img {
        height: 40px;
        margin-right: 10px;
    }

.site-name {
    font-size: 20px;
    font-weight: 600;
}







.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(255, 204, 0, 0.3);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.updates {
  padding: 60px 20px;
  text-align: center;
}

.updates h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #fbc500;
}

.update-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.update-card {
  background: #1a1a1a;
  padding: 20px;
  border-left: 6px solid #fbc500;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.update-card:hover {
  transform: scale(1.02);
}

.update-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #fff;
}

.update-card p {
  color: #ccc;
  margin-bottom: 8px;
}

.update-card .date {
  font-size: 14px;
  color: #888;
}
.updates {
  padding: 60px 20px;
  text-align: center;
}

.updates h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

/* Reuse .cards from featured section */

.update-card {
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(255, 204, 0, 0.2);
}

.update-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.update-card p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 8px;
}

.update-card .date {
  font-size: 14px;
  color: #888;
  margin-top: auto;
}
.read-more-container {
  margin-top: 30px;
}

.read-more-btn {
  background: #fbc500;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #ffd700;
  color: #000;
}
.news-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.page-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: #fbc500;
}
.logo-btn img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo-btn:hover img {
  transform: scale(1.05);
}

.news-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #111;
    
}
    .news-hero h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        color: #fff;
    }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
}
.news-article {
  display: flex;
  background-color: #1a1a1a;
  color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.news-article {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(255, 204, 0, 0.1);
  border-left: 5px solid #fbc500;
}
.news-article img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
  flex: 1;
}
.news-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.news-article p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 8px;
}

.news-article .date {
  font-size: 14px;
  color: #888;
}
.news-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}
.news-content a {
  color: #fbc500;
  text-decoration: underline;
}

.newswire {
    padding: 40px 60px;
    background-color: #111;
    color: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #1c1c1c;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .news-card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(251, 197, 0, 0.2);
    }

    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .news-card h3 {
        font-size: 1.2rem;
        margin: 15px;
    }

    .news-card p {
        margin: 0 15px 15px;
        font-size: 0.95rem;
        color: #ccc;
    }

    .news-card a {
        display: block;
        margin: 0 15px 15px;
        color: #fbc500;
        font-weight: bold;
        text-decoration: none;
    }
.site-footer {
    background-color: #0a0a0a;
    color: #aaa;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

    .footer-links a {
        color: #aaa;
        margin: 0 15px;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #fbc500;
        }

.footer-copy {
    font-size: 0.85rem;
    color: #555;
}
/*Socila media*/
.social-icons {
    margin: 20px 0;
}

    .social-icons a {
        margin: 0 20px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .social-icons img {
        width: 22px;
        height: 20px;
        filter: brightness(0.8);
        transition: filter 0.3s, transform 0.3s;
    }

    .social-icons a:hover img {
        filter: brightness(1.2);
        transform: scale(1.1);
    }
    /*Game Page*/
.games-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    color: #fff;
}

    .games-container h1 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.5rem;
        color: #fff;
    }

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: #111;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
    .game-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 10px 25px rgba(251, 197, 0, 0.2);
    }

    .game-card img {
        width: 100%;
        border-radius: 8px;
    }

    

  


.btn {
    padding: 8px 16px;
    background-color: #fbc500;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

    .btn:hover {
        background-color: #fff200;
    }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


.support-section {
    text-align: center;
    padding: 80px 20px;
    color: white;
    background-color: #121212;
}

    .support-section h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .support-section p {
        font-size: 1.1rem;
        color: #ccc;
        margin-bottom: 40px;
    }

.support-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #1a1a1a;
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(251, 197, 0, 0.1);
    transition: all 0.3s ease;
}

    .support-link:hover {
        background-color: #2a2a2a;
        box-shadow: 0 0 25px rgba(251, 197, 0, 0.3);
    }

    .support-link img {
        width: 24px;
        height: 24px;
    }
   /*Footer alingment*/

.site-footer {
    background: #000;
    color: #fff;
    font-family: sans-serif;
    padding: 40px 20px 20px;
}

    .site-footer a {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
    }

        .site-footer a:hover {
            color: #fbc500;
        }

.footer-top,
.footer-middle,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
a {
    text-decoration: none;
    color: inherit;
}
.footer-links,
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 45px;
    align-items: center;
}

    .footer-social img {
        width: 24px;
        height: 24px;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

        .footer-social img:hover {
            opacity: 1;
        }

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

    .footer-bottom .footer-left,
    .footer-bottom .footer-center,
    .footer-bottom .footer-right {
        flex: 1;
        text-align: left;
    }

    .footer-bottom .footer-center {
        text-align: center;
    }

    .footer-bottom .footer-right {
        text-align: right;
    }

    /*Video bg*/



/*Game details*/

.game-showcase {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #0d0d0d;
}

.showcase-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.showcase-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}



.btn-primary {
    background: #e50914;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 12px;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background: #ff1a1a;
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
    }

.container {
    padding: 60px 10%;
}

.editions {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.edition-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.highlight-grid, .screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

    .highlight-card img, .screenshot-grid img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

        .highlight-card img:hover, .screenshot-grid img:hover {
            transform: scale(1.03);
        }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

    .video-container iframe {
        position: absolute;
        width: 100%;
        height: 100%;
    }

h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: #fbc500;
}
/* Safe area to maintain spacing from screen edges */
.safe-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Game Highlights Section */
.game-highlights {
    background-color: #111; /* Or your section bg */
    border-radius: 16px;
    text-align: center;
}

    /* Yellow and white font combo */
    .game-highlights h2 {
        color: #fbc500; /* Bright yellow */
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.highlight-text {
    color: #ffffff; /* White text */
    font-size: 1.2rem;
    line-height: 1.6;
}
.game-overview {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: #1a1a1a; /* dark background for contrast */
    border-radius: 16px;
    color: #fff; /* white text */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    /* Optional: Headings and paragraph styling */
    .game-overview h2 {
        font-size: 2.2rem;
        color: #fbc500; /* yellow for heading */
        margin-bottom: 20px;
    }

    .game-overview p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #ddd;
    }


/* ---------- universal spacing helper ---------- */
.safe-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

h2 {
    color: #fbc500;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

/* ---------- Feature Strip --------------------- */
.feature-strip {
    background: #141414;
    border-radius: 12px;
    margin-top: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 30px;
}

.feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: .9rem;
}

    .feat img {
        width: 64px;
        height: 57px;
        margin-bottom: 12px;
        
    }

/* ---------- System Requirements --------------- */
.sys-req {
    background: #1b1b1b;
    border-left: 6px solid #fbc500;
    border-radius: 9px;
}

    .sys-req ul {
        list-style: none;
        padding: 0 20px 20px;
    }

    .sys-req li {
        margin: 8px 0;
        font-size: 1rem;
        color: #ddd;
    }

    .sys-req b {
        color: #fff;
    }

/* ====== Review Cards Style ====== */
.review-section {
    margin-top: 80px;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: #111;
    border: 2px solid #fbc500;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    color: #fff;
    text-align: left;
    transition: transform 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-6px);
    }

    .review-card .quote {
        font-size: 1rem;
        color: #fff;
        font-style: italic;
        margin-bottom: 12px;
    }

    .review-card .author {
        color: #fbc500;
        font-size: 0.85rem;
        font-weight: bold;
    }


/* 3-dot video menu */
.video-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.menu-btn {
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50%;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: rgba(0,0,0,0.8);
    border-radius: 6px;
    overflow: hidden;
}

    .menu-dropdown button {
        display: block;
        background: none;
        border: none;
        color: white;
        padding: 10px 15px;
        cursor: pointer;
        text-align: left;
        width: 100%;
    }

        .menu-dropdown button:hover {
            background: rgba(255,255,255,0.1);
        }

    .menu-dropdown.show {
        display: block;
    }

  

    /*screen shot pop up*/

/* Overlay background */
.image-popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    /* Image inside popup */
    .image-popup img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255,255,255,0.3);
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Close button */
    .image-popup span {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

.feature-buttons {
    position: absolute;
    bottom: 60px; /* distance from bottom */
    display: flex;
    gap: 15px;
}

    /* Left-aligned version */
    .feature-buttons.left {
        right: 60px; /* space from the left edge */
    }
    .feature-buttons .btn {
        padding: 12px 25px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        background: transparent;
        color: white;
        font-weight: bold;
        font-size: 14px;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .feature-buttons .btn:hover {
            background: rgba(255, 255, 255, 1);
            border-color: white;
            color: black; /* <-- this makes text black on hover */
        }


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*Studio name*/
/* Align logo + text */
.logo-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

    .logo-btn img {
        height: 40px;
        margin-right: 10px;
    }



/* ==== RESPONSIVE (MOBILE) ==== */
@media (max-width: 768px) {

/* ==== NAV BAR ==== */
html, body {
  overflow-x: hidden;  /* Prevent horizontal scroll */
  width: 100%;         /* Ensure content stays inside viewport */
}
    header {
        height: 75px;  /* smaller height for mobile */
        padding: 0 10px; 
        background: #1a1a1abe;
      transition: top 0.3s ease-in-out;
    
  position: relative;
  top: 0;
  z-index: 1000;



    }

    .title-bar img {
        height: 30px;   /* smaller logo */
    }

    .site-name {
        display:none; /* smaller text */
    }

    .hamburger {
        display: flex;
        margin-right: 5px;
        margin-top: 0px; /* push a bit to right */
    }

    .main-nav ul {
        flex-direction: column;
        position: absolute;
        top: 50px; /* match new header height */
        right: 0;
        border-radius: 12px; 
        background: #222;
        width: 180px;
        display: none; /* hidden by default */
    }

    .main-nav ul.active {
        display: flex;
    }


/* ==== INDEX ==== */

 .hero {
    position: relative;
    width: 100%;
    height: 60vh; /* full screen height */
    overflow: hidden;
  }

    .hero-video {
        position: relative;       /* no absolute centering */
        width: 100%;
        height: auto;
        min-height: auto;
        transform: none;
        object-fit: cover !important;  /* makes it fill while keeping aspect ratio */
        object-position: top center !important; /* aligns from the top */
        position: absolute !important;
        top: 0;
        left: 0;
        max-width: 100%;
    }

    .hero-overlay {
        max-width: 100%;
        box-sizing: border-box;
        position: relative;       /* no overlay */
        background: none;         /* remove dark gradient */
        width: 100%;
        height: 75%;
        opacity: 1;               /* always visible */
        padding: 10px;
        justify-content: center;
        margin-top: 200px;     
    }
    .hero-text h1 {
        font-size: 1.8rem; /* smaller title */
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center; /* center button under text */
    }

    .hero-content {
    position: relative;
    z-index: -1; /* keep text above video */
  }
    .video-dots {
    padding-bottom: 0%; 
}

.game-card {
     padding-left: 20px;
    padding-right: 20px;
    
}
}





        