* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: Arial, sans-serif;

}

html {

  scroll-behavior: smooth;

}



/* BACKGROUND IMAGE CLASSES - TAMBAHKAN GAMBAR DI SINI */

.hero-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK HERO SECTION */

    /* Contoh: background-image: url('../GambarFE/hero-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: #FCF8F8; /* Default background color */

}



.about-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK ABOUT SECTION */

    /* Contoh: background-image: url('../GambarFE/about-game-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: #FCF8F8; /* Default background color */

}



.merchandise-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK MERCHANDISE SECTION */

    /* Contoh: background-image: url('../GambarFE/merch-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: #FCF8F8; /* Default background color */

}



.comment-container-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK COMMENT CONTAINER */

    /* Contoh: background-image: url('../GambarFE/comment-container-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: transparent; /* Default transparent */

}



.container-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK CONTAINER */

    /* Contoh: background-image: url('../GambarFE/container-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: transparent; /* Default transparent */

}



/* FOOTER STYLES */

.footer-bg {

    /* TAMBAHKAN BACKGROUND IMAGE UNTUK FOOTER */

    /* Contoh: background-image: url('../GambarFE/footer-bg.jpg'); */

    /* Contoh: background-size: cover; */

    /* Contoh: background-position: center; */

    /* Contoh: background-attachment: fixed; */

    background-color: #000; /* Default background color */

}



.footer {

    background: #000;

    color: #fff;

    padding: 20px 20px;

    text-align: center;

}



.footer-content {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

}



.footer-logo img {

    height: 30px;

    margin-bottom: 5px;

}



.footer-copyright {

    margin-top: 15px;

    padding-top: 15px;

    border-top: 1px solid #333;

}



.footer-copyright p {

    margin: 0;

    font-size: 17px;

    color: #ccc;

}



/* Responsive Footer */

@media (max-width: 768px) {

    .footer {

        padding: 15px 15px;

    }

    

    .footer-content {

        gap: 12px;

    }

    

    .footer-nav {

        gap: 20px;

    }

    

    .footer-nav a {

        font-size: 17px;

    }

    

    .footer-copyright {

        margin-top: 12px;

        padding-top: 12px;

    }

    

    .footer-copyright p {

        font-size: 15px;

    }

}



@media (max-width: 480px) {

    .footer {

        padding: 15px 10px;

    }

    

    .footer-nav {

        flex-direction: column;

        gap: 8px;

    }

    

    .footer-logo img {

        height: 25px;

    }

}



html {

  scroll-behavior: smooth;

}



body {

  margin: 0;

  font-family: Arial, sans-serif;

  background: #FCF8F8;

  color: #000;

  display: flex;

  flex-direction: column;

  min-height: 100vh;

}



main {

  flex: 1;

}



section {

  margin-bottom: 0;

}



/* NAVBAR */

.navbar {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 15px 30px;

  height: 80px;

  background-color: #FCF8F8;

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

  transition: all 0.3s ease;

}

body {

  padding-top: 80px;

}



.nav-links {

  display: flex;

  align-items: center;

}



.nav-links a {

  margin-left: 20px;

  text-decoration: none;

  color: #000;

  font-weight: 500;

  padding: 10px 20px;

  border-radius: 6px;

  transition: all 0.3s ease;

  font-size: 18px;

}

.nav-links a:first-child {

  margin-left: 0;

}



.nav-links a:hover {

  background-color: rgba(0,0,0,0.08);

  color: #000;

}



/* Logo fixed size */

.logo img {

  height: 55px;

  width: auto;

  display: block;

  transition: height 0.3s ease;

  object-fit: contain;

  max-width: none;

}

.logo {

  display: flex;

  align-items: center;

}



/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {

  .logo img {

    height: 60px;

  }

}



@media (min-width: 1025px) {

  .logo img {

    height: 70px;

  }

}



/* HERO */

section,

