.retirement .calculator-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.retirement .result-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #667eea;
}

.retirement .result-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.retirement .result-value {
    font-size: 2.2em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.retirement .result-subtitle {
    color: #666;
    font-size: 1em;
}

.retirement .chart-container {
    margin-top: 30px;
    height: 400px;
    position: relative;
}

.retirement .progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 20px;
    margin: 15px 0;
    overflow: hidden;
}

.retirement .progress-fill {
    background: linear-gradient(90deg, #1e84ec, #764ba2);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
    width: 0%;
}

.retirement .tips-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.retirement .tips-section h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.retirement .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.retirement .tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .retirement .calculator-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .retirement .header {
        padding: 20px;
    }
    
    .retirement .header h1 {
        font-size: 2em;
    }
}

.retirement .loading {
    opacity: 0.6;
    pointer-events: none;
}

.retirement .fade-in {
    animation: fadeIn 0.5s ease-in;
}

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