* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    /* BACKGROUND DENGAN GAMBAR CEWEK + OVERLAY GELAP ELEGAN */
    background-image: 
        linear-gradient(135deg, rgba(11, 12, 16, 0.92) 20%, rgba(11, 12, 16, 0.75) 100%),
        url('../images/bg-model.png'); 
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #0b0c10;
    color: #ffffff;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(15, 15, 18, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
}

.vip-badge {
    background: #d4af37;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

.btn-login {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-login:hover {
    background: rgba(212, 175, 55, 0.15);
}

.btn-register {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn-register:hover {
    transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.sub-title {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero h1 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero p {
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ANALYZER CARD (Glassmorphism Transparan) */
.analyzer-card {
    background: rgba(15, 16, 20, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    min-width: 220px;
    padding: 12px 18px;
    border-radius: 25px;
    border: 1px solid #444;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #d4af37;
}

.input-group button {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(45deg, #ffcc00, #ff8800);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}

/* RESULT BOX */
.result-box {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px dashed rgba(212, 175, 55, 0.5);
}

.hidden {
    display: none;
}

.spin {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-badge {
    color: #00ff88;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}

.winrate-bar {
    background: #222;
    height: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.winrate-fill {
    background: linear-gradient(90deg, #ff8800, #00ff88);
    height: 100%;
    transition: width 1s ease;
}

.winrate-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
    color: #000;
}

.pattern-info {
    font-size: 13px;
    color: #ccc;
    margin: 6px 0;
}

.btn-claim {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(45deg, #00ff88, #00b359);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-card {
    background: rgba(15, 16, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.feature-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #d4af37;
    font-size: 15px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: #aaa;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.8);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* BACKGROUND DEFAULT (DESKTOP & LAPTOP) */
body {
    background-image: 
        linear-gradient(135deg, rgba(11, 12, 16, 0.88) 10%, rgba(11, 12, 16, 0.7) 100%),
        url('../images/bg-model.png'); 
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #0b0c10;
    color: #ffffff;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(15, 15, 18, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
}

.vip-badge {
    background: #d4af37;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

.btn-login {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-login:hover {
    background: rgba(212, 175, 55, 0.15);
}

.btn-register {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn-register:hover {
    transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}

.sub-title {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero h1 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero p {
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ANALYZER CARD (Glassmorphism Transparan) */
.analyzer-card {
    background: rgba(15, 16, 20, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    min-width: 220px;
    padding: 12px 18px;
    border-radius: 25px;
    border: 1px solid #444;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #d4af37;
}

.input-group button {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(45deg, #ffcc00, #ff8800);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}

/* RESULT BOX */
.result-box {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px dashed rgba(212, 175, 55, 0.5);
}

.hidden {
    display: none;
}

.spin {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-badge {
    color: #00ff88;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}

.winrate-bar {
    background: #222;
    height: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
}

.winrate-fill {
    background: linear-gradient(90deg, #ff8800, #00ff88);
    height: 100%;
    transition: width 1s ease;
}

.winrate-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: bold;
    color: #000;
}

.pattern-info {
    font-size: 13px;
    color: #ccc;
    margin: 6px 0;
}

.btn-claim {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(45deg, #00ff88, #00b359);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-card {
    background: rgba(15, 16, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.feature-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #d4af37;
    font-size: 15px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: #aaa;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.8);
}

/* OPTIMASI TAMPILAN KHUSUS HANDPHONE (MOBILE) - DITAROK PALING BAWAH */
@media (max-width: 768px) {
    body {
        background-position: center 20%; 
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .analyzer-card {
        padding: 15px;
    }
}
/* --- RUNNING TEXT TESTIMONI --- */
.running-text-container {
    background: rgba(15, 15, 20, 0.85);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    color: #e0e0e0;
}

.running-text-content {
    display: inline-block;
    padding-left: 100%;
    animation: runningText 25s linear infinite;
}

.running-text-content b {
    color: #ffd700;
}

@keyframes runningText {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- KOTAK STATISTIK SERVER --- */
.server-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 20px auto 25px auto;
    padding: 0 15px;
}

.stat-card {
    background: rgba(20, 20, 25, 0.75);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
}

.stat-icon {
    font-size: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-weight: bold;
    font-size: 15px;
    color: #ffffff;
}

.stat-value.text-green { color: #00ff88; }
.stat-value.text-gold { color: #ffd700; }

.stat-label {
    font-size: 10px;
    color: #aaaaaa;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .server-stats-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}