.hero {

  min-height: calc(100vh - 80px);

  background:

    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),

    url("GambarFE/poster.png") no-repeat center center / cover;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 40px 20px 60px 20px;

  position: relative;

}



.hero-content {

  display: flex;

  flex-direction: column;

  align-items: center;

}



.hero-title img {

  width: 100%;

  max-width: 700px;

  height: auto;

  display: block;

  margin: 0 auto;

}



.tagline {

  

  margin-top: 15px;

  font-size: 16px;

  color: #fff;

  text-align: center;

  max-width: 500px;

  line-height: 1.5;

  letter-spacing: 0.3px;

  font-weight: 300;

  background: url("GambarFE/scroll.png") no-repeat center center;

  background-size: 520px;

  background-origin: border-box;

  background-clip: border-box;

  background-position: -20px center;

  padding: 60px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

}



/* RESPONSIVE TAGLINE */

@media (max-width: 768px) {

  .tagline {

    background-size: 510px;

    background-position: -19px center;

    padding: 58px;

    max-width: 90%;

    font-size: 16px;

    line-height: 1.4;

  }

}



@media (max-width: 480px) {

  .tagline {

    background-size: 380px;

    background-position: -15px center;

    padding: 45px;

    max-width: 95%;

    font-size: 15px;

    line-height: 1.3;

  }

}



@media (min-width: 769px) and (max-width: 1024px) {

  .tagline {

    background-size: 515px;

    background-position: -19.5px center;

    padding: 59px;

    font-size: 16px;

  }

}



.btn-download {

  display: inline-block;

  margin-top: 5px;

  padding: 12px 30px;

  border: 2px solid #000;

  border-radius: 8px;

  text-decoration: none;

  background: #000;

  color: #fff;

  font-weight: bold;

  transition: all 0.3s ease;

}



.btn-download:hover {

  background: #fff;

  color: #000;

  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}

/* ABOUT SECTION */

.about {

  padding: 60px 20px 80px 20px;

  background: #FCF8F8;

}



.about-container {

  display: flex;

  gap: 60px;

  max-width: 1200px;

  margin: auto;

}



.about-text {

  flex: 2;

  border: 2px solid #000;

  border-radius: 12px;

  padding: 30px;

  background: #fff;

}



.about-text h2 {

  margin-bottom: 15px;

}



.about-text p {

  line-height: 1.6;

  font-size: 17px;

}



/* DOWNLOAD SECTION */

.download-section {

  flex: 1;

  border: 2px solid #000;

  border-radius: 12px;

  background: #fff;

  padding: 30px;

  text-align: center;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.download-section h2 {

  margin-bottom: 15px;

  font-size: 29px;

  color: #000;

}



.download-section p {

  margin-bottom: 20px;

  font-size: 19px;

  line-height: 1.5;

  color: #333;

}



.btn-download-game {

  display: inline-block;

  padding: 15px 30px;

  background: #000;

  color: #fff;

  text-decoration: none;

  border-radius: 8px;

  font-weight: bold;

  font-size: 19px;

  transition: background 0.3s ease, transform 0.2s ease;

  margin-bottom: 15px;

}



.download-buttons {

  display: flex;

  flex-direction: column;

  gap: 15px;

  align-items: center;

}



.btn-itch {

  background: #fa5c5c;

  border: 2px solid #fa5c5c;

}



.btn-itch:hover {

  background: #e53e3e;

  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(250, 92, 92, 0.3);

}



.btn-playstore {

  background: #3ddc84;

  border: 2px solid #3ddc84;

}



.btn-playstore:hover {

  background: #2bb673;

  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(61, 220, 132, 0.3);

}



.btn-download-game:hover {

  background: #333;

  transform: translateY(-2px);

}



/* Responsive Download Buttons */

@media (max-width: 768px) {

  .download-buttons {

    flex-direction: column;

    gap: 12px;

  }

  

  .btn-download-game {

    font-size: 17px;

    padding: 12px 24px;

    width: 100%;

    max-width: 280px;

    text-align: center;

  }

}



@media (max-width: 480px) {

  .download-buttons {

    gap: 10px;

  }

  

  .btn-download-game {

    font-size: 16px;

    padding: 10px 20px;

    width: 100%;

    max-width: 250px;

    text-align: center;

  }

}



.btn-read-more {

  display: inline-block;

  margin-top: 20px;

  padding: 12px 25px;

  background: transparent;

  color: #000;

  text-decoration: none;

  border: 2px solid #000;

  border-radius: 8px;

  font-weight: bold;

  font-size: 17px;

  transition: all 0.3s ease;

}



.btn-read-more:hover {

  background: #000;

  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}



/* MERCHANDISE PAGE */

.merchandise-page {

  padding: 80px 60px;

  background: #fff;

}



.section-title {

  text-align: center;

  font-size: 38px;

  margin-bottom: 60px;

}



/* GRID RESPONSIVE HORIZONTAL */

.merch-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

  gap: 25px;

  max-width: 1200px;

  margin: auto;

  padding: 20px 0;

}



