:root {
    --fire-orange: #FF6B35;
    --fire-red: #FF4757;
    --fire-yellow: #FFD700;
    --fire-blue: #4ECDC4;
    --dark-bg: #0A0A0F;
    --card-bg: #1A1A2E;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #6B7280;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --gradient-fire: linear-gradient(45deg, #FF6B35, #FF4757, #FFD700);
    --gradient-dark: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 50%, #16213E 100%);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-dark);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

/* --- Navigation System --- */
.desktop-nav {
    display: flex;
    list-style: none;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.desktop-nav .tab {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.desktop-nav .tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.desktop-nav .tab.active {
    color: var(--text-primary);
    background: var(--fire-orange);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hamburger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%; /* Adjust top to center vertically */
    transform: translateY(-50%);
    z-index: 1001;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.hamburger-menu.active {
    color: var(--fire-orange);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--card-bg);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 60px 20px 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav .tab {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 10px;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.2s, background-color 0.2s;
}

.mobile-nav .tab i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-nav .tab.active,
.mobile-nav .tab:hover {
    color: var(--fire-orange);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}


.tab-content {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.hidden {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px; /* Added margin-bottom here */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="number"],
input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input[type="number"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

select {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

input[readonly] {
    background: rgba(255, 255, 255, 0.04);
    cursor: not-allowed;
    color: var(--text-secondary);
}

input.invalid {
    border-color: var(--fire-red);
}

button,
.btn {
    padding: 15px 25px;
    background: var(--gradient-fire);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.navigation-buttons .btn {
    flex: 1;
}

.navigation-buttons .btn:only-child {
    max-width: 50%;
    margin-left: auto;
}

.navigation-buttons .btn.prev {
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
}

.navigation-buttons .btn.export {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navigation-buttons .btn.export:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.navigation-buttons .btn.export:active {
    transform: translateY(0);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.result-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fire-orange);
    margin-bottom: 5px;
}

.result-value.expected {
    color: var(--text-secondary);
    font-weight: 500;
}

.result-value.actual {
    color: var(--fire-orange);
    font-weight: 700;
}

.result-value.unachievable {
    color: var(--fire-red);
    font-weight: 700;
}

.result-value.extended {
    color: var(--warning-orange);
    font-weight: 700;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fire-orange);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- Asset Allocation New Styles --- */
.asset-allocation-form .card {
    padding: 20px;
}

.asset-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.asset-row:last-of-type {
    border-bottom: none;
}

.asset-label {
    font-weight: 500;
    color: var(--text-primary);
    text-transform: none;
    display: flex;
    flex-direction: column;
    flex-basis: 180px;
    flex-grow: 1;
}

/* Revised asset-inputs and related classes */
.asset-inputs {
    flex-grow: 2;
    flex-shrink: 1;
    min-width: 320px; /* Increased min-width for the input group container */
    gap: 10px;
    display: grid; /* Keep it as grid */
}

.asset-inputs.three-cols {
    /* More robust grid column definition for 3 columns */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}

.asset-inputs.pf-nps {
    /* Consistent grid column definition for 3 columns (EPF/NPS also have 3 inputs) */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}


.total-corpus-display {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 18px;
    margin-bottom: 0;
    text-align: right;
}

.message-box {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.message-box.info {
    background-color: var(--fire-blue);
}

.message-box.error {
    background-color: var(--fire-red);
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
    
    .feedback-fab {
        display: none !important;
    }

    h1 {
        font-size: 2rem;
    }

    .header {
        justify-content: space-between;
        padding: 0 12px;
    }

    .hamburger-menu {
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 16px;
    }

    .container {
        padding: 10px;
    }

    .tab-content {
        padding: 20px;
    }

    .form-row {
        margin-bottom: 15px; /* Adjust for smaller screens */
    }

    .asset-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Adjustments for asset-inputs on small screens */
    .asset-inputs {
        min-width: unset;
        /* Remove min-width for small screens */
        flex-basis: 100%;
        /* Make it take full width on small screens */
        width: 100%;
    }

    .asset-inputs.three-cols {
        grid-template-columns: 1fr;
        /* Stack vertically on smaller screens */
    }

    .asset-inputs.pf-nps {
        grid-template-columns: 1fr;
        /* Stack vertically on smaller screens */
    }

    .total-corpus-display {
        text-align: center;
    }

    .chart-row {
        flex-direction: column;
    }

    .half-width {
        margin-bottom: 20px;
    }

    .full-width {
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }

    .chart-wrapper {
        height: 300px;
    }

    .navigation-buttons {
        flex-direction: column;
    }

    .navigation-buttons .btn:only-child {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 4px;
    }
    .tab-content {
        padding: 8px;
        border-radius: 10px;
    }
    .card {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    p, label, .result-label, small {
        font-size: 0.98rem;
    }
    .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .result-item {
        padding: 12px;
        border-radius: 10px;
    }
    .result-value {
        font-size: 1.2rem;
    }
    .expense-table .input-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .goal-row {
        flex-direction: column;
        gap: 0;
        padding: 0 0 10px 0;
        background: none;
        border: none;
        box-shadow: none;
        margin-bottom: 0;
    }
    .goal-inputs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .goal-inputs .form-group {
        width: 100%;
    }
    .goal-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 2px;
    }
    .remove-goal-btn {
        font-size: 1.3rem;
        padding: 8px;
    }
    .asset-label {
        flex-basis: unset;
        width: 100%;
    }
    .asset-allocation-form .card {
        padding: 8px;
    }
    .asset-row {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px 0 6px 0;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 2px;
    }
    .asset-row:last-of-type {
        border-bottom: none;
    }
    .asset-label {
        width: 100%;
        margin-bottom: 2px;
        font-size: 1rem;
        color: var(--text-primary);
    }
    .asset-label small {
        font-size: 0.92em;
        color: var(--text-muted);
        margin-top: 1px;
    }
    .asset-inputs,
    .asset-inputs.three-cols,
    .asset-inputs.pf-nps {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }
    .value-input,
    .contribution-input,
    .return-input {
        width: 100%;
        font-size: 1.05rem;
        padding: 14px 12px;
    }
    .total-corpus-display {
        text-align: left;
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 0;
    }
    .chart-info {
        margin-left: 8px;
        vertical-align: middle;
    }
    .scroll-to-bottom {
        width: 48px;
        height: 48px;
        bottom: 18px;
        right: 18px;
        font-size: 20px;
    }
    .chart-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    .full-width {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .chart-wrapper {
        height: 250px;
    }
}

.hidden {
    display: none !important;
}

/* Chart Styles */
.charts-container {
    margin: 0 auto;
    padding: 0;
}

.chart-section {
    background: var(--glass-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.chart-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

.chart-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.half-width {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
}

.full-width {
    flex: 1 1 100%;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.half-width .chart-wrapper {
    height: 350px;
}

.full-width .chart-wrapper {
    height: 400px;
}

/* New Expense Table Styles */
.expense-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Two columns on larger screens, one on smaller */
    gap: 15px;
    margin-top: 15px;
}

.expense-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expense-table .input-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

/* Adjust labels in expense table */
.expense-table label {
    text-transform: none;
    /* Keep natural capitalization */
    font-weight: 500;
    color: var(--text-primary);
}

/* --- Dynamic Goals Styles --- */
#goals-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.goal-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    /* Align button with bottom of inputs */
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.goal-row:hover {
    border-color: var(--glass-border);
}

.goal-inputs {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.goal-actions {
    flex-shrink: 0;
}

.remove-goal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-goal-btn:hover {
    color: var(--fire-red);
    background: rgba(255, 71, 87, 0.1);
}

.btn-add-goal {
    display: block;
    margin: 25px auto 0;
    width: auto;
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
}

small {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}

/* Tax Section Styling */
.tax-section {
    margin-bottom: 30px;
}

.tax-section h3 {
    color: var(--fire-orange);
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
}

.tax-group {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.tax-group strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
}

/* Standardized Tooltip Styling for .chart-info */
.chart-info {
    position: relative;
    cursor: pointer;
    color: var(--fire-orange);
    font-weight: bold;
    margin-left: 4px;
    display: inline-block;
    font-size: 1em;
    vertical-align: middle;
}

.chart-info[data-tooltip]:hover::after,
.chart-info[data-tooltip]:focus::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 0;
    right: auto;
    transform: translateX(0);
    max-width: 90vw;
    margin-bottom: 5px;
    margin-right: 0;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: normal;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.chart-info[data-tooltip]:hover::before,
.chart-info[data-tooltip]:focus::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 16px;
    right: auto;
    transform: translateX(0);
    border: 6px solid transparent;
    border-top-color: var(--card-bg);
    border-right-color: transparent;
    margin-bottom: -6px;
    margin-right: 0;
    z-index: 1000;
}

/* Remove old tooltip style for label span[title] */
label span[title],
label span[title]:hover::after,
label span[title]:hover::before {
    all: unset;
}

.input-group {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.input-label-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 120px;
}

@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .input-label-group {
        min-width: 0;
    }
}

/* Remove years-left-group and years-left-label if not used elsewhere */
.years-left-group, .years-left-label {
    display: none !important;
}

.mobile-only-label {
    display: none;
}
@media (max-width: 600px) {
    .mobile-only-label {
        display: block;
        font-size: 0.98rem;
        font-weight: 500;
        color: var(--text-primary);
        /* margin-bottom: 2px; */
    }
}

.input-with-tooltip {
    position: relative;
    width: 100%;
    display: block;
}
.input-with-tooltip input {
    width: 100%;
    padding-right: 2.2em;
    box-sizing: border-box;
}
.input-with-tooltip .chart-info {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

.mobile-inline-label {
    display: none;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2px;
}
@media (max-width: 600px) {
    .mobile-inline-label {
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 0;
        vertical-align: middle;
    }
}

/* Methodology Section Styling */
.methodology-intro {
    margin-bottom: 30px;
}

.intro-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.intro-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.intro-content h3 {
    margin: 0 0 15px 0;
    color: var(--fire-orange);
    font-size: 1.4rem;
}

.intro-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.methodology-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fire-orange);
    display: inline-block;
}

/* Formula Cards */
.formula-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.formula-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.formula-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow));
}

.formula-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--fire-orange);
}

.formula-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.formula-number {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-yellow));
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.formula-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.formula-content ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.formula-content li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.formula-example {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--fire-orange);
    padding: 12px 15px;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Chart Cards */
.chart-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.chart-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--fire-blue);
}

.chart-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.chart-card h4 {
    margin: 0 0 15px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.chart-card ul {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.chart-card li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Assumption Cards */
.assumption-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.assumption-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.assumption-card.warning {
    border-left: 4px solid var(--warning-orange);
}

.assumption-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.assumption-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.assumption-icon {
    font-size: 1.5rem;
}

.assumption-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.assumption-card ul {
    margin: 0;
    padding-left: 20px;
}

.assumption-card li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Methodology Details */
.methodology-details {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--fire-blue);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.detail-icon {
    font-size: 1.5rem;
}

.detail-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.detail-card ol, .detail-card ul {
    margin: 0;
    padding-left: 20px;
}

.detail-card li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Resources Section */
.resources-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.resources-card p {
    margin: 0 0 20px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.resources-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.resource-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--fire-orange);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Disclaimer Card */
.disclaimer-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intro-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .intro-icon {
        margin-top: 0;
    }
    
    .formula-cards,
    .chart-cards,
    .assumption-cards,
    .methodology-details {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .formula-header,
    .assumption-header,
    .detail-header {
        gap: 12px;
    }
    
    .formula-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .chart-icon {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .intro-card,
    .formula-card,
    .chart-card,
    .assumption-card,
    .detail-card,
    .resources-card,
    .disclaimer-card {
        padding: 15px;
    }
    
    .formula-example {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .resource-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* User Greeting Styling */
.user-greeting {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.user-greeting h3 {
    margin: 0 0 8px 0;
    color: var(--fire-orange);
    font-size: 1.4rem;
    font-weight: 600;
}

.user-greeting p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* FIRE Progress Bar Styles */
.fire-progress-section {
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--shadow-card);
}

.fire-progress-section h3 {
    color: var(--fire-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.progress-current,
.progress-target {
    text-align: center;
    flex: 1;
}

.progress-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-fire);
    border-radius: 6px;
    width: 0%;
    transition: width 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-percentage {
    position: absolute;
    top: -30px;
    right: 0;
    color: var(--fire-orange);
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--card-bg);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.progress-stat {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

@media (max-width: 600px) {
    .user-greeting {
        padding: 20px;
        margin: 20px 0;
    }

    .user-greeting h3 {
        font-size: 1.3rem;
    }

    .user-greeting p {
        font-size: 1rem;
    }
    
    .fire-progress-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .fire-progress-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-current,
    .progress-target {
        flex: none;
    }
    
    .progress-value {
        font-size: 1.5rem;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-stat {
        flex: none;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}

/* Social Media Sharing Modal */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.share-modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    animation: slideUp 0.3s ease;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.share-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.share-modal-subtitle {
    margin-bottom: 20px;
    text-align: center;
}

.share-modal-subtitle p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.share-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.share-platform-btn {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
}

.share-platform-btn svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.share-platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.share-platform-btn:focus {
    outline: 2px solid var(--fire-orange);
    outline-offset: 2px;
}

/* Platform-specific colors */
.share-platform-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.share-platform-btn.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.share-platform-btn.twitter:hover {
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.share-platform-btn.linkedin:hover {
    border-color: #0A66C2;
    color: #0A66C2;
}

.share-platform-btn.telegram:hover {
    border-color: #0088CC;
    color: #0088CC;
}

.share-platform-btn.email:hover {
    border-color: #EA4335;
    color: #EA4335;
}

.share-platform-btn.download:hover {
    border-color: var(--fire-orange);
    color: var(--fire-orange);
}

.share-platform-btn.copy:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .share-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .share-platform-btn {
        min-height: 70px;
        padding: 12px 6px;
    }
}

.mobile-nav-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 15px 0;
    opacity: 0.5;
}

.mobile-action {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 1.1rem !important;
    font-weight: 500;
    padding: 18px 10px !important;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.2s, background-color 0.2s;
    background: transparent !important;
}

.mobile-action i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: var(--fire-orange);
}

.mobile-action:hover {
    color: var(--fire-orange) !important;
    background: rgba(255, 107, 53, 0.1) !important;
}

/* --- Feedback Modal World-Class Redesign --- */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
    justify-content: center;
    align-items: center;
}

.feedback-content {
    background: #fff;
    margin: 3% auto;
    padding: 0;
    border-radius: 24px;
    width: 95%;
    max-width: 480px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    animation: slideIn 0.4s cubic-bezier(.4,1.4,.6,1);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feedback-header {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: white;
    padding: 32px 36px 22px 36px;
    position: relative;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 2px 12px rgba(255,107,53,0.08);
}

.feedback-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.close-feedback {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.18);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}
.close-feedback:hover {
    background: rgba(255,255,255,0.32);
    transform: scale(1.08);
}

#signin-section {
    text-align: center;
    padding: 38px 32px 38px 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 24px 24px;
    border-top: 1px solid #f3f3f3;
}
.signin-text {
    margin-bottom: 24px;
    color: #495057;
    font-size: 17px;
    font-weight: 500;
}

#feedback-form-section {
    padding: 0 32px 32px 32px;
    background: #fff;
    border-radius: 0 0 24px 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 0 18px 0;
    border-bottom: 1.5px solid #f3f3f3;
    margin-bottom: 18px;
}
.user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.user-details {
    flex: 1;
}
.user-name {
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 3px 0;
    font-size: 17px;
}
.user-email {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.feedback-body {
    padding: 0;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}

.feedback-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.feedback-label.required::after {
    content: "*";
    color: #e74c3c;
    font-weight: bold;
    margin-left: 2px;
}

.feedback-input, .feedback-textarea, .feedback-select {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.feedback-input:focus, .feedback-textarea:focus, .feedback-select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.09);
    transform: translateY(-1px);
}
.feedback-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.rating-stars {
    display: flex;
    gap: 8px;
    font-size: 28px;
    justify-content: center;
    padding: 10px 0 0 0;
}
.star {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.star:hover {
    color: #FFD700;
    transform: scale(1.18);
}
.star.active {
    color: #FFD700;
    animation: starPop 0.3s ease-out;
}
@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.feedback-buttons {
    display: flex;
    gap: 15px;
    margin-top: 18px;
}
.feedback-btn {
    flex: 1;
    padding: 15px 0;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    background: #f8f9fa;
    color: #FF6B35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.04);
}
.feedback-submit {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.13);
}
.feedback-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.18);
}
.feedback-submit:active {
    transform: translateY(0);
}
.feedback-cancel:hover {
    background: #e9ecef;
    color: #495057;
}

.feedback-success {
    text-align: center;
    padding: 40px 20px;
    color: #28a745;
    font-weight: 700;
}
.feedback-success i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #28a745;
}
.feedback-success h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
}
.feedback-success p {
    margin: 0;
    color: #6c757d;
    font-weight: normal;
}

@media (max-width: 600px) {
    .feedback-content {
        margin: 8% auto;
        width: 99%;
        max-width: 99vw;
        border-radius: 16px;
        padding: 0;
    }
    .feedback-header {
        padding: 22px 16px 16px 16px;
        border-radius: 16px 16px 0 0;
    }
    #feedback-form-section {
        padding: 0 10px 18px 10px;
        border-radius: 0 0 16px 16px;
    }
    .user-info {
        padding: 16px 0 10px 0;
        gap: 10px;
    }
    .feedback-form {
        gap: 14px;
    }
    .feedback-btn {
        padding: 13px 0;
        font-size: 15px;
    }
}

.feedback-select {
    color: #2c3e50;
    background: #fff;
}
.feedback-select option {
    color: #2c3e50;
    background: #fff;
}

.chart-info.mobile-tooltip-active::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 140%;
    transform: translateX(-50%);
    z-index: 100;
    background: var(--card-bg, #222);
    color: var(--text-primary, #fff);
    font-size: 1em;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none !important;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    white-space: pre-line;
    min-width: 180px;
    max-width: 90vw;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.2s;
    border: 1px solid var(--glass-border, #444);
}

.chart-info.mobile-tooltip-active::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 132%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom: 7px solid var(--card-bg, #222);
    border-top: none;
    z-index: 101;
}

.chart-wrapper {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: var(--shadow-card);
}

.goal-events-summary {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: var(--shadow-card);
}

.goal-events-summary.empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 40px 20px;
}

.goal-events-summary h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.goal-event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.goal-event-item:last-child {
    border-bottom: none;
}

.goal-event-info {
    flex: 1;
}

.goal-event-name {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.goal-event-details {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.goal-event-impact {
    text-align: right;
    color: var(--fire-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.goal-event-year {
    background: var(--fire-orange);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.import-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.import-section h3 {
    color: var(--fire-orange);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.import-section p {
    color: var(--text-secondary);
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.import-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.import-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.import-btn:active {
    transform: translateY(0);
}

.import-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.8;
}