  /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background: #0a0a0f;
    color: #f0e6d2;
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(28, 58, 173, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(200, 80, 192, 0.1) 0%, transparent 20%);
}

.container {
    max-width: 1200px;
    margin: 0 40px 0 0; /* moves container left */
    padding: 20px;
}

/* Header */
.header1 {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1) 0%, rgba(28, 58, 173, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}




@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    background: linear-gradient(135deg, #7b61ff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.tagline {
    font-size: 16px;
    color: #b8b0d0;
    max-width: 600px;
}

/* Language Selector */
     .language-selector {
    position: absolute;
    top: 70px;
    left: 0;  
    margin-left:700px;
    background: rgba(18, 18, 30, 0.9);
    padding: 10px 10px;
    border-radius: 30px;
    border: 1px solid rgba(123, 97, 255, 0.3);
    backdrop-filter: blur(10px);
}

.language-selector select {
    background: transparent;
    color: #f0e6d2;
    border: none;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.language-selector select option {
    background: #12121e;
    color: #f0e6d2;
}

/* Cards */
.card {
    background: rgba(18, 18, 30, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-header {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.2) 0%, rgba(28, 58, 173, 0.2) 100%);
    padding: 25px;
    border-bottom: 1px solid rgba(123, 97, 255, 0.1);
}

.card-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #f0e6d2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-body {
    padding: 30px;
}

/* Form */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #b8b0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(30, 30, 46, 0.8);
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 12px;
    color: #f0e6d2;
    font-size: 1rem;
    font-family: 'Merriweather', serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #7b61ff;
    box-shadow: 0 0 0 2px rgba(123, 97, 255, 0.2);
}

.btn-calculate {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #7b61ff 0%, #ff6b9d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 97, 255, 0.3);
}

.info-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(28, 58, 173, 0.1);
    border-radius: 12px;
    border-left: 4px solid #7b61ff;
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #b8b0d0;
}

/* Numerology Grid */
.numerology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.numerology-item {
    text-align: center;
    padding: 25px;
    background: rgba(30, 30, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    transition: transform 0.3s ease;
}

.numerology-item:hover {
    transform: translateY(-5px);
}

.numerology-value {
    font-size: 25px;
    font-weight: bold;
    background: linear-gradient(135deg, #7b61ff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.numerology-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f0e6d2;
    margin-bottom: 8px;
}

.numerology-desc {
    font-size: 0.9rem;
    color: #b8b0d0;
}

/* Chart */
.chart-container {
    height: 300px;
    margin-top: 30px;
    background: rgba(30, 30, 46, 0.6);
    border-radius: 15px;
    padding: 20px;
}

/* Tarot Spread */
.tarot-spread {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tarot-position {
    background: rgba(30, 30, 46, 0.6);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #7b61ff;
}

.position-label {
    display: inline-block;
    background: linear-gradient(135deg, #7b61ff 0%, #ff6b9d 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.tarot-card-display {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card-image img:hover {
    transform: scale(1.03);
}

.card-info h3 {
    font-size: 1.8rem;
    color: #f0e6d2;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.card-type {
    color: #ff6b9d;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.card-meaning, .card-interpretation {
    margin-bottom: 20px;
}

.card-meaning h4, .card-interpretation h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8b0d0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Report Sections */
.report-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(123, 97, 255, 0.2);
}

.report-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #f0e6d2;
    font-family: 'Cinzel', serif;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.insight-item {
    background: rgba(30, 30, 46, 0.8);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(123, 97, 255, 0.2);
    transition: all 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-5px);
    border-color: #7b61ff;
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.insight-item h4 {
    color: #f0e6d2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Energy Meters */
.energy-meter {
    margin-bottom: 20px;
}

.energy-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #b8b0d0;
}

.energy-bar {
    height: 12px;
    background: rgba(30, 30, 46, 0.8);
    border-radius: 6px;
    overflow: hidden;
}

.energy-fill {
    height: 100%;
    background: linear-gradient(90deg, #7b61ff 0%, #ff6b9d 100%);
    border-radius: 6px;
    transition: width 1s ease-in-out;
}

.energy-value {
    text-align: right;
    margin-top: 5px;
    color: #7b61ff;
    font-weight: bold;
}

/* Recommendations */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.recommendation {
    background: rgba(30, 30, 46, 0.6);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff6b9d;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rec-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.btn-action {
    padding: 15px 30px;
    background: rgba(123, 97, 255, 0.1);
    color: #f0e6d2;
    border: 1px solid rgba(123, 97, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Merriweather', serif;
}

.btn-action:hover {
    background: rgba(123, 97, 255, 0.2);
    border-color: #7b61ff;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #b8b0d0;
    font-size:10px;
    border-top: 1px solid rgba(123, 97, 255, 0.2);
}

.copyright {
    margin-top: 15px;
    color: #7b61ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
    
    .tarot-card-display {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .numerology-grid {
        grid-template-columns: 1fr;
    }
    
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .card-header, .card-body {
        padding: 20px;
    }
    
    .insights-grid, .recommendations {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .language-selector {
        position: relative;
        top: -20px;
        left: auto;
        transform: none;
        margin: 0 auto;
        padding: 8px 10px;
    }
}