/* CARD */

.merch-card {

  border: 2px solid #000;

  border-radius: 12px;

  padding: 25px;

  text-align: center;

  background: #fff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;

  flex-direction: column;

  align-items: center;

}



.merch-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}



/* MERCH IMAGE CONTAINER */

.merch-image-container {

  position: relative;

  width: 100%;

  height: 250px;

  margin-bottom: 0;

  border-radius: 4px;

  overflow: hidden;

  perspective: 1000px;

  z-index: 1;

  cursor: pointer;

}



.merch-img-front,

.merch-img-back {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 4px;

  transition: transform 0.25s ease;

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;

  z-index: 1;

}



.merch-img-back {

  transform: rotateY(180deg);

}



.merch-image-container:hover .merch-img-front {

  transform: rotateY(180deg);

}



.merch-image-container:hover .merch-img-back {

  transform: rotateY(0deg);

}



/* Click to flip using :active - works without JavaScript */

.merch-image-container:active .merch-img-front {

  transform: rotateY(180deg);

}



.merch-image-container:active .merch-img-back {

  transform: rotateY(0deg);

}



/* Keep flipped class for JavaScript fallback */

.merch-image-container.flipped .merch-img-front {

  transform: rotateY(180deg) !important;

}



.merch-image-container.flipped .merch-img-back {

  transform: rotateY(0deg) !important;

}



/* FLIP BUTTON */

.btn-flip {

  width: 100%;

  padding: 10px 15px;

  margin: 10px 0;

  background: #000;

  color: #fff;

  border: 2px solid #000;

  border-radius: 8px;

  font-size: 17px;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;

  text-align: center;

}



.btn-flip:hover {

  background: #333;

  border-color: #333;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

}



.btn-flip:active {

  transform: translateY(0);

}



.merch-toggle:hover {

  background: rgba(0,0,0,0.9);

}



/* Mobile: Click to flip */

@media (max-width: 768px) {

  .merch-image-container {

    perspective: 1000px;

    cursor: pointer;

  }

  

  .merch-img-front,

  .merch-img-back {

    transition: transform 0.25s ease;

  }

  

  .merch-img-back {

    transform: rotateY(180deg);

  }

}



.merch-card h3 {

  margin-bottom: 8px;

  font-size: 19px;

  min-height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.merch-desc {

  font-size: 16px;

  line-height: 1.4;

  margin-bottom: 15px;

  min-height: 60px;

}



/* HARGA */

.price {

  font-weight: bold;

  font-size: 22px;

  margin-bottom: 15px;

  color: #000;

}



/* BUTTON BELI */

.btn-buy {

  display: inline-block;

  padding: 8px 25px;

  border: 2px solid #000;

  border-radius: 8px;

  text-decoration: none;

  color: #000;

  font-weight: bold;

  transition: all 0.3s ease;

  background: #fff;

}



.btn-buy:hover:not(.disabled) {

  background: #25d366;

  border-color: #25d366;

  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);

}



