@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;700&display=swap');

/* Custom Fonts */
@font-face {
    font-family: 'IranNastaliq';
    src: url('https://github.com/emenmousavi/tamannah/blob/main/fonts/IranNastaliq.ttf?raw=true') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Digi Darya Bold';
    src: url('https://github.com/emenmousavi/tamannah/blob/main/fonts/Digi%20Darya%20Bold.ttf?raw=true') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: rgba(244, 248, 244, 0.8);
    --text-color: #333;
    --accent-color: #8BC34A;
    --link-color: var(--text-color);
    --link-hover-color: var(--primary-color);
    --header-bg-color: rgba(255, 255, 255, 0.95);
    --footer-bg-color: rgba(51, 51, 51, 0.85);
    --footer-text-color: #eee;
    --player-bg: rgba(255, 255, 255, 0.9);
    --player-border: rgba(255, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    background-color: #333;
    background-image: url('https://github.com/emenmousavi/tamannah/blob/main/images/Screenshot_2025-08-20_182627_upscaled.png?raw=true');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--header-bg-color);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    font-family: 'IranNastaliq', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1;
}

/* Desktop Nav */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: var(--link-color);
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

header nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

header nav a:hover {
    color: var(--link-hover-color);
}

header nav a:hover::before {
    width: 100%;
}

/* Hamburger & Mobile Nav Default Hidden */
.hamburger, 
.mobile-nav {
    display: none;
}

/* Main Content */
main {
    padding-top: 90px;
    background-color: var(--secondary-color);
    padding-bottom: 40px;
    min-height: calc(100vh - 150px);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    border-radius: 8px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poet-image-container {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.poet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   Poet Logo Image Responsive Styles
   ========================================== */
.poet-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.poet-logo-img {
    max-width: 380px;  /* حداکثر عرض لوگو در دسکتاپ */
    width: 100%;       /* فیت شدن با عرض صفحه در ابعاد کوچک‌تر */
    height: auto;      /* حفظ تناسب ارتفاع و عرض */
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1)); /* افکت سایه ملایم برای جلوه بهتر */
}

/* هماهنگی اندازه لوگو در موبایل */
@media (max-width: 768px) {
    .poet-logo-img {
        max-width: 280px; /* اندازه متناسب برای تبلت و موبایل */
    }
}

@media (max-width: 480px) {
    .poet-logo-img {
        max-width: 220px; /* اندازه متناسب برای موبایل‌های کوچک */
    }
}

.hero h2 {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 30px;
}

.telegram-section {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    text-align: center;
}

.telegram-section p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.telegram-link svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    fill: currentColor;
}

.section {
    padding: 50px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    display: block; /* تغییر از inline-block به block */
    width: 100%;    /* اشغال کل عرض والد برای وسط‌چین شدن کامل */
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.about-section-content,
.books-section-content,
.declamation-container,
.poem-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-section p,
.books-text p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.books-image-container {
    margin-bottom: 25px;
    text-align: center;
}

.books-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.books-link-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.books-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.books-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
}

.books-link svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    fill: none;
    stroke: currentColor;
}

/* Music Player */
.declamation-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    background-color: var(--player-bg);
    border: 1px solid var(--player-border);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.player-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.player-info p {
    font-size: 0.95rem;
    color: #666;
}

.controls-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.control-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.control-button:hover {
    transform: scale(1.1);
}

.control-button svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.play-button {
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.play-button svg {
    width: 28px;
    height: 28px;
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-wrapper {
    flex-grow: 1;
    direction: ltr;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.85rem;
    color: #666;
    flex-shrink: 0;
    direction: ltr;
}

#poem-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: var(--primary-color);
}

.poem-line {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
    backdrop-filter: blur(5px);
    color: var(--footer-text-color);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    color: var(--footer-text-color);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--footer-text-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.15);
}

