/* ============================================
   IMPORT FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Trade+Winds&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0618;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes brandGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                     0 0 10px rgba(220, 53, 69, 0.6);
    }
}

@keyframes mysticalGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(52, 152, 219, 0.5), 0 0 25px rgba(52, 152, 219, 0.3);
    }
}

@keyframes fearPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}


/* ============================================
   GLOBAL COMPONENTS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a02622;
}

/* Typography */
.page-title,
.section-title,
.brand-text,
.nav-menu {
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #dc3545;
    color: white;
}

.btn-primary:hover {
    background: #a02622;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.4);
}


/* ============================================
   NAVIGATION
   ============================================ */
.header {
    background: linear-gradient(135deg, #0d0518 0%, #1a0a2e 50%, #0d0518 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

.navbar {
    padding: 1rem 0;
    animation: slideDown 0.8s ease-out;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 0;
}

.nav-brand h1 {
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -100px;
}

.brand-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: brandGlow 2s ease-in-out infinite alternate;
}

.nav-brand h1 i {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    animation: slideInRight 0.6s ease-out backwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu li:nth-child(6) { animation-delay: 0.35s; }

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #dc3545;
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.nav-link.active {
    color: #dc3545;
    text-shadow: 0 0 8px rgba(220, 53, 69, 0.4);
}

.nav-link.dropdown-toggle.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

/* Dropdown Desktop */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(20, 15, 35, 0.98) 0%, rgba(10, 5, 20, 0.98) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(220, 53, 69, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 0.75rem;
    border: 1px solid rgba(220, 53, 69, 0.3);
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.85rem 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    font-weight: 500;
    position: relative;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.9), rgba(220, 53, 69, 0.7));
    color: #ffffff;
    padding-left: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
}

.dropdown-menu li a.active {
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: #ffffff;
    padding-left: 1.5rem;
}

.dropdown-menu li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff6b6b;
    opacity: 1;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #050510 0%, #0f0c29 30%, #1a0a2e 70%, #0d0518 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    animation: pageLoad 1s ease-out;
}

/* Keris Pattern Background Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='400' viewBox='0 0 200 400'%3E%3Cpath d='M100 20 L100 80 M100 80 Q80 100 70 140 Q65 180 75 220 Q85 260 90 300 Q95 340 100 380 Q105 340 110 300 Q115 260 125 220 Q135 180 130 140 Q120 100 100 80 M95 85 L105 85' stroke='%23dc3545' stroke-width='2' fill='none' opacity='0.15'/%3E%3Cpath d='M100 80 L100 85 M95 85 L105 85 M92 88 L108 88' stroke='%23dc3545' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px 300px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    animation: kerisFloat 8s ease-in-out infinite;
}

/* Keris floating animation */
@keyframes kerisFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-5px) translateX(2px);
        opacity: 1;
    }
    50% {
        transform: translateY(0) translateX(0);
        opacity: 0.9;
    }
    75% {
        transform: translateY(5px) translateX(-2px);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease, fearPulse 3s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}


/* ============================================
   SECTION TITLE (Shared)
   ============================================ */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #dc3545;
    border-radius: 2px;
}

/* ============================================
   FEATURES GRID (Used in multiple sections)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc3545, #a02622);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e1e8ed;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #dc3545;
    min-width: 40px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0d0518 0%, #1a0a2e 50%, #0d0518 100%);
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(220, 53, 69, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #dc3545;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: #dc3545;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.link-group ul li a:hover {
    opacity: 1;
    color: #dc3545;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ============================================
   ABOUT ME PAGE - DEVELOPER INFO (WHITE THEME)
   ============================================ */

.about-me-section {
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #050510 0%, #0a0618 50%, #0f0c29 100%);
    min-height: 100vh;
}

.about-me-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.developer-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.dev-info-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Trade Winds', cursive;
    margin: 0;
}

/* Card Layout */
.developer-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #120a24 0%, #1e1a3d 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Left Content */
.developer-left {
    color: #fff;
}

.developer-name {
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Trade Winds', cursive;
}

.developer-bio p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

/* Right Content */
.developer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Photo */
.developer-photo-container {
    position: relative;
}

.developer-photo {
    width: 260px;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #dc3545;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.developer-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Badge */
.developer-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: 'Trade Winds', cursive;
}

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

@media (max-width: 768px) {
    .developer-card {
        padding: 30px;
        gap: 30px;
    }

    .developer-name {
        text-align: center;
        font-size: 1.5rem;
    }

    .developer-photo {
        width: 200px;
        height: 250px;
    }

    .dev-info-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .about-me-section {
        padding: 80px 15px 40px;
    }

    .developer-card {
        padding: 20px;
    }

    .developer-name {
        font-size: 1.2rem;
    }

    .developer-bio p {
        font-size: 0.85rem;
    }
}