/* Stock Info Styles */

.stock-info {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin: 10px 0;

  padding: 8px 12px;

  background: #f8f9fa;

  border-radius: 6px;

  border: 1px solid #e9ecef;

}



.stock-label {

  font-weight: 600;

  color: #495057;

  font-size: 17px;

}



.stock-quantity {

  font-weight: 500;

  font-size: 17px;

  padding: 2px 8px;

  border-radius: 12px;

}



.in-stock {

  background: #d4edda;

  color: #155724;

  border: 1px solid #c3e6cb;

}



.out-of-stock {

  background: #f8d7da;

  color: #721c24;

  border: 1px solid #f5c6cb;

}



.btn-buy.disabled {

  background: #6c757d;

  cursor: not-allowed;

  opacity: 0.6;

}



.btn-buy.disabled:hover {

  background: #6c757d;

  border-color: #6c757d;

  transform: none;

  box-shadow: none;

}



/* RESPONSIVE MERCH GRID */

@media (max-width: 768px) {

  .merch-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    padding: 0 12px;

  }

  

  .merch-card {

    padding: 12px;

  }

  

  .merch-image-container {

    height: 180px;

    min-height: 180px;

  }

  

  .stock-info {

    flex-direction: column;

    gap: 5px;

    text-align: center;

  }

  

  .merch-card h3 {

    font-size: 18px;

    min-height: 42px;

  }

  

  /* Tablet toggle button */

  .merch-toggle {

    width: 34px;

    height: 34px;

    font-size: 18px;

  }

  

  /* ABOUT SECTION RESPONSIVE */

  .about-container {

    flex-direction: column;

    gap: 30px;

  }

  

  .about-text,

  .download-section {

    flex: 1;

  }

  

  .btn-read-more {

    font-size: 16px;

    padding: 10px 20px;

  }

}



@media (max-width: 480px) {

  .merch-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    padding: 0 10px;

  }

  

  .merch-card {

    padding: 10px;

  }

  

  .merch-image-container {

    height: 180px;

    min-height: 180px;

  }

  

  /* Larger toggle button for mobile */

  .merch-toggle {

    width: 35px;

    height: 35px;

    font-size: 18px;

    top: 8px;

    right: 8px;

    background: rgba(0,0,0,0.8);

  }

  

  .stock-info {

    flex-direction: column;

    gap: 5px;

    text-align: center;

    padding: 6px 8px;

  }

  

  .stock-label,

  .stock-quantity {

    font-size: 16px;

  }

  

  .merch-card h3 {

    font-size: 17px;

    min-height: 38px;

  }

  

  .merch-desc {

    font-size: 15px;

    min-height: 50px;

  }

  

  /* ABOUT SECTION MOBILE RESPONSIVE */

  .about-container {

    flex-direction: column;

    gap: 20px;

  }

  

  .about-text,

  .download-section {

    flex: 1;

  }

  

  .btn-read-more {

    font-size: 15px;

    padding: 8px 16px;

    margin-top: 15px;

  }

}



/* COMMENT SECTION */

.comment-section {

    padding: 80px 60px;

    background: #f9f9f9;

}



.comment-container {

    max-width: 800px;

    margin: auto;

}



.comment-title {

    text-align: center;

    font-size: 38px;

    margin-bottom: 40px;

}



/* COMMENT LIST - BAWAH */

.comment-grid {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 0; /* No margin at bottom since it's the last element */

    justify-content: flex-start;

}



.comment-item {

    flex: 0 0 auto;

    max-width: 300px;

    min-width: 250px;

}



@media (max-width: 768px) {

    .comment-grid {

        gap: 15px;

    }

    

    .comment-item {

        max-width: 100%;

        min-width: 100%;

    }

}



