/* PandaSMS Global Stylesheet
   Version: 2.1 | Date: April 2026
*/

/* 1. IMPORTS & VARIABLES */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

:root {
    --bg-main: #0c0c0c;
    --bg-card: #141414;
    --border-color: #1f1f1f;
    --accent-gold: #c5a059;
    --text-primary: #ffffff;
    --text-lead: #808080; /* Restored design balance color */
    --accent-blue: #00a8ff;
}

/* 2. BASE RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /* World Map Background */
    background-image: linear-gradient(rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.9)), 
                      url('https://narayana.im/images/bg-landing.svg');
    background-size: 1100px;
    background-position: center 80px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.5;
}

/* 3. NAVIGATION (SHARED) */
.top-nav {
    height: 70px;
    background: #000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-lead);
    text-decoration: none;
    font-size: 14px;
    margin-right: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #fff;
}

.btn-signup {
    border: 1px solid #333;
    padding: 8px 20px;
    border-radius: 4px;
}

/* 4. DASHBOARD SPECIFIC (LOGGED-IN) */
.balance-pill {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.balance-pill:hover {
    background: rgba(197, 160, 89, 0.2);
    transform: translateY(-1px);
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

/* 5. HERO & CONTENT SECTIONS */
.hero-section {
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-section p {
    color: var(--text-lead);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* 6. PAYMENT SECTION (Lit up icons) */
.payment-section {
    margin-top: 80px;
    text-align: center;
}

.payment-section h2 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.payment-icons img {
    filter: brightness(1); /* Ensure icons stay vibrant */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* 7. GLOBAL FOOTER (3-Column Layout) */
.global-footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 40px 5%;
    margin-top: 100px;
    background: #0c0c0c;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-column p, 
.footer-column a {
    font-size: 13px;
    color: var(--text-lead);
    text-decoration: none;
    margin: 10px 0;
    display: block;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column i {
    width: 20px;
    margin-right: 10px;
    color: var(--text-lead);
}

.copyright-bar {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #141414;
    color: #444;
    font-size: 11px;
}

/* 8. FORMS & INPUTS */
.auth-input {
    background: #111;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 14px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.auth-input:focus {
    border-color: #444;
}

.btn-primary-form {
    background: #cccccc;
    color: #000;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary-form:hover {
    background: #ffffff;
}

/* 9. FAQ ACCORDION (details/summary) */
details {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

summary {
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    outline: none;
}

details p {
    margin-top: 15px;
    color: var(--text-lead);
    font-size: 14px;
    line-height: 1.6;
}