/* ============================================
   ABOUT GAME PAGE STYLES (CLEAN VERSION)
   ============================================ */

.about-game-section {
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, #0f0c29 0%, #0a0618 50%, #050510 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Pocong Ngintip - Positioned at left side of game card */
.pocong-ngintip {
    position: absolute;
    left: -180px;
    top: 180px;
    transform: rotate(15deg);
    width: 400px;
    height: 600px;
    z-index: 5;
    pointer-events: none;
    animation: pocongPeek 6s ease-in-out infinite;
}

.pocong-ngintip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(220, 53, 69, 0.4));
}

/* Pocong Ngintip Kanan */
.pocong-ngintip-right {
    position: absolute;
    right: -180px;
    top: 180px;
    transform: rotate(-15deg) scaleX(-1);
    width: 400px;
    height: 600px;
    z-index: 5;
    pointer-events: none;
    animation: pocongPeekRight 6s ease-in-out infinite;
}

.pocong-ngintip-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(220, 53, 69, 0.4));
}

@keyframes pocongPeek {
    0%, 100% {
        left: -250px;
        transform: rotate(15deg) scale(1);
    }
    40% {
        left: -80px;
        transform: rotate(10deg) scale(1.05);
    }
    60% {
        left: -80px;
        transform: rotate(10deg) scale(1.05);
    }
    80% {
        left: -250px;
        transform: rotate(15deg) scale(1);
    }
}

@keyframes pocongPeekRight {
    0%, 100% {
        right: -250px;
        transform: rotate(-15deg) scaleX(-1) scale(1);
    }
    40% {
        right: -80px;
        transform: rotate(-10deg) scaleX(-1) scale(1.05);
    }
    60% {
        right: -80px;
        transform: rotate(-10deg) scaleX(-1) scale(1.05);
    }
    80% {
        right: -250px;
        transform: rotate(-15deg) scaleX(-1) scale(1);
    }
}

/* HEADER */
.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-section-title {
    font-family: 'Trade Winds', cursive;
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}


/* GAME INFO CARD - Same style as spec-card */
.game-info-card {
    background: linear-gradient(145deg, #120a24 0%, #1e1a3d 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-top: 4px solid #dc3545;
    margin-bottom: 50px;
}

.game-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
    padding-bottom: 10px;
}

.game-info-header i {
    font-size: 1.8rem;
    color: #dc3545;
}

.game-info-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.game-info-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 25px;
    align-items: start;
}

.game-info-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(220, 53, 69, 0.4);
}

.game-info-text h4 {
    color: #dc3545;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Trade Winds', cursive;
}

.game-info-text p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

/* SPECS */
.specs-section {
    margin-bottom: 60px;
}