@media (max-width: 480px) {

    .comment-grid {

        gap: 10px;

    }

    

    .comment-item {

        max-width: 100%;

        min-width: 100%;

    }

}



/* FORM - ATAS */

.comment-form {

    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 25px;

    border: 2px solid #000;

    border-radius: 12px;

    background: #fff;

    margin-bottom: 50px; /* Space between form and comment grid */

}



.comment-form input,

.comment-form textarea {

    padding: 12px 15px;

    border: 2px solid #000;

    border-radius: 8px;

    font-size: 17px;

    font-family: Arial, sans-serif;

}



.comment-form button {

    width: 160px;

    padding: 10px;

    border: 2px solid #000;

    border-radius: 8px;

    background: transparent;

    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;

    align-self: center; /* Center tombol */

}



.comment-form button:hover {

    background: #000;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}



/* COMMENT LIST */

.comment-item {

    border: 2px solid #000;

    border-radius: 12px;

    padding: 20px;

    background: #fff;

    display: flex;

    gap: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.comment-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}



.comment-form input,

.comment-form textarea {

    padding: 12px 15px;

    border: 2px solid #000;

    border-radius: 8px;

    font-size: 17px;

    font-family: Arial, sans-serif;

}



.comment-form button {

    width: 160px;

    padding: 10px;

    border: 2px solid #000;

    border-radius: 8px;

    background: transparent;

    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;

}



.comment-form button:hover {

    background: #000;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}



/* COMMENT LIST */

.comment-item {

    border: 2px solid #000;

    border-radius: 12px;

    padding: 20px;

    background: #fff;

    display: flex;

    gap: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.comment-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}



.comment-avatar {

    width: 40px;

    height: 40px;

    background: #000;

    color: #fff;

    font-weight: bold;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;

}



.comment-content h4 {

    margin-bottom: 6px;

    font-size: 18px;

}



.comment-content p {

    font-size: 17px;

    line-height: 1.5;

}



.comment-content small {

    display: block;

    margin-top: 8px;

    font-size: 15px;

    color: #555;

}

/* ========================================
   RESPONSIVE DESIGN - INTEGRATED
   ======================================== */

/* MOBILE (480px ke bawah) */
@media (max-width: 480px) {
    /* NAVBAR */
    .navbar {
        height: 60px;
        padding: 10px 15px;
        flex-wrap: nowrap;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background-color: #FCF8F8 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        box-sizing: border-box;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        transform: none !important;
    }
    
    body {
        padding-top: 60px !important;
    }
    
    .logo img {
        height: 40px;
        width: auto;
    }
    
    .nav-links {
        display: flex !important;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        background: transparent;
        margin-left: auto;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 8px 12px;
        margin: 0;
        text-decoration: none;
        color: #000;
        background: rgba(0,0,0,0.05);
        border-radius: 4px;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-height: 36px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .nav-links a:hover {
        background-color: rgba(0,0,0,0.1);
    }
    
    /* HERO SECTION */
    .hero {
        min-height: calc(100vh - 60px);
        padding: 40px 15px 60px 15px;
        background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                    url("GambarFE/poster.png") no-repeat center center / cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 320px;
        background: rgba(0,0,0,0.5);
        padding: 20px 15px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }
    
    .hero-title img {
        max-width: 95%;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .tagline {
        font-size: 11px;
        line-height: 1.3;
        color: #fff;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        padding: 0 5px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
        background: rgba(0,0,0,0.3);
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .btn-download {
        display: inline-block;
        padding: 12px 24px;
        background: #27ae60;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
        font-size: 17px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-download:hover {
        background: #2ecc71;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    }
    
    /* ABOUT SECTION */
    .about {
        padding: 40px 15px;
        background: #FCF8F8;
    }
    
    .about-container {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        text-align: center;
        order: 1;
    }
    
    .about-text h2 {
        font-size: 29px;
        margin-bottom: 15px;
        color: #000;
        border-bottom: 2px solid #000;
        padding-bottom: 8px;
        display: inline-block;
    }
    
    .about-text p {
        font-size: 17px;
        line-height: 1.5;
        color: #333;
        margin-bottom: 15px;
    }
    
    .about-text strong {
        color: #000;
        font-weight: bold;
    }
    
    .btn-read-more {
        display: inline-block;
        padding: 10px 20px;
        background: #000;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-size: 17px;
        transition: all 0.3s ease;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-read-more:hover {
        background: #333;
        transform: translateY(-1px);
    }
    
    .download-section {
        text-align: center;
        order: 2;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .download-section h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #000;
    }
    
    .download-section p {
        font-size: 17px;
        color: #666;
        margin-bottom: 20px;
    }
    
    .download-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-download-game {
        display: inline-block;
        padding: 12px 20px;
        text-decoration: none;
        border-radius: 8px;
        font-size: 17px;
        font-weight: bold;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .btn-itch {
        background: #FA5C5C;
        color: #fff;
    }
    
    .btn-itch:hover {
        background: #E74C3C;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(250, 92, 92, 0.3);
    }
    
    .btn-playstore {
        background: #34A853;
        color: #fff;
    }
    
    .btn-playstore:hover {
        background: #2E7D32;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
    }
    
    /* MERCHANDISE SECTION */
    .merchandise-page {
        padding: 40px 15px;
        background: #FCF8F8;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .section-title {
        font-size: 29px;
        text-align: center;
        margin-bottom: 30px;
        color: #000;
        border-bottom: 3px solid #000;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .merch-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .merch-card {
        width: 100%;
        max-width: none;
        height: auto;
        perspective: 1000px;
        position: relative;
        cursor: pointer;
    }
    
    .merch-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }
    
    .merch-card:hover .merch-card-inner {
        transform: rotateY(180deg);
    }
    
    .merch-card-front,
    .merch-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }
    
    .merch-card-front {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
    }
    
    .merch-card-back {
        background: #fff;
        color: #000;
        border: 2px solid #000;
        transform: rotateY(180deg);
    }
    
    .merch-card img {
        max-width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
    }
    
    .merch-card h3 {
        font-size: 19px;
        margin: 0;
    }
    
    .merch-card p {
        font-size: 15px;
        margin: 5px 0 0 0;
        line-height: 1.3;
    }
    
    .btn-buy {
        display: inline-block;
        padding: 8px 16px;
        background: #000;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        font-size: 15px;
        margin-top: 10px;
        transition: all 0.3s ease;
    }
    
    .btn-buy:hover {
        background: #333;
        transform: translateY(-1px);
    }
    
    /* COMMENT SECTION */
    .comment-section {
        padding: 40px 15px;
        background: #FCF8F8;
    }
    
    .comment-container {
        max-width: 100%;
        padding: 0;
    }
    
    .comment-title {
        font-size: 29px;
        text-align: center;
        margin-bottom: 30px;
        color: #000;
        border-bottom: 3px solid #000;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .comment-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .comment-form input,
    .comment-form textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #000;
        border-radius: 8px;
        font-size: 17px;
        font-family: Arial, sans-serif;
        transition: border-color 0.3s ease;
        background: #fff;
    }
    
    .comment-form input:focus,
    .comment-form textarea:focus {
        outline: none;
        border-color: #27ae60;
        box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    }
    
    .comment-form textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .comment-form button {
        padding: 12px 24px;
        background: #27ae60;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 17px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 44px;
        align-self: center;
    }
    
    .comment-form button:hover {
        background: #2ecc71;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    }
    
    .comment-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .comment-item {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-left: 4px solid #27ae60;
    }
    
    .comment-header {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 12px;
        object-fit: cover;
    }
    
    .comment-name {
        font-weight: bold;
        color: #000;
        font-size: 17px;
    }
    
    .comment-date {
        color: #666;
        font-size: 15px;
        margin-left: auto;
    }
    
    .comment-text {
        color: #333;
        font-size: 17px;
        line-height: 1.5;
    }
    
    /* FOOTER */
    .footer {
        background: #000;
        color: #fff;
        text-align: center;
        padding: 20px 15px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-logo img {
        height: 25px;
        width: auto;
    }
    
    .footer-copyright p {
        font-size: 15px;
        margin: 0;
        color: #ccc;
    }
}

/* TABLET (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 15px 25px;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background-color: #FCF8F8 !important;
        transform: none !important;
    }
    
    body {
        padding-top: 70px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-links {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: auto;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 8px 16px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .hero {
        min-height: calc(100vh - 70px);
        padding: 50px 20px 70px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                    url("GambarFE/poster.png") no-repeat center center / cover;
    }
    
    .hero-content {
        max-width: 400px;
        background: rgba(0,0,0,0.4);
        padding: 25px 20px;
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }
    
    .hero-title img {
        max-width: 90%;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 16px;
        line-height: 1.4;
        color: #fff;
        margin-bottom: 25px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        padding: 0 10px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
        background: rgba(0,0,0,0.25);
        padding: 10px 15px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.15);
    }
    
    .btn-download {
        font-size: 19px;
        padding: 14px 28px;
    }
    
    .about {
        padding: 50px 20px;
    }
    
    .about-container {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .about-text {
        flex: 1;
        text-align: left;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    .download-section {
        flex: 1;
        text-align: left;
    }
    
    .download-section h2 {
        font-size: 29px;
    }
    
    .download-section p {
        font-size: 18px;
    }
    
    .merchandise-page {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .merch-card {
        max-width: 100%;
        height: 220px;
    }
    
    .comment-section {
        padding: 50px 20px;
    }
    
    .comment-title {
        font-size: 28px;
    }
    
    .comment-form {
        padding: 25px;
    }
    
    .comment-form input,
    .comment-form textarea {
        font-size: 18px;
        padding: 14px;
    }
    
    .comment-form textarea {
        min-height: 120px;
    }
    
    .comment-form button {
        font-size: 19px;
        padding: 14px 28px;
    }
    
    .footer {
        padding: 25px 20px;
    }
    
    .footer-logo img {
        height: 28px;
    }
    
    .footer-copyright p {
        font-size: 16px;
    }
}

/* DESKTOP (769px+) - PRESERVE ORIGINAL */
@media (min-width: 769px) {
    /* Navbar desktop fixed */
    .navbar {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    /* Pertahankan style desktop original */
    .hero {
        min-height: calc(100vh - 80px);
        background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                    url("GambarFE/poster.png") no-repeat center center / cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px 20px 60px 20px;
        position: relative;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none;
        background: transparent;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
    }
    
    .hero-title img {
        width: 100%;
        max-width: 700px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 22px;
        line-height: 1.4;
        color: #fff;
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        padding: 0 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-weight: normal;
        background: transparent;
        padding: 0 30px;
        border-radius: 0;
        border: none;
    }
}

/* LANDSCAPE MODE */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 30px 15px 40px 15px;
    }
    
    .hero-title img {
        max-width: 80%;
    }
    
    .tagline {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .about-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .merch-card {
        height: 180px;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .merch-card:hover .merch-card-inner {
        transform: none;
    }
    
    .btn-download:hover,
    .btn-read-more:hover,
    .btn-buy:hover,
    .btn-download-game:hover,
    .comment-form button:hover {
        transform: none;
    }
    
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* FIX COMMON MOBILE ISSUES */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    @supports (-webkit-touch-callout: none) {
        .hero {
            min-height: -webkit-fill-available;
        }
    }
    
    @supports (padding: max(0px)) {
        .navbar {
            padding-left: max(10px, env(safe-area-inset-left));
            padding-right: max(10px, env(safe-area-inset-right));
        }
    }
}



