:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #ff6b6b;
    --text-color: #4a4a4a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    box-sizing: border-box;
}
@font-face {
    font-family: vazir;
    src: url(../fonts/Vazirmatn-Regular.woff2);
}
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    min-height: 100vh;
    font-family: 'vazir';
    color: var(--text-color);
}
.header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    border-bottom: 4px solid var(--secondary-color);
}
.fal-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-top: 2rem;
    overflow: hidden;
}
.fal-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    margin: -60px auto 1rem;
}
.fal-content {
    padding: 2rem;
}
.quote-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 5px;
}
#falInterpretation{
    min-height: 100px;
    max-height: 200px;
}
.interpretation-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-right: 4px solid var(--secondary-color);
}
.btn-fal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-fal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-fal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: var(--transition);
}

.btn-fal:hover::after {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-fal:hover .btn-icon {
    transform: rotate(360deg);
}
