.astrology-section {
    min-height: 100vh;
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
}

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0B0B2A, #1A1A3A);
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    animation: twinkle 4s infinite;
}

.chart-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(20, 20, 30, 0.95);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
}

.chart-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro-text {
    text-align: center;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.birth-data-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-group input {
    padding: 0.8rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.generate-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(255, 140, 0, 0.2));
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(255, 140, 0, 0.3));
}

.chart-result {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.chart-visual {
    margin-bottom: 2rem;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
}

.chart-interpretation {
    margin-top: 3rem;
}

.interpretation-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.section {
    background: rgba(30, 30, 40, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.section h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    opacity: 0.9;
}

.section ul li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .chart-container {
        padding: 1rem;
    }

    .chart-container h1 {
        font-size: 2rem;
    }

    .birth-data-form {
        grid-template-columns: 1fr;
    }
}

/* Loader animáció a generálás közben */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-light);
    animation: spin 1s infinite linear;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Canvas stílusok */
#chartCanvas {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 30, 0.5);
    border-radius: 50%;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

/* Suggestions doboz a városkereséshez */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 40, 0.95);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestions div {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestions div:hover {
    background: rgba(138, 43, 226, 0.2);
}

/* Új szakaszok stílusai */
.mayan-info, .numerology-info, .chinese-info, .advanced-info {
    background: rgba(40, 40, 50, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    margin-top: 1rem;
}

.mayan-info h3, .numerology-info h3, .chinese-info h3, .advanced-info h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.mayan-info p, .numerology-info p, .chinese-info p, .advanced-info p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
}

.mayan-info strong, .numerology-info strong, .chinese-info strong, .advanced-info strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.advanced-info h4 {
    color: var(--primary-orange);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding-bottom: 0.5rem;
}

.advanced-info h4:first-child {
    margin-top: 0;
}

/* Májás naptár speciális stílusok */
.mayan-info {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(138, 43, 226, 0.1));
    border-color: rgba(255, 140, 0, 0.3);
}

/* Numerológia speciális stílusok */
.numerology-info {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(255, 140, 0, 0.1));
    border-color: rgba(138, 43, 226, 0.3);
}

/* Kínai asztrológia speciális stílusok */
.chinese-info {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-color: rgba(255, 0, 0, 0.3);
}

/* Haladó asztrológia speciális stílusok */
.advanced-info {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.1));
    border-color: rgba(0, 255, 255, 0.3);
}

/* Részletes elemzés stílusai */
.detailed-info {
    background: rgba(40, 40, 50, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    margin-top: 1rem;
}

.planet-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.planet-card {
    background: rgba(30, 30, 40, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.planet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.planet-card h5 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    padding-bottom: 0.5rem;
}

.planet-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.strengths-challenges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.strengths, .challenges {
    background: rgba(30, 30, 40, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.strengths {
    border-left: 4px solid #4CAF50;
}

.challenges {
    border-left: 4px solid #FF9800;
}

.strengths h5, .challenges h5 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.strengths ul, .challenges ul {
    list-style: none;
    padding: 0;
}

.strengths li, .challenges li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
}

.strengths li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.challenges li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #FF9800;
    font-weight: bold;
}

.spiritual-lessons, .house-focus {
    background: rgba(30, 30, 40, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    margin: 1.5rem 0;
}

.spiritual-lessons h4, .house-focus h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.spiritual-lessons ul, .house-focus ul {
    list-style: none;
    padding: 0;
}

.spiritual-lessons li, .house-focus li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.spiritual-lessons li::before {
    content: '🔑';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.house-focus li::before {
    content: '🏠';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

/* Responsive design az új szakaszokhoz */
@media (max-width: 768px) {
    .mayan-info, .numerology-info, .chinese-info, .advanced-info, .detailed-info {
        padding: 1rem;
        margin-top: 0.8rem;
    }
    
    .mayan-info h3, .numerology-info h3, .chinese-info h3, .advanced-info h3 {
        font-size: 1.1rem;
    }
    
    .advanced-info h4 {
        font-size: 1rem;
    }
    
    .planet-analysis {
        grid-template-columns: 1fr;
    }
    
    .strengths-challenges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .planet-card {
        padding: 1rem;
    }
} 