.social-links a[title="تلگرام"]:hover { color: #0088cc; }
.social-links a[title="اینستاگرام"]:hover { color: #C13584; }
.social-links a[title="ایمیل"]:hover { color: #52ce1c; }

footer p {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================
   RESPONSIVE STYLES (Mobile & Tablet)
   =================================================== */

@media (max-width: 768px) {
    /* مخفی کردن منوی دسکتاپ */
    header nav {
        display: none !important;
    }

    /* تنظیم لایه هدر برای جلوگیری از تداخل */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    /* دکمه همبرگری */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 10001; /* بالاترین لایه برای کلیک خوردن */
        padding: 2px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* استایل تغییر شکل همبرگر به ایکس (X) هنگام باز شدن */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* منوی کشویی موبایل */
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: 60px; /* دقیقا زیر هدر */
        right: -100%; /* در حالت عادی خارج از صفحه سمت راست */
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--header-bg-color);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        transition: right 0.3s ease-in-out;
        z-index: 10000;
        padding-top: 20px;
    }

    /* زمانی که منو باز می‌شود */
    .mobile-nav.active {
        right: 0 !important; /* ورود منو به داخل صفحه */
    }

    .mobile-nav ul {
        list-style: none !important;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-nav li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-nav a {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--link-color);
        text-decoration: none;
        display: block;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.8rem;
    }

    .poet-info h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   استایل‌های نمایش شعر دو مصراعی (کلاسیک)
   ========================================== */

.poem-container {
    text-align: center;
    padding: 30px;
}

#poem-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* هر بیت شعر */
.poem-couplet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 15px auto;
    gap: 20px;
}

/* هر مصراع */
.poem-hemistich {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.poem-hemistich.first {
    text-align: right;
}

.poem-hemistich.second {
    text-align: left;
}

/* تنظیمات واکنش‌گرا برای موبایل */
@media (max-width: 600px) {
    .poem-couplet {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .poem-hemistich.first,
    .poem-hemistich.second {
        text-align: center;
    }
}

/* ==========================================
   بخش دلنوشته‌ها - قالب استاندارد مشابه سایر بخش‌ها
   ========================================== */
.guestbook-section-box {
    max-width: 850px;
    margin: 30px auto 0 auto;
    background-color: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    text-align: center !important;
}

.guestbook-section-box .guestbook-cta-title {
    color: var(--primary-color) !important;
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.guestbook-section-box .guestbook-cta-text {
    color: var(--text-color) !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
}

.guestbook-section-box .guestbook-cta-btn {
    display: inline-block !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-family: 'Vazirmatn', sans-serif !important;
    font-weight: 700 !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.guestbook-section-box .guestbook-cta-btn:hover {
    background-color: var(--accent-color) !important;
    transform: scale(1.05) !important;
}

/* ===================================================
   Monarch Butterfly (Green Variant - Based on Image)
   =================================================== */

.butterfly-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* مسیر حرکت پروانه */
.butterfly-container {
    position: absolute;
    width: 60px; /* اندازه کمی بزرگتر برای نمایش بهتر جزئیات مونارک */
    height: 60px;
    opacity: 0;
    animation: flyPath 7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.butterfly {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotate(-30deg) rotateX(35deg);
}

/* بال چپ - طرح دقیق پروانه مونارک */
.butterfly-wing-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3C!-- پس‌زمینه بال و حاشیه مشکی --%3E%3Cpath d='M95,100 C70,20 10,0 5,30 C0,60 30,100 95,120 C50,130 10,140 25,185 C45,200 85,170 95,135 Z' fill='%231b2613'/%3E%3C!-- بخش‌های داخلی سبز --%3E%3Cg fill='%234CAF50' opacity='0.9'%3E%3Cpath d='M90,90 C65,25 20,15 15,30 C12,45 35,70 85,95 Z'/%3E%3Cpath d='M85,100 C45,85 20,60 12,50 C10,65 30,85 80,108 Z'/%3E%3Cpath d='M85,125 C50,135 25,145 32,175 C45,185 75,160 85,140 Z'/%3E%3C/g%3E%3C!-- خال‌های سفید روی حاشیه مشکی --%3E%3Cg fill='%23ffffff' opacity='0.8'%3E%3Ccircle cx='10' cy='25' r='2'/%3E%3Ccircle cx='6' cy='35' r='1.5'/%3E%3Ccircle cx='8' cy='48' r='1.5'/%3E%3Ccircle cx='15' cy='65' r='2'/%3E%3Ccircle cx='22' cy='160' r='1.5'/%3E%3Ccircle cx='30' cy='175' r='2'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
    transform-origin: right center;
    animation: flapLeft 0.22s ease-in-out infinite alternate;
}

/* بال راست - عکس و متقارن بال چپ */
.butterfly-wing-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3C!-- پس‌زمینه بال و حاشیه مشکی --%3E%3Cpath d='M5,100 C30,20 90,0 95,30 C100,60 70,100 5,120 C50,130 90,140 75,185 C55,200 15,170 5,135 Z' fill='%231b2613'/%3E%3C!-- بخش‌های داخلی سبز --%3E%3Cg fill='%234CAF50' opacity='0.9'%3E%3Cpath d='M10,90 C35,25 80,15 85,30 C88,45 65,70 15,95 Z'/%3E%3Cpath d='M15,100 C55,85 80,60 88,50 C90,65 70,85 20,108 Z'/%3E%3Cpath d='M15,125 C50,135 75,145 68,175 C55,185 25,160 15,140 Z'/%3E%3C/g%3E%3C!-- خال‌های سفید روی حاشیه مشکی --%3E%3Cg fill='%23ffffff' opacity='0.8'%3E%3Ccircle cx='90' cy='25' r='2'/%3E%3Ccircle cx='94' cy='35' r='1.5'/%3E%3Ccircle cx='92' cy='48' r='1.5'/%3E%3Ccircle cx='85' cy='65' r='2'/%3E%3Ccircle cx='78' cy='160' r='1.5'/%3E%3Ccircle cx='70' cy='175' r='2'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
    transform-origin: left center;
    animation: flapRight 0.22s ease-in-out infinite alternate;
}

/* بدن و شاخک‌های پروانه */
.butterfly::before {
    content: '';
    position: absolute;
    top: 20%;
    left: calc(50% - 1.5px);
    width: 3px;
    height: 55%;
    background-color: #0f170a;
    border-radius: 3px;
    z-index: 2;
}

/* انیمیشن بال‌زدن سه‌بعدی */
@keyframes flapLeft {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-68deg); }
}

@keyframes flapRight {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(68deg); }
}

/* مسیر پرواز */
@keyframes flyPath {
    0% {
        opacity: 0;
        top: 90%;
        left: 105%;
        transform: scale(0.6) translateY(0);
    }
    10% {
        opacity: 0.95;
    }
    30% {
        top: 65%;
        left: 70%;
        transform: scale(0.9) translateY(-25px);
    }
    60% {
        top: 35%;
        left: 35%;
        transform: scale(1) translateY(20px);
    }
    85% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        top: -10%;
        left: -10%;
        transform: scale(0.7) translateY(-10px);
    }
}

/* تنظیم رنگ سبز درخشان‌تر برای حالت تم تاریک (Dark Mode) */
[data-theme="dark"] .butterfly-wing-left {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M95,100 C70,20 10,0 5,30 C0,60 30,100 95,120 C50,130 10,140 25,185 C45,200 85,170 95,135 Z' fill='%230e140a'/%3E%3Cg fill='%2381C784' opacity='0.95'%3E%3Cpath d='M90,90 C65,25 20,15 15,30 C12,45 35,70 85,95 Z'/%3E%3Cpath d='M85,100 C45,85 20,60 12,50 C10,65 30,85 80,108 Z'/%3E%3Cpath d='M85,125 C50,135 25,145 32,175 C45,185 75,160 85,140 Z'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.9'%3E%3Ccircle cx='10' cy='25' r='2'/%3E%3Ccircle cx='6' cy='35' r='1.5'/%3E%3Ccircle cx='8' cy='48' r='1.5'/%3E%3Ccircle cx='15' cy='65' r='2'/%3E%3Ccircle cx='22' cy='160' r='1.5'/%3E%3Ccircle cx='30' cy='175' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

[data-theme="dark"] .butterfly-wing-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M5,100 C30,20 90,0 95,30 C100,60 70,100 5,120 C50,130 90,140 75,185 C55,200 15,170 5,135 Z' fill='%230e140a'/%3E%3Cg fill='%2381C784' opacity='0.95'%3E%3Cpath d='M10,90 C35,25 80,15 85,30 C88,45 65,70 15,95 Z'/%3E%3Cpath d='M15,100 C55,85 80,60 88,50 C90,65 70,85 20,108 Z'/%3E%3Cpath d='M15,125 C50,135 75,145 68,175 C55,185 25,160 15,140 Z'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.9'%3E%3Ccircle cx='90' cy='25' r='2'/%3E%3Ccircle cx='94' cy='35' r='1.5'/%3E%3Ccircle cx='92' cy='48' r='1.5'/%3E%3Ccircle cx='85' cy='65' r='2'/%3E%3Ccircle cx='78' cy='160' r='1.5'/%3E%3Ccircle cx='70' cy='175' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
}
