/* ============================================
   HOKI88BOS - FPS Gaming Theme (Bahasa Indonesia)
   Warna: Hitam (#0A0A0A) + Kuning (#FFD700)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1A1A1A;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFC107;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

/* Navigation - FIX POSITION, TIDAK IKUT GERAK */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* LOGO - DIAM, TIDAK GERAK */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFD700;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFD700;
    z-index: 100;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FFD700;
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}
.btn-outline {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    margin-left: 1rem;
}
.btn-outline:hover {
    background: #FFD700;
    color: #0A0A0A;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    background: #050505;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.social-links a {
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #FFD700;
}
.footer p {
    color: #666;
}

/* Disclaimer */
.disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.7rem;
    color: #666;
    text-align: center;
}
.disclaimer p {
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* diubah dari fixed biar tidak aneh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

/* Hero content styling */
.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.hero h1 span {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero p strong {
    color: #FFD700;
}

/* Page Header (untuk about & contact) */
.page-header {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
}
.page-header h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.page-header h1 span {
    color: #FFD700;
}
.page-header p {
    color: #CCCCCC;
    margin-top: 1rem;
}

/* Game Categories */
.categories {
    padding: 5rem 5%;
    background: #0F0F0F;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.category-card {
    background: #1A1A1A;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}
.category-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}
.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.category-card p {
    color: #AAAAAA;
}

/* Featured Games */
.featured {
    padding: 5rem 5%;
    background: #0A0A0A;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.game-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: all 0.3s;
}
.game-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}
.game-image {
    width: 100%;
    height: 200px;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 3rem;
    overflow: hidden;
}
.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-info {
    padding: 1.5rem;
}
.game-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.game-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}
.game-desc {
    color: #AAAAAA;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.read-more {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.read-more:hover {
    gap: 1rem;
}

/* About Page Specific */
.about-content-section {
    padding: 5rem 5%;
    background: #0A0A0A;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}
.about-text p {
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat {
    text-align: center;
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
}
.stat-label {
    color: #AAAAAA;
    margin-top: 0.5rem;
}
.about-image {
    width: 100%;
    height: 300px;
    background: #1A1A1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.about-image i {
    font-size: 4rem;
    color: #FFD700;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: #0F0F0F;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 2rem auto 1rem;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar i {
    font-size: 3rem;
    color: #0A0A0A;
}
.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.team-role {
    color: #FFD700;
    margin-bottom: 1rem;
}
.team-bio {
    color: #AAAAAA;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Contact Page Specific */
.contact-content-section {
    padding: 5rem 5%;
    background: #0A0A0A;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}
.contact-info > p {
    color: #CCCCCC;
    margin-bottom: 2rem;
}
.contact-details {
    margin-top: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #111;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.2rem;
}
.contact-text h4 {
    margin-bottom: 0.25rem;
}
.contact-text p {
    color: #AAAAAA;
}
.contact-form {
    background: #111111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 0 5% 5rem;
    background: #0A0A0A;
}
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.map-placeholder {
    background: #111;
    padding: 3rem;
    text-align: center;
    color: #AAAAAA;
}
.map-placeholder i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: #0F0F0F;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #111;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.faq-question:hover {
    color: #FFD700;
}
.faq-question i {
    color: #FFD700;
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: #AAAAAA;
    line-height: 1.6;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .logo {
        position: static;
        transform: none;
        margin: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A0A0A;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-top: 1px solid #FFD700;
        gap: 1.5rem;
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 1rem;
    }
}
@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}