/* Premium Reset */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body {
    background: #0A0A0C; /* True Dark Premium Background */
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* FIX: Changed absolute to fixed. This stops the glow from stretching the page and causing scrollbars. */
body::before {
    content: ''; position: fixed; top: -10%; left: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.45) 0%, rgba(0,0,0,0) 70%);
    filter: blur(90px); z-index: -1;
    pointer-events: none; 
}
body::after {
    content: ''; position: fixed; bottom: -10%; right: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(243, 144, 79, 0.35) 0%, rgba(0,0,0,0) 70%);
    filter: blur(90px); z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 149, 63, 0.2);
}
.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; color: #FCF6BA; }
.btn-login {
    background: linear-gradient(135deg, #BF953F, #B38728);
    color: #0A0A0C !important;
    padding: 10px 20px; border-radius: 50px; font-weight: 700; text-decoration: none;
}

/* Hero Section */
.hero { text-align: center; padding: 80px 20px; max-width: 800px; margin: 0 auto; }
.badge {
    background: rgba(191, 149, 63, 0.1);
    padding: 8px 16px; border-radius: 30px;
    font-size: 0.85rem; color: #FCF6BA; border: 1px solid rgba(191, 149, 63, 0.3);
}
h1 { font-size: 3.5rem; margin-top: 25px; line-height: 1.1; font-weight: 800; }

/* MOLTEN GOLD TEXT GRADIENT */
.gradient-text {
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle { color: #aaa; font-size: 1.1rem; margin: 20px 0 40px; line-height: 1.6; }

/* Action Boxes (Sync & Search) */
.action-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px; border-radius: 16px;
    border: 1px solid rgba(191, 149, 63, 0.2);
    backdrop-filter: blur(20px);
    max-width: 600px; margin: 0 auto 20px auto;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.action-box h3 { color: #FCF6BA; margin-bottom: 15px; font-size: 1.2rem; }
.input-group { display: flex; gap: 10px; margin-bottom: 10px; }
@media (max-width: 768px) { .input-group { flex-direction: column; } }

.action-input {
    flex: 1; background: rgba(0,0,0,0.3); border: none;
    padding: 15px; color: #fff; font-size: 1rem; outline: none;
    border-bottom: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 8px 8px 0 0;
}
.action-input:focus { border-bottom: 1px solid #FCF6BA; background: rgba(0,0,0,0.5); }

/* MOLTEN GOLD BUTTONS */
.action-btn {
    background: linear-gradient(135deg, #BF953F 0%, #F3904F 100%);
    border: none; color: #0A0A0C; padding: 0 30px; border-radius: 10px;
    font-weight: 800; cursor: pointer; transition: 0.2s; height: 52px;
}
.action-btn:hover { transform: scale(1.02); box-shadow: 0 0 15px rgba(191, 149, 63, 0.4); }
.action-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.status-msg { font-size: 0.9rem; color: #888; margin-top: 5px; }

/* Results Grid */
.features {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; padding: 40px 20px; width: 100%; max-width: 1200px; margin: 0 auto; box-sizing: border-box;
}
.feature-card {
    background: rgba(255, 255, 255, 0.02); padding: 20px; border-radius: 16px; 
    border: 1px solid rgba(191, 149, 63, 0.1); transition: 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(191, 149, 63, 0.4); background: rgba(255, 255, 255, 0.04); }
.post-img {
    height: 250px; width: 100%; object-fit: cover; 
    border-radius: 10px; margin-bottom: 15px; background-color: #111;
}