/* ========================================= */
/* 1. VARIABLES & RESET                      */
/* ========================================= */
:root {
    /* Warna Utama Modern */
    --bg-color: #0a0a12;
    --card-bg: rgba(22, 22, 35, 0.6); /* Transparan untuk efek kaca */
    --primary: #4f46e5; /* Indigo */
    --secondary: #06b6d4; /* Cyan */
    --accent: #ec4899; /* Pink */
    
    /* Teks */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    
    /* Efek Kaca */
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Font */
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================= */
/* 2. ANIMATED BACKGROUND                    */
/* ========================================= */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    overflow: hidden;
}

/* Efek Bintang */
#stars, #stars2 {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: starAnim 100s linear infinite;
}
#stars2 {
    background-size: 300px 300px;
    animation: starAnim 150s linear infinite;
}

@keyframes starAnim {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

/* ========================================= */
/* 3. NAVBAR                                 */
/* ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-link-danger {
    color: #ff4757 !important;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* ========================================= */
/* 4. BUTTONS                                */
/* ========================================= */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-3px);
}

.btn-glow {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.btn-glow:hover {
    background: var(--secondary);
    color: black;
    box-shadow: 0 0 20px var(--secondary);
}

/* ========================================= */
/* 5. HERO SECTION                           */
/* ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 10% 50px;
    gap: 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge-new {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(236, 72, 153, 0.3);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    width: 100%;
    max-width: 550px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================= */
/* 6. FEATURES SECTION                       */
/* ========================================= */
.features-section {
    padding: 100px 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-card {
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 40px 35px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 30, 45, 0.8);
}

/* Icons Style */
.card-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Warna Ikon Per Fitur */
.icon-voice i { color: #2ecc71; text-shadow: 0 0 15px rgba(46, 204, 113, 0.4); }
.icon-admin i { color: #ff4757; text-shadow: 0 0 15px rgba(255, 71, 87, 0.4); }
.icon-premium i { color: #ffa502; text-shadow: 0 0 15px rgba(255, 165, 2, 0.4); }
.icon-eco i { color: #3742fa; text-shadow: 0 0 15px rgba(55, 66, 250, 0.4); }
.icon-ticket i { color: #a55eea; text-shadow: 0 0 15px rgba(165, 94, 234, 0.4); }
.icon-log i { color: #00cec9; text-shadow: 0 0 15px rgba(0, 206, 201, 0.4); }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================= */
/* 7. COMMANDS GRID (NEW DESIGN)             */
/* ========================================= */
.commands-section {
    padding: 100px 10%;
    background: linear-gradient(180deg, transparent, rgba(79, 70, 229, 0.05), transparent);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.cmd-card {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.cmd-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cmd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cmd-header i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cmd-badge {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.cmd-badge.admin { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }
.cmd-badge.premium { background: rgba(241, 196, 15, 0.2); color: #f1c40f; }
.cmd-badge.setup { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.cmd-badge.economy { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }

.cmd-code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cmd-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.cmd-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cmd-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================= */
/* 8. DEVELOPER & FOOTER                     */
/* ========================================= */
.developer-section {
    padding: 100px 10%;
    text-align: center;
}

.dev-container {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
}

.dev-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.dev-info { text-align: left; }

.dev-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links { margin-top: 20px; }
.social-links a {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-right: 20px;
    transition: 0.3s;
}
.social-links a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 40px 10%;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p { color: var(--text-muted); }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--primary); }

/* ========================================= */
/* 9. REPORT BUG PAGE STYLES                 */
/* ========================================= */
.report-section {
    padding: 140px 10% 80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.report-container {
    width: 100%;
    max-width: 700px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 24px;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.report-header {
    text-align: center;
    margin-bottom: 40px;
}

.report-header i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
}

.report-header .section-title {
    font-size: 2.2rem;
}

.report-form .form-group {
    margin-bottom: 25px;
}

.report-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.report-form label i {
    margin-right: 8px;
    color: var(--secondary);
}

.report-form input, 
.report-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.3s;
}

.report-form input:focus, 
.report-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit-report {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ========================================= */
/* 10. RESPONSIVE DESIGN                     */
/* ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .nav-menu { gap: 20px; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-dashboard-btn {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.4s;
        border-bottom: var(--glass-border);
    }

    .nav-menu.active { right: 0; }
    
    .nav-toggle { display: block; }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        height: auto;
    }

    .hero-buttons { justify-content: center; }
    
    .dev-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .dev-info { text-align: center; }
    
    .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .btn { width: 100%; justify-content: center; }
    
    .report-container { padding: 30px 20px; }
}
