:root {
    --bg-deep: #ffffff;
    --bg-main: #fcfcfc;
    --primary-btn-bg: #4a5547;
    --primary-btn-hover: #3d4739;
    --text-primary: #4a5547;
    --text-secondary: #74826f;
    --panel-bg: #e8f0e1;
    --border-color: rgba(74, 85, 71, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero { 
    text-align: center; 
    background-color: #9ab38f;
    padding: 3.5rem 2rem;
    width: 100%;
    margin-top: 60px; /* sit perfectly below the fixed top navigation */
    border-radius: 0; /* remove border-radius since it spans 100% width */
}
h1 {
    font-family: 'Playfair Display', serif; font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}
.subtitle { color: #ffffff; opacity: 0.9; font-size: 1.1rem; font-weight: 400; margin-top: 10px; }
.panel-title { 
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; 
    margin-bottom: 1.5rem; 
    color: #ffffff; 
    background-color: #9ab38f;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}
.text-center { text-align: center; }

.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.mb-2 { margin-bottom: 2rem; }

.form-container { max-width: 600px; margin: 0 auto; width: 100%; background: #ffffff; }
.input-group { display: flex; flex-direction: column; margin-bottom: 1.2rem; width: 100%; }
.input-row { display: flex; gap: 1.5rem; }
label { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 1px; }
input {
    background: #ffffff; border: 1px solid var(--border-color);
    color: var(--text-primary); padding: 0.8rem; border-radius: 4px; font-family: 'Outfit', sans-serif;
    outline: none; transition: border-color 0.3s; font-weight: 300;
}
input:focus { border-color: var(--primary-btn-bg); }
::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; }

button {
    width: 100%; padding: 1rem; border: none; border-radius: 4px;
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 400;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease;
}
.primary-btn { background: var(--primary-btn-bg); color: #ffffff; }
.primary-btn:hover { background: var(--primary-btn-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.secondary-btn { background: transparent; color: var(--text-primary); border: 1px solid var(--border-color); }
.secondary-btn:hover { background: rgba(74, 85, 71, 0.05); }
.small-btn { width: auto; padding: 0.5rem 1rem; font-size: 0.85rem; margin-bottom: 1rem; }

.loading-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 0; }
.cosmos-spinner { position: relative; width: 80px; height: 80px; margin-bottom: 1.5rem; }
.sun { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; background: #e0cca7; border-radius: 50%; }
.orbit { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 1px dashed var(--text-secondary); animation: spin 4s linear infinite; }
.planet { position: absolute; top: -5px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: var(--primary-btn-bg); border-radius: 50%; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.loading-text { color: var(--text-primary); font-weight: 300; letter-spacing: 1px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Accordion for Dashas */
.accordion-container { width: 100%; font-size: 0.95rem; }
.accordion-item { border-bottom: 1px solid var(--border-color); margin-bottom: 0.5rem; overflow: hidden; background: transparent; }
.accordion-header {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s;
}
.accordion-header:hover { opacity: 0.7; }
.accordion-title { font-weight: 500; color: var(--text-primary); white-space: nowrap; }
.accordion-dates { color: var(--text-secondary); font-size: 0.85rem; font-weight: 400; white-space: nowrap; }
.accordion-content {
    display: none;
    padding: 0.5rem 0 1.5rem 1rem;
}
.accordion-content.active { display: block; }

/* Varga Selector */
.varga-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.varga-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
}
.varga-checkbox-item input {
    cursor: pointer;
    accent-color: var(--primary-btn-bg);
}

/* Autocomplete Styles */
.autocomplete-group { position: relative; }
.autocomplete-items {
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 99;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    list-style: none;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.autocomplete-items li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(74, 85, 71, 0.1);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
}
.autocomplete-items li:hover { background: var(--panel-bg); }

.table-container { overflow-x: auto; background: #ffffff; border-radius: 8px; border: 1px solid var(--border-color); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-color); }
th { color: var(--text-secondary); font-weight: 500; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; background: rgba(74, 85, 71, 0.02); }
tr:last-child td { border-bottom: none; }
td { color: var(--text-primary); font-weight: 400; }
tr:nth-child(even) { background: rgba(74, 85, 71, 0.01); }

/* Chart Controls (Radio Buttons) */
.chart-controls { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1.5rem; 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 10px; 
    flex-wrap: wrap; 
    gap: 10px;
}
.radio-group { display: flex; gap: 15px; }
.radio-label {
    display: flex; align-items: center; gap: 6px; cursor: pointer;
    font-size: 0.85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 1px;
}
.radio-label input { accent-color: var(--primary-btn-bg); }

.chart-container-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

/* --- South Indian Chart --- */
.south-indian-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    height: 100%;
}
.chart-box {
    border: 1px solid var(--border-color);
    position: relative;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 4px;
}
.sign-label {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.planet-badge {
    background: #ffffff;
    border: 1px solid rgba(74, 85, 71, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}
.asc-badge {
    background: #fdfaf0;
    border: 1px solid #d4b855;
    color: #8c7319;
}

.analyze-btn-inline {
    background: transparent;
    border: 1px solid var(--primary-btn-bg);
    color: var(--primary-btn-bg);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
    width: auto;
    text-transform: none;
    white-space: nowrap;
}
.analyze-btn-inline:hover {
    background: var(--primary-btn-bg);
    color: #fff;
}

.box-pisces { grid-column: 1; grid-row: 1; border-top:none; border-left:none; }
.box-aries { grid-column: 2; grid-row: 1; border-top:none; }
.box-taurus { grid-column: 3; grid-row: 1; border-top:none; }
.box-gemini { grid-column: 4; grid-row: 1; border-top:none; border-right:none; }
.box-cancer { grid-column: 4; grid-row: 2; border-right:none; }
.box-leo { grid-column: 4; grid-row: 3; border-right:none; }
.box-virgo { grid-column: 4; grid-row: 4; border-bottom:none; border-right:none; }
.box-libra { grid-column: 3; grid-row: 4; border-bottom:none; }
.box-scorpio { grid-column: 2; grid-row: 4; border-bottom:none; }
.box-sagittarius { grid-column: 1; grid-row: 4; border-bottom:none; border-left:none; }
.box-capricorn { grid-column: 1; grid-row: 3; border-left:none; }
.box-aquarius { grid-column: 1; grid-row: 2; border-left:none; }

.box-center {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.box-center h3 { color: var(--text-secondary); font-size: 1.2rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; font-family: 'Playfair Display', serif; }

/* --- North Indian Chart (Diamond) --- */
.north-indian-chart {
    position: relative;
    width: 100%;
    height: 100%;
}
.north-indian-chart svg { width: 100%; height: 100%; display: block; }
.ni-lines { stroke: var(--border-color); stroke-width: 1; fill: none; }
.ni-house { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ni-sign-num { font-size: 0.75rem; color: var(--text-secondary); font-weight: 400; margin-bottom: 2px; }

/* --- East Indian Chart (Sunandeli) --- */
.east-indian-chart {
    position: relative;
    width: 100%;
    height: 100%;
}
.east-indian-chart svg { width: 100%; height: 100%; display: block; }
.ei-lines { stroke: var(--border-color); stroke-width: 1; fill: none; }
.ei-house { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ei-sign-num { font-size: 0.75rem; color: var(--text-secondary); font-weight: 400; margin-bottom: 2px; }

/* --- Chat Panel --- */
.chat-panel { display: flex; flex-direction: column; height: 500px; background: #ffffff; border-radius: 8px; border: 1px solid var(--border-color); }
.chat-history {
    flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 1rem; padding-right: 0.5rem;
}
.chat-message { padding: 1rem; border-radius: 8px; font-size: 0.95rem; max-width: 85%; font-weight: 300; line-height: 1.5; }
.ai-message { background: var(--panel-bg); align-self: flex-start; border-bottom-left-radius: 0; color: var(--text-primary); }
.user-message { background: rgba(74, 85, 71, 0.05); align-self: flex-end; border-bottom-right-radius: 0; border: 1px solid var(--border-color); }
.chat-input-area { display: flex; gap: 0.5rem; }
.chat-input-area input { flex-grow: 1; padding: 1rem; border-radius: 4px; }
.chat-btn { width: auto; padding: 1rem 2rem; margin-top: 0; }

.markdown-body h1 { 
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: #ffffff; 
    background-color: #9ab38f;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
.markdown-body h2 { font-size: 1.2rem; color: var(--text-primary); font-weight: 500; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.markdown-body p, .markdown-body li { color: var(--text-primary); font-size: 0.95rem; font-weight: 300; line-height: 1.6; }
.markdown-body ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.markdown-body strong { color: var(--text-primary); font-weight: 500; }

.hidden { display: none !important; }

/* --- Paywall Modal --- */
.paywall-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 10; border-radius: 8px; text-align: center; padding: 2rem;
}
.paywall-card {
    background: #ffffff; border: 1px solid var(--border-color);
    padding: 3rem 2rem; border-radius: 8px; max-width: 450px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.paywall-card h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.5rem; margin-bottom: 1rem; }
.paywall-icons { font-size: 2.5rem; margin: 1.5rem 0; letter-spacing: 20px; }

/* --- Chat Typing Animation --- */
.typing-indicator { display: flex; gap: 6px; align-items: center; padding: 5px; }
.typing-dot { width: 6px; height: 6px; background-color: var(--text-secondary); border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; }
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

@media (max-width: 1200px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .input-row { flex-direction: column; gap: 0; }
}

/* --- Intelligent Chart Badges Scaling (Prevent Overflows) --- */
.north-indian-chart .planet-badge, 
.east-indian-chart .planet-badge {
    font-size: 0.62rem !important;
    padding: 1px 4px !important;
    border-radius: 3px;
    white-space: nowrap;
}

/* --- PDF Export Printing Styles --- */
.print-container {
    display: none;
}

@media print {
    /* Hide everything on screen except print container */
    .container > *:not(.print-container) {
        display: none !important;
    }
    
    body, html {
        background: #ffffff !important;
        color: #000000 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        font-family: 'Outfit', sans-serif;
    }
    
    .print-container {
        display: block !important;
    }
    
    .print-page {
        page-break-after: always;
        page-break-inside: avoid;
        position: relative;
        box-sizing: border-box;
        padding: 2cm;
    }
    
    .print-page:last-child {
        page-break-after: avoid;
    }
    
    /* Cover Page */
    .print-cover {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .print-app-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        color: #8c765c;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .print-ganesha-img {
        width: 200px;
        height: auto;
        margin: 1rem auto;
        display: block;
    }
    
    .print-details-card {
        border: 1px solid #e9e4db;
        padding: 2rem;
        border-radius: 8px;
        background: #faf8f5;
        width: 70%;
        margin: 2rem auto 0 auto;
        text-align: left;
        box-shadow: none;
    }
    
    .print-details-card p {
        margin: 0.8rem 0;
        font-size: 1.05rem;
        color: #4a4238;
        border-bottom: 1px dashed #e9e4db;
        padding-bottom: 0.4rem;
    }
    
    .print-details-card p:last-child {
        border-bottom: none;
    }
    
    /* Section Headings */
    .print-section-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: #8c765c;
        border-bottom: 2px solid #e9e4db;
        padding-bottom: 0.5rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    /* Charts Grid in Print */
    .print-charts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .print-charts-grid .chart-panel {
        border: 1px solid #e9e4db !important;
        background: #ffffff !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        padding: 1rem;
    }
    
    .print-charts-grid .chart-panel h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #6d6355;
    }
    
    /* Force Accordions to Expand in Print */
    .accordion-content {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        border-left: 2px solid #e9e4db;
    }
    
    .accordion-header {
        pointer-events: none;
        background: #faf8f5 !important;
        border-bottom: 1px solid #e9e4db;
    }
    
    /* Back Cover */
    .print-back-cover {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .print-footer-url {
        font-size: 1.2rem;
        color: #8c765c;
        font-weight: 600;
        margin-top: 2rem;
        letter-spacing: 1px;
    }
    
    /* Professional Table Styles in Print */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        page-break-inside: avoid;
    }
    
    th, td {
        border: 1px solid #e9e4db !important;
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        color: #333333 !important;
    }
    
    th {
        background-color: #faf8f5 !important;
        color: #8c765c !important;
        font-weight: 600 !important;
        font-family: 'Playfair Display', serif;
    }
    
    /* Hide nested sub-dashas in print to keep report compact and professional */
    .accordion-content .accordion-item {
        display: none !important;
    }
    
    .accordion-content {
        padding: 0 !important;
        border-left: none !important;
    }
    
    .accordion-header {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
    
    /* Watermarks and Header URLs */
    .print-page::after {
        content: "trikaalguru.in";
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-size: 11px;
        color: rgba(140, 118, 92, 0.25);
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .print-page::before {
        content: "https://trikaalguru.in";
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.35);
    }
}

/* --- Top Navigation --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(246, 250, 241, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.credit-badge {
    background: rgba(140, 118, 92, 0.2);
    border: 1px solid var(--primary-btn-bg);
    color: var(--primary-btn-bg);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: #ffffff;
    width: 90%;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
}
.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}
.close-btn:hover {
    color: var(--text-primary);
}

/* --- Auth Corner Popup --- */
.corner-popup {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 360px; /* Increased from 320px to prevent wrapping */
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    z-index: 2000;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}
.popup-header h3 {
    margin: 0;
    color: var(--text-primary);
    white-space: nowrap;
}
.close-popup-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.auth-tab.active {
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-gold);
}
.auth-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}
.auth-message.success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}
.auth-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.auth-divider span {
    padding: 0 10px;
}
.mock-google-btn {
    background: white;
    color: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.mock-google-btn:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .top-nav { padding: 0 1rem; }
    .nav-logo { font-size: 1.2rem; }
    #user-profile-badge { gap: 8px !important; }
    #nav-user-name { font-size: 0.8rem; }
    #nav-user-credits { font-size: 0.75rem !important; padding: 4px 8px !important; }
}
