body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.app-container {
    max-width: 900px;
    margin: 0 auto;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.language-selector-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selector-container label {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
}

.language-selector {
    display: inline-block;
    width: auto;
    min-width: 150px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.card-body {
    padding: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-generate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.chart-placeholder {
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zodiac-wheel {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.wheel-inner {
    text-align: center;
    color: #333;
}

.wheel-icon {
    font-size: 4rem;
    color: #764ba2;
}

.big3-container {
    margin-top: 1rem;
}

.big3-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    transition: transform 0.2s;
}

.big3-item:hover {
    transform: translateY(-5px);
}

.big3-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.big3-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.big3-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.chart-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
}

.elements-legend {
    display: flex;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.horoscope-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.premium-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.premium-card .card-body {
    color: #ffffff;
}

.premium-card .section-title {
    color: #ffffff;
}

.premium-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-premium-pdf {
    background: #9333ea;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-premium-pdf:hover {
    background: #7e22ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.5);
    color: #ffffff;
}

.btn-premium-subscribe {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-premium-subscribe:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

@media (max-width: 768px) {
    .app-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .big3-item {
        margin-bottom: 1rem;
    }
}