/* Minified Otiman Cake CSS with Footer Fix */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Cinzel', serif;
    background-color: #050510
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/otiman_cake_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.65);
    animation: slowZoom 20s infinite alternate
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 140px 20px 80px 20px
}

.anim-entry-1 {
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0
}

.anim-entry-2 {
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    opacity: 0
}

.anim-entry-3 {
    animation: fadeInUp 1.5s ease-out 1s forwards;
    opacity: 0
}

.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate
}

.coming-soon {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    animation: floatReverse 7s ease-in-out infinite, pulse 4s infinite;
    max-width: 90%
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: var(--font-fa);
    font-weight: 600
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2)
}

.oracle-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 2s ease-out 2s forwards;
    opacity: 0;
    position: relative
}

.oracle-glow-bg {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 5px;
    z-index: -1;
    animation: pulse 3s infinite
}

.oracle-btn {
    width: 150px;
    height: 150px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: float 4s ease-in-out infinite reverse, pulseGlow 3s infinite alternate
}

.oracle-btn:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1))
}

.oracle-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffd700;
    animation: ripple 2s infinite;
    top: 0;
    left: 0
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

.oracle-cta {
    font-family: var(--font-fa);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    margin-top: 10px;
    pointer-events: none
}

.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px)
}

.modal-content {
    background: linear-gradient(135deg, #1a0b00 0%, #2e1a0f 100%);
    border: 3px double #ffd700;
    outline: 2px solid #b8860b;
    outline-offset: 5px;
    padding: 60px 40px;
    border-radius: 5px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), inset 0 0 50px rgba(0, 0, 0, 0.8);
    animation: slowZoom 0.5s ease-out
}

.close-btn {
    color: #d4af37;
    float: right;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s
}

.close-btn:hover {
    color: #fff
}

.oracle-text {
    font-family: var(--font-fa);
    color: #fff;
    font-size: 1.6rem;
    line-height: 2.2;
    white-space: pre-line;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)
}

.oracle-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    width: 60%;
    margin: 30px auto
}

.oracle-interpretation {
    font-family: var(--font-fa);
    color: #e0d0c0;
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #d4af37
}

.footer {
    position: relative;
    margin-top: -60px;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #aaa;
    font-family: var(--font-fa);
    font-size: 0.9rem;
    z-index: 50;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent)
}

.footer-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s
}

.footer-link:hover {
    color: #fff;
    text-shadow: 0 0 5px #ffd700
}

:root {
    --font-en-script: 'Great Vibes', cursive;
    --font-en-serif: 'Cinzel', serif;
    --font-fa: 'Vazirmatn', sans-serif;
    --font-fa-h: 'Lalezar', system-ui
}

body {
    font-family: var(--font-fa)
}

.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    z-index: 100;
    color: #ffd700;
    font-family: var(--font-en-serif);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    gap: 10px;
    align-items: center
}

.lang-opt {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s
}

.lang-opt:hover,
.lang-opt.active {
    opacity: 1;
    text-shadow: 0 0 10px #ffd700;
    font-weight: bold
}

.divider {
    opacity: 0.4
}

html[lang="fa"] .brand-name {
    font-family: var(--font-fa-h);
    font-weight: 400;
    font-size: 5.5rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5), 0 0 50px #ffea00
}

html[lang="fa"] .coming-soon {
    font-family: var(--font-fa);
    font-weight: 700;
    font-size: 2rem
}

html[lang="en"] .brand-name {
    font-family: var(--font-en-script)
}

html[lang="en"] .coming-soon {
    font-family: var(--font-en-serif)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(15px)
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5)
    }

    to {
        text-shadow: 0 0 40px #ffea00
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6))
    }

    to {
        filter: drop-shadow(0 0 35px rgba(255, 200, 50, 0.9))
    }
}

@media(max-width:768px) {
    .content {
        padding-top: 100px
    }

    .brand-name {
        font-size: 2.2rem;
        margin-top: 40px
    }

    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding: 8px 15px
    }

    .oracle-btn {
        width: 120px;
        height: 120px
    }

    .oracle-cta {
        font-size: 1rem
    }

    .social-btn {
        font-size: 0.9rem;
        padding: 8px 15px
    }
}