/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(90deg, #002244, #003366);
    color: #fff;
}

/* Navbar */
.navbar {
    background-color: #2e1c14;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    position: relative;
}

/* Logo */
.logo h1 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #ffd700;
}

.logo span {
    font-size: 0.9rem;
    color: #ccc;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.nav-menu a:hover {
    color: #ffd700;
}

/* User Icons */
.user-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: #ffd700;
}

/* Hamburger */
.hamburger {
    font-size: 2rem;
    cursor: pointer;
    display: none;
    color: #ffd700;
}

/* Content Home */
.content-home {
    background-image: url("/0069572754/shandisukma/foto/bg.png");
    background-size: 100% 100%; /* Scale to match device width and height */
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 32.2vh 50px;
    min-height: 100vh;
    color: #ffd700;
}
.content-home h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.content-home p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}
.btn-primary {
    background-color: #ffd700;
    color: #1c120d;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #b8860b;
}

/* Konten Umum */
.content {
    padding: 2rem;
    max-width: 800px;
    margin: 50px auto 0;
    background-color: rgba(0, 34, 68, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}
.content h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: #ff0000;
}
.content p {
    margin-top: 0.5rem;
    line-height: 1.6;
    color: #e0e0e0;
}
.guide-image {
    margin-top: 1.5rem;
    max-width: 100%;
    border: 1px solid #0073e6;
    border-radius: 8px;
}

/* Tombol */
.btn {
    background-color: #0073e6;
    color: #ffd700;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #005bb5;
    color: #fff;
}

/* Tombol Navigasi Galeri */
.prev-btn,
.next-btn {
    background-color: #002244;
    color: #ffd700;
    border: 2px solid #0073e6;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
}
.prev-btn:hover,
.next-btn:hover {
    background-color: #003366;
    color: #fff;
}

/* About Game */
.about-container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #ffffff;
    border: 2px solid #0073e6;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about-photo {
    width: 250px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #ffd700;
}
.about-info h3 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.about-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #002244;
}

/* Footer */
.footer {
    background: #2e1c14;
    color: #ffd700;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #0073e6;
}

/* Section Tambahan */
.section2 {
    background-color: #eef6ec;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}
.section2-title {
    font-size: 1.7rem;
    color: #347a2a;
    margin-bottom: 0.5rem;
}
.section2-text {
    color: #444;
    margin-bottom: 1rem;
}
.whatsapp-link img {
    width: 60px;
    transition: transform 0.3s ease;
}
.whatsapp-link img:hover {
    transform: scale(1.1);
}

/* Comment Section */
.comment-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.comment-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 30px;
}
.comment-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
form input:focus,
form textarea:focus {
    border-color: #0073e6;
    outline: none;
}
form button {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}
form button:hover {
    background-color: #005bb5;
}

/* Merchandise Section */
.merchandise-section,
.merch-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
}
.merchandise-section h2,
.merch-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.merchandise-section h2 {
    color: #347a2a;
}
.merch-section h2 {
    color: #ffd700;
}

/* Grid Layout */
.merchandise-container,
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Merchandise Card */
.merch-card {
    background: linear-gradient(to bottom, #2e1c14, #1c120d);
    border: 2px solid #6c3b1f;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.merch-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(255, 215, 0, 0.2);
}
.merch-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
}
.merch-info h3 {
    margin: 10px 0 5px;
    color: #ffd700;
    font-size: 18px;
}
.merch-price {
    font-weight: bold;
    color: #ffdead;
    margin-bottom: 10px;
}
.merch-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Buy Button */
.buy-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background-color: #ffd700;
    color: #1c120d;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.buy-btn:hover {
    background-color: #b8860b;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: center;
        background-color: #002244;
        padding: 1rem 0;
        position: absolute;
        top: 70px;
        left: 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Utility */
.hidden {
    display: none;
}
.no-data {
    text-align: center;
    font-size: 1.5rem;
    color: #bbb;
    padding: 50px 20px;
}

/* pengembang */
.pengembang-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.pengembang-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-size: 32px;
    letter-spacing: 1px;
}

.pengembang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.pengembang-card {
    max-width: 320px; /* Card tidak melebar lebih dari ini */
    margin: 0 auto;
    background: linear-gradient(to bottom, #2e1c14, #1c120d);
    border: 2px solid #6c3b1f;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pengembang-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(255, 215, 0, 0.2);
}

.pengembang-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
    flex-shrink: 0;
}

.pengembang-info h3 {
    margin: 10px 0 5px;
    color: #ffd700;
    font-size: 18px;
}

.pengembang-edu {
    font-weight: bold;
    color: #ffdead;
    margin-bottom: 10px;
}

.pengembang-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}