.specs-title {
    text-align: center;
    font-family: 'Trade Winds', cursive;
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.spec-card {
    background: linear-gradient(145deg, #120a24 0%, #1e1a3d 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
    padding-bottom: 10px;
}

.spec-header i {
    font-size: 1.8rem;
    color: #dc3545;
}

.spec-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.spec-label {
    color: #888;
    font-weight: 500;
}

/* SECTION */
.trailer-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #050510 0%, #0a0618 50%, #0f0c29 100%);
    text-align: center;
}

/* TITLE */
.trailer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* WRAPPER (BIAR KELIATAN NIAT) */
.trailer-wrapper {
    background: linear-gradient(145deg, #0f0a1c 0%, #1a1530 100%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

/* VIDEO CONTAINER */
.trailer-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(111, 24, 5, 0.15);
    transition: transform 0.3s ease;
}

.trailer-container:hover {
    transform: scale(1.02);
}

/* IFRAME */
.trailer-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 15px;
}

/* NOTE */
.trailer-note {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .game-info-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-info-image {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

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

@media (max-width: 480px) {
    .about-game-section {
        padding: 80px 15px 40px;
    }

    .game-info-card {
        padding: 20px;
    }

    .game-info-header h3 {
        font-size: 1.1rem;
    }

    .game-info-text h4 {
        font-size: 1.1rem;
    }

    .game-main-title {
        font-size: 1.8rem;
    }

    .spec-card {
        padding: 20px;
    }

    .spec-item {
        flex-direction: column;
        gap: 5px;
    }

    .spec-value {
        text-align: left;
    }
}

/* ============================================
   CONTACT CARD (Review Form)
   ============================================ */
.contact-card-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.contact-card {
    background: linear-gradient(145deg, #0f0a1c, #1a1530);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 35px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(220, 53, 69, 0.25);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #a02622);
}

.contact-card-header {
    margin-bottom: 1.8rem;
    text-align: center;
}

.contact-card-header h3 {
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Trade Winds', cursive;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 1px;
}

.contact-card-header h3 i {
    color: #dc3545;
    display: inline-block !important;
}

.contact-card-body {
    padding: 0;
}

.contact-card-body .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
    border: none;
}

.contact-card-body .contact-item:last-child {
    margin-bottom: 0;
}

/* Hide icons in name and comment fields, but show rating stars */
.contact-item:first-child i,
.contact-item:last-child i {
    display: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.contact-label {
    display: none;
}

/* Show label only for rating */
.contact-item:nth-child(2) .contact-label {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-details input,
.contact-details textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #444;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #252525, #222);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-details input:focus,
.contact-details textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.contact-details input::placeholder,
.contact-details textarea::placeholder {
    color: #888;
}

.contact-details .rating-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem 0;
}

.rating-input i {
    font-size: 1.5rem;
    color: #f39c12;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-block !important;
}

.rating-input i:hover {
    transform: scale(1.2);
}

.rating-text {
    margin-left: 0.5rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.contact-social {
    margin-top: 1.5rem;
    flex-basis: 100%;
    display: flex;
}

.contact-social h4 {
    display: none;
}

.contact-social .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    background: linear-gradient(145deg, #dc3545, #a02622);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.contact-social .btn:hover {
    background: linear-gradient(145deg, #e63e4e, #b52d2a);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #050510 0%, #0a0618 50%, #0f0c29 100%);
    min-height: 100vh;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-section .page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.reviews-section .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
}

.page-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

.review-card {
    background: linear-gradient(145deg, #0f0a1c, #1a1530);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dc3545, #a02622);
    border-radius: 16px 0 0 16px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #dc3545;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
}

.reviewer-info,
.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar img,
.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dc3545;
}

.reviewer-details h4,
.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-rating i {
    color: #f39c12;
    font-size: 1.2rem;
}

.review-content p {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding-left: 0.5rem;
}

.review-content {
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: #dc3545;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Reviews Container - Comments List */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 20px;
}

.reviews-container .pagination {
    margin-top: 2rem;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: linear-gradient(145deg, #0f0a1c, #1a1530);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.page-link:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.page-link.active {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    font-weight: 600;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-section {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #0f0c29 0%, #0a0618 50%, #050510 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./uploads/images/asap.jpg') center/cover;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.news-section .container {
    position: relative;
    z-index: 2;
}

.news-section .page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: linear-gradient(145deg, #0f0a1c 0%, #1a1530 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
.news-detail-section {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #050510 0%, #0a0618 50%, #0f0c29 100%);
    min-height: 100vh;
}

.news-detail-back {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #a02622;
    transform: translateX(-5px);
}

.news-detail-article {
    background: linear-gradient(145deg, #0f0a1c 0%, #1a1530 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.news-detail-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    padding: 3rem;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.news-detail-meta .date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.news-detail-meta .category {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 0.5px;
}

.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
    line-height: 1.3;
}

.news-detail-body {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.news-detail-body p {
    margin-bottom: 1rem;
}

/* ============================================
   FEATURED GAME SECTION (HOME PAGE)
   ============================================ */
.featured-game-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0618 0%, #0f0c29 50%, #1a0a2e 100%);
    position: relative;
    overflow: visible;
}

/* Pocong di Featured Game Section - lebih kecil */
.featured-game-section .pocong-ngintip {
    width: 250px;
    height: 375px;
    left: -100px;
    top: 20px;
}

.featured-game-section .pocong-ngintip-right {
    width: 250px;
    height: 375px;
    right: -100px;
    top: 20px;
}

.featured-game-section .game-info-card {
    margin: 0;
}

/* ============================================
   GALLERY SECTION (HOME PAGE)
   ============================================ */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a0a2e 0%, #0f0c29 50%, #0a0618 100%);
}

.gallery-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Trade Winds', cursive;
    color: #dc3545;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
}

.gallery-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc3545, transparent);
}

.gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 10px;
}

/* Hide scrollbar tapi tetap bisa scroll */
.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(220, 53, 69, 0.5);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 53, 69, 0.8);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    scroll-snap-align: start;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.6);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.empty-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.empty-gallery i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: rgba(220, 53, 69, 0.5);
}

.empty-gallery p {
    font-size: 1.2rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
}

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

/* ============================================
   FEATURES HIGHLIGHT SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #050510 0%, #0a0618 30%, #0f0c29 70%, #0d0518 100%);
}

.features-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #0d0818 0%, #151025 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.6);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc3545 0%, #8b0000 50%, #600903 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

/* ============================================
   REVIEWS PREVIEW SECTION (HOME PAGE)
   ============================================ */
.reviews-preview-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a0a2e 0%, #0f0c29 50%, #0a0618 100%);
}

.reviews-preview-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.reviews-preview-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc3545;
    border-radius: 2px;
}

