/* ================== ORACLE NUSANTARA - MAIN STYLESHEET ================== */
/* Tema: Mystic Dark Elegance */
/* ======================================================================== */

/* ---------- 1. RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0C;
    background-image: radial-gradient(circle at 30% 10%, #1a1f2e 0%, #0A0A0C 100%);
    color: #E5E5E5;
    line-height: 1.6;
    min-height: 100vh;
    padding: 24px 16px;
    -webkit-font-smoothing: antialiased;
}

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #F3E5AB;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; letter-spacing: -0.5px; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }

p {
    color: #B0B0C0;
    margin-bottom: 16px;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: #F3E5AB; }

/* ---------- 3. LAYOUT & CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- 4. NAVIGATION ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F3E5AB;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #A0A0B0;
    font-weight: 400;
    font-size: 1rem;
}

.nav-links a:hover { color: #D4AF37; }

.btn-premium-nav {
    border: 1px solid #D4AF37;
    padding: 10px 24px;
    border-radius: 4px;
    color: #D4AF37 !important;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-premium-nav:hover {
    background-color: #D4AF37;
    color: #0A0A0C !important;
}

/* ---------- 5. CARDS & CONTAINERS ---------- */
.oracle-card {
    background: rgba(20, 20, 25, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

/* ---------- 6. FORM ELEMENTS ---------- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.input-field {
    flex: 1 1 240px;
}

.input-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.input-field input {
    width: 100%;
    background: rgba(15, 15, 20, 0.8);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #E5E5E5;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.input-field input:focus {
    outline: none;
    border-color: #D4AF37;
}

/* ---------- 7. BUTTONS ---------- */
.btn-primary {
    background: transparent;
    border: 1.5px solid #D4AF37;
    color: #D4AF37;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background: #D4AF37;
    color: #0A0A0C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.2);
}

.btn-premium {
    background: transparent;
    border: 1.5px solid #D4AF37;
    color: #D4AF37;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-premium:hover {
    background: #D4AF37;
    color: #0A0A0C;
}

/* ---------- 8. BADGES & IDENTITY ---------- */
.identity-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.badge {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
}

.badge i { color: #D4AF37; }

/* ---------- 9. ASPECT GRID (RAMALAN) ---------- */
.aspect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.aspect-card {
    background: rgba(15, 15, 20, 0.6);
    border-radius: 20px;
    padding: 28px 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.aspect-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.aspect-icon { font-size: 2.5rem; color: #D4AF37; margin-bottom: 16px; }
.aspect-title { font-size: 1.5rem; margin-bottom: 12px; }
.free-prediction { color: #A0A0B0; font-style: italic; min-height: 60px; }

/* ---------- 10. TOKEN DISPLAY ---------- */
.token-display-section { text-align: center; margin: 24px 0; }
.token-badge {
    background: rgba(15, 15, 20, 0.8);
    border: 1.5px solid #D4AF37;
    border-radius: 40px;
    padding: 12px 32px;
    display: inline-block;
}
.token-badge i { color: #D4AF37; margin-right: 8px; }
.token-badge span { font-weight: 700; color: #D4AF37; font-size: 1.5rem; margin-left: 8px; }

/* ---------- 11. PREMIUM BOX ---------- */
.premium-message {
    background: rgba(15, 15, 20, 0.9);
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
    border-left: 4px solid #D4AF37;
}

/* ---------- 12. FOOTER ---------- */
.footer {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 32px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: #A0A0B0;
    font-size: 0.9rem;
}

.footer a { color: #D4AF37; margin-left: 24px; }

/* ---------- 13. UTILITIES ---------- */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-gold { color: #D4AF37; }

/* ---------- 14. RESPONSIVE ---------- */
@media (max-width: 900px) {
    .aspect-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar { flex-direction: column; align-items: flex-start; }
    .nav-links { gap: 20px; }
    h1 { font-size: 2.8rem; }
}

@media (max-width: 500px) {
    .aspect-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .footer { flex-direction: column; text-align: center; }
    .footer a { margin: 0 12px; }
    h1 { font-size: 2.2rem; }
}
