/* Hero Section */
.numerology-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(138, 43, 226, 0.2));
    position: relative;
    overflow: hidden;
}

.mystical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sacred-geometry {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/sacred-geometry.png');
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/numbers-bg.png');
    opacity: 0.05;
    animation: float 20s linear infinite;
}

/* Calculator Container */
.calculator-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Mystical Background */
.mystical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.sacred-geometry {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/sacred-geometry.svg') center/cover no-repeat;
    animation: rotate 60s linear infinite;
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/floating-symbols.svg') center/cover no-repeat;
    animation: float 30s ease-in-out infinite;
}

/* Calculator Content */
.calculator-content {
    position: relative;
    z-index: 1;
}

.calculator-content h1 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

.description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Calculator Form */
.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: rgba(156, 39, 176, 0.7);
    box-shadow: 0 0 10px rgba(156, 39, 176, 0.2);
    outline: none;
}

.calculate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #7b2ff7, #f72f93);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.calculate-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.calculate-btn:hover i {
    transform: rotate(360deg);
}

/* Result Section */
.result-section {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    animation: fadeIn 0.5s ease-out;
}

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

.result-number {
    text-align: center;
    margin-bottom: 2rem;
}

.result-number h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.number-display {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #7b2ff7, #f72f93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.result-meaning {
    margin-bottom: 2rem;
}

.result-meaning h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.result-meaning p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.additional-info {
    margin-top: 2rem;
}

.additional-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.analysis-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.analysis-category h4 {
    color: #9c27b0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analysis-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-category li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.analysis-category li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .calculator-content h1 {
        font-size: 2rem;
    }
    
    .number-display {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .result-section {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* Eredmény szekció bővítése */
.traits-section, .challenges-section {
    margin: 1.5rem 0;
}

.traits-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.traits-section li {
    padding: 0.5rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.traits-section li::before {
    content: "✧";
    color: var(--primary-purple);
}

.number-breakdown {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.breakdown-item {
    background: rgba(30, 30, 40, 0.95);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    display: grid;
    gap: 0.5rem;
}

.breakdown-item .label {
    color: var(--primary-purple);
    font-weight: bold;
}

.breakdown-item .value {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.breakdown-item .meaning {
    font-size: 0.9rem;
    opacity: 0.8;
}

.master-number-info {
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(255, 140, 0, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.master-number-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.examples-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
}

.examples-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.examples-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.examples-section li {
    padding: 0.8rem 1.2rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.examples-section li::before {
    content: "★";
    color: var(--primary-purple);
} 