.reviews-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-preview-card {
    background: linear-gradient(145deg, #0f0a1c 0%, #1a1530 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-preview-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dc3545;
    flex-shrink: 0;
}

.avatar-initials {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.review-preview-info h4 {
    margin: 0;
    color: #600903;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.review-preview-date {
    color: #888;
    font-size: 0.85rem;
}

.review-preview-rating {
    margin-bottom: 15px;
}

.review-preview-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 3px;
}

.review-preview-comment {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.reviews-preview-cta {
    text-align: center;
}

.reviews-preview-cta .btn {
    padding: 12px 30px;
}

.reviews-preview-cta .btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .reviews-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STORE PAGE
   ============================================ */
.store-section {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #050510 0%, #0a0618 50%, #0f0c29 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./uploads/images/asap.jpg') center/cover;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.store-section .container {
    position: relative;
    z-index: 2;
}

.store-section .page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

/* Store Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(145deg, #0f0a1c 0%, #1a1530 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-available {
    background: #27ae60;
    color: white;
}

.badge-unavailable {
    background: #e74c3c;
    color: white;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

.product-price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Trade Winds', cursive;
    letter-spacing: 1px;
}

.product-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.product-actions .btn.disabled {
    background: #95a5a6 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.product-actions .btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIX
   ============================================ */
@media (max-width: 768px) {
    /* Mobile Menu - Text Style (No Hamburger) */
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-brand {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .nav-brand img {
        width: 50px;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0.3rem;
        padding: 0;
    }

    .nav-menu li {
        animation: none;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    /* Layout Mobile */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 250px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Game Detail Mobile */
    .game-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-header h1 {
        font-size: 2.5rem;
    }

    .game-content h2 {
        font-size: 2rem;
    }

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

    .game-screenshots {
        grid-template-columns: 1fr;
    }

    .screenshot img {
        height: 200px;
    }

    .game-specs {
        padding: 1.5rem;
    }

    /* News Mobile */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Store Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    /* Reviews Mobile */
    .reviews-container {
        padding: 0 15px;
        gap: 1rem;
    }

    .review-card {
        padding: 20px;
        border-radius: 12px;
    }

    .review-card::before {
        width: 3px;
        border-radius: 12px 0 0 12px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1rem;
    }

    .review-author {
        gap: 0.6rem;
    }

    .author-avatar img {
        width: 36px;
        height: 36px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .review-rating i {
        font-size: 1rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .review-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 0.3rem;
    }

    .review-content::before {
        font-size: 2rem;
        top: -5px;
        left: -3px;
    }

    .comment-card-container {
        margin: 0 1rem 2rem;
    }

    .contact-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .contact-card-body {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-card-body .contact-item {
        margin-bottom: 0;
        padding: 0.75rem;
        min-width: auto;
    }

    .contact-card-body .contact-item i {
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-details input,
    .contact-details textarea {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .rating-input i {
        font-size: 1.1rem;
    }

    .rating-text {
        font-size: 0.8rem;
        margin-left: 0.5rem;
    }

    .contact-social .btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Pagination Mobile */
    .pagination {
        gap: 0.25rem;
    }

    .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 8px;
        font-size: 0.9rem;
    }

    .contact-card-body {
        padding: 1.5rem;
    }

    .contact-card-body .contact-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }

    .features h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }

    /* Pocong Ngintip Mobile */
    .pocong-ngintip {
        width: 280px;
        height: 420px;
        left: -140px;
        top: 150px;
    }

    .pocong-ngintip-right {
        width: 280px;
        height: 420px;
        right: -140px;
        top: 150px;
    }

    @keyframes pocongPeek {
        0%, 100% {
            left: -200px;
            transform: rotate(15deg) scale(1);
        }
        40% {
            left: -70px;
            transform: rotate(10deg) scale(1.05);
        }
        60% {
            left: -70px;
            transform: rotate(10deg) scale(1.05);
        }
        80% {
            left: -200px;
            transform: rotate(15deg) scale(1);
        }
    }

    @keyframes pocongPeekRight {
        0%, 100% {
            right: -200px;
            transform: rotate(-15deg) scaleX(-1) scale(1);
        }
        40% {
            right: -70px;
            transform: rotate(-10deg) scaleX(-1) scale(1.05);
        }
        60% {
            right: -70px;
            transform: rotate(-10deg) scaleX(-1) scale(1.05);
        }
        80% {
            right: -200px;
            transform: rotate(-15deg) scaleX(-1) scale(1);
        }
    }

    /* Pocong di Featured Game Section - Mobile */
    .featured-game-section .pocong-ngintip {
        width: 150px;
        height: 225px;
        left: -60px;
        top: 10px;
    }

    .featured-game-section .pocong-ngintip-right {
        width: 150px;
        height: 225px;
        right: -60px;
        top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}