/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    animation: fadeIn 0.8s ease;
}

/* ============================================
   BACKGROUND
============================================ */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/df6tfmuv0/image/upload/v1781113255/banner_ina62.xyz_xqjoq1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px);
    transform: scale(1.05);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.6));
    z-index: -1;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CONTAINER
============================================ */
.container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

/* ============================================
   GLASS CARD
============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.6);
}

/* ============================================
   HERO / HEADER
============================================ */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 30px 24px 24px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #f59e0b;
}

.hero::before {
    content: "👑";
    position: absolute;
    font-size: 100px;
    opacity: 0.05;
    bottom: 10px;
    right: 10px;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero h1 {
    font-size: 1.5rem;
    color: #f59e0b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.hero h1 span {
    color: #ffd700;
    font-weight: bold;
}

.hero-tagline {
    font-size: 0.7rem;
    color: #a0a0a0;
    letter-spacing: 1px;
}

.hero-tagline i {
    color: #f59e0b;
    margin: 0 5px;
}

/* ============================================
   AUTH BUTTONS
============================================ */
.auth-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.btn-login {
    flex: 1;
    background: transparent;
    border: 1.5px solid #f59e0b;
    color: #f59e0b;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: scale(1.02);
}

.btn-register {
    flex: 1;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-register:hover {
    transform: scale(1.02);
    background: linear-gradient(90deg, #ea580c, #c2410c);
}

/* ============================================
   BANNER
============================================ */
.banner-wrapper {
    padding: 0;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTENT
============================================ */
.content {
    padding: 28px;
}

/* ============================================
   RATING
============================================ */
.rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    padding: 12px 18px;
    border-radius: 60px;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.score {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* ============================================
   CONTENT TEXT
============================================ */
.content h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 16px;
    border-left: 5px solid #f59e0b;
    padding-left: 16px;
}

.content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================================
   FEATURE GRID
============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.feature-item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 6px;
}

.feature-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
}

/* ============================================
   STATS
============================================ */
.stats {
    display: flex;
    justify-content: space-around;
    background: #0f172a;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 28px;
    text-align: center;
}

.stat-item h3 {
    color: #f59e0b;
    font-size: 1.2rem;
}

.stat-item p {
    color: #94a3b8;
    font-size: 0.65rem;
    margin: 0;
}

/* ============================================
   BUTTONS
============================================ */
.btn-main {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
    margin-bottom: 16px;
}

.btn-main:hover {
    transform: scale(1.02);
    background: linear-gradient(90deg, #ea580c, #c2410c);
}

.btn-main i {
    margin: 0 8px;
}

/* TOMBOL LINK AKSES CEPAT */
.btn-fast-link {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #1e293b, #0f172a);
    color: #f59e0b;
    text-align: center;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    border: 1px solid #f59e0b;
    margin-bottom: 16px;
}

.btn-fast-link:hover {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
    color: white;
    border: 1px solid transparent;
}

.btn-fast-link i {
    margin: 0 5px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: #f1f5f9;
    padding: 20px;
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

.footer p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #64748b;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #f59e0b;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.2rem;
    }
    
    .content h2 {
        font-size: 1.3rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-main {
        padding: 14px;
        font-size: 1rem;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-register {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    body {
        padding: 10px;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .content {
        padding: 18px;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
    }
}