* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0f14;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
    background: #070a0f;
    border-bottom: 1px solid #121826;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
}

.top-links a {
    margin-right: 15px;
    color: #9aa4af;
}

.top-links a:hover {
    color: #60a5fa;
}

/* =====================================================
   HEADER
===================================================== */
/* =========================
   NAVBAR REDESIGN
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #121826;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: #60a5fa;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-menu a {
    font-size: 14px;
    color: #cbd5e1;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* SEARCH */
.search-btn {
    background: #111827;
    border: 1px solid #1f2937;
    color: #9aa4af;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.search-btn:hover {
    color: #fff;
    border-color: #334155;
}

/* CTA */
.cta-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
}

/* MOBILE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}
@media (max-width: 992px) {
    .nav-menu.show {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0b0f14;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid #121826;
    }
}

/* =====================================================
   PAGE TITLE
===================================================== */
.page-header {
    padding: 35px 0 20px;
}

.page-header h1 {
    font-size: 34px;
    font-weight: 700;
}

.page-header p {
    color: #9aa4af;
    margin-top: 5px;
}

/* =====================================================
   AD BANNER
===================================================== */
.ad-banner {
    background: linear-gradient(90deg, #1e3a8a, #0284c7);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 35px;
}

.ad-banner span {
    font-weight: 600;
}

/* =====================================================
   NEWSLETTER
===================================================== */
.newsletter {
    background: #111827;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter h3 {
    font-size: 18px;
    font-weight: 600;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    width: 260px;
    padding: 10px 14px;
    border-radius: 6px;
    background: #0b1220;
    border: 1px solid #1f2937;
    color: #fff;
}

.newsletter button {
    background: #2563eb;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

/* =====================================================
   GRID
===================================================== */
/* =============================
   FOLLOW-UP REDESIGN
============================= */

.followup-wrap {
    padding: 40px 0;
}

/* HEADER */
.page-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.page-header-new h1 {
    font-size: 36px;
    font-weight: 700;
}

.page-header-new p {
    color: #9aa4af;
    margin-top: 4px;
}

.live-dot {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
}

/* AD */
.ad-banner-new {
    background: linear-gradient(135deg, #1e3a8a, #0284c7);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.ad-banner-new strong {
    font-size: 16px;
}

.ad-banner-new span {
    font-size: 13px;
    color: #e5e7eb;
}

.ad-banner-new button {
    background: #22c55e;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}


/* CARD */
.news-card-new {
    background: #111827;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.news-card-new .thumb {
    height: 170px;
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
}

.news-card-new .content {
    padding: 18px;
}

.news-card-new .tag {
    font-size: 11px;
    font-weight: 600;
    color: #60a5fa;
}

.news-card-new h4 {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.4;
}

.news-card-new time {
    font-size: 12px;
    color: #9aa4af;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .newsletter-new {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-new input {
        width: 100%;
    }

    .ad-banner-new {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #0b0f1a;
    color: #cbd5e1;
    padding: 60px 20px 20px;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.footer h4 span {
    color: #3b82f6;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer a {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #3b82f6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    background: #111827;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid #1e293b;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:768px) {
    .newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter input {
        width: 100%;
    }

    .nav {
        display: none;
    }
}



/* ===== AUTH PAGE ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 20px;
}

/* Card */
.auth-card {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Titles */
.auth-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
    color: #020617;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #334155;
}

.auth-input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    font-size: 14px;
    outline: none;
    transition: 0.25s;
}

.auth-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Button */
.auth-btn {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover {
    background: #1d4ed8;
}

/* ===== PRINT SAFE ===== */
@media print {
    header, footer {
        display: none !important;
    }

    .auth-page {
        background: white !important;
        padding: 0;
    }

    .auth-card {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}
