@charset "UTF-8";
/*
Theme Name: نام پوسته
Theme URI: https://www.arshiaalavi.ir
Author:
Author URI: https://www.arshiaalavi.ir
Description: یک پوسته اختصاصی
Requires at least: WordPress 6.3.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/
:root {
    --dark-bg: #0a0a0a;
    --accent-color: #6b17e8;
    --text-color: #ffffff;
    --secondary-color: #17e8b7;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Press Start 2P', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* استایل پایه برای انیمیشن‌های اسکرول */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

/* استایل دکمه‌ها */
.pixel-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 12px 24px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #4b10a3;
    text-transform: uppercase;
}

.pixel-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #0fa082;
}

.pixel-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0fa082;
}

/* بک‌گراند پیکسلی متحرک */
.pixel-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}/* فونت فارسی */
@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/npm/@font-face/vazirmatn@33.003/dist/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/npm/@font-face/vazirmatn@33.003/dist/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* تنظیمات پایه */
:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --accent-color: #6b17e8;
    --accent-light: #8a42f5;
    --accent-dark: #5612b8;
    --text-color: #ffffff;
    --secondary-color: #17e8b7;
    --secondary-dark: #12b892;
    --blue-glow: #1756e8;
    --grid-color: rgba(107, 23, 232, 0.1);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Vazirmatn', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    direction: rtl;
}

/* هیرو سکشن */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    perspective: 1000px;
}

/* افکت‌های نور */
.light-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 23, 232, 0.4) 0%, rgba(107, 23, 232, 0) 70%);
    top: -20%;
    right: -20%;
    filter: blur(40px);
    animation: float 20s infinite alternate ease-in-out;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.glow-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(23, 232, 183, 0.3) 0%, rgba(23, 232, 183, 0) 70%);
    top: 10%;
    left: -10%;
    animation-delay: -5s;
    animation-duration: 15s;
    mix-blend-mode: screen;
}

.light-arc {
    position: absolute;
    top: -50vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at top, rgba(23, 86, 232, 0.4) 0%, rgba(23, 86, 232, 0) 60%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
    animation: pulse 8s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

/* افکت گرید سایبرپانک */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(var(--grid-color) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.3;
    transform: perspective(500px) rotateX(60deg) scale(2.5, 2) translateY(10vh);
    transform-origin: center bottom;
    animation: grid-animation 15s infinite linear;
    pointer-events: none;
}

@keyframes grid-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

/* بک‌گراند ستاره‌ای پیکسلی */
.pixel-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.pixel-stars::before,
.pixel-stars::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    box-shadow:
            10vw 10vh 1px rgba(255,255,255,0.8),
            20vw 20vh 1px rgba(255,255,255,0.7),
            30vw 30vh 1px rgba(255,255,255,0.9),
            40vw 40vh 1px rgba(255,255,255,0.6),
            50vw 50vh 1px rgba(255,255,255,0.8),
            60vw 60vh 1px rgba(255,255,255,0.7),
            70vw 70vh 1px rgba(255,255,255,0.9),
            80vw 80vh 1px rgba(255,255,255,0.8),
            90vw 90vh 1px rgba(255,255,255,0.7),
            5vw 15vh 1px rgba(255,255,255,0.6),
            15vw 25vh 1px rgba(255,255,255,0.8),
            25vw 35vh 1px rgba(255,255,255,0.7),
            35vw 45vh 1px rgba(255,255,255,0.9),
            45vw 55vh 1px rgba(255,255,255,0.6),
            55vw 65vh 1px rgba(255,255,255,0.8),
            65vw 75vh 1px rgba(255,255,255,0.7),
            75vw 85vh 1px rgba(255,255,255,0.9),
            85vw 95vh 1px rgba(255,255,255,0.8),
            95vw 5vh 1px rgba(255,255,255,0.7);
    animation: twinkle 5s infinite alternate;
}

.pixel-stars::after {
    animation-delay: 2.5s;
    box-shadow:
            5vw 5vh 1px rgba(255,255,255,0.8),
            15vw 15vh 1px rgba(255,255,255,0.7),
            25vw 25vh 1px rgba(255,255,255,0.9),
            35vw 35vh 1px rgba(255,255,255,0.6),
            45vw 45vh 1px rgba(255,255,255,0.8),
            55vw 55vh 1px rgba(255,255,255,0.7),
            65vw 65vh 1px rgba(255,255,255,0.9),
            75vw 75vh 1px rgba(255,255,255,0.8),
            85vw 85vh 1px rgba(255,255,255,0.7),
            95vw 95vh 1px rgba(255,255,255,0.6),
            10vw 20vh 1px rgba(255,255,255,0.8),
            20vw 30vh 1px rgba(255,255,255,0.7),
            30vw 40vh 1px rgba(255,255,255,0.9),
            40vw 50vh 1px rgba(255,255,255,0.6),
            50vw 60vh 1px rgba(255,255,255,0.8),
            60vw 70vh 1px rgba(255,255,255,0.7),
            70vw 80vh 1px rgba(255,255,255,0.9),
            80vw 90vh 1px rgba(255,255,255,0.8),
            90vw 10vh 1px rgba(255,255,255,0.7);
}

/* محتوای هیرو */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 90%;
    padding: 20px;
    animation: content-fade-in 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.3);
    box-shadow: 0 0 30px rgba(107, 23, 232, 0.1);
    border: 1px solid rgba(107, 23, 232, 0.1);
}

@keyframes content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* انیمیشن‌ها */
@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
}

/* عنوان اصلی */
.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.pixel-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(2.5rem, 10vw, 6rem);
    color: var(--text-color);
    text-shadow:
            0 0 10px rgba(255, 255, 255, 0.7),
            4px 4px 0 var(--accent-color);
    letter-spacing: 5px;
    margin: 0;
    display: inline-block;
    position: relative;
    animation: text-flicker 5s infinite alternate;
}

/* افکت گلیچ برای عنوان */
.pixel-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 3s infinite linear alternate-reverse;
}

.pixel-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-light);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 5s infinite linear alternate-reverse;
}

@keyframes noise-anim {
    0% {
        clip: rect(61px, 9999px, 94px, 0);
    }
    5% {
        clip: rect(33px, 9999px, 5px, 0);
    }
    10% {
        clip: rect(67px, 9999px, 70px, 0);
    }
    15% {
        clip: rect(92px, 9999px, 22px, 0);
    }
    20% {
        clip: rect(31px, 9999px, 59px, 0);
    }
    25% {
        clip: rect(5px, 9999px, 52px, 0);
    }
    30% {
        clip: rect(82px, 9999px, 39px, 0);
    }
    35% {
        clip: rect(56px, 9999px, 47px, 0);
    }
    40% {
        clip: rect(70px, 9999px, 27px, 0);
    }
    45% {
        clip: rect(67px, 9999px, 36px, 0);
    }
    50% {
        clip: rect(1px, 9999px, 95px, 0);
    }
    55% {
        clip: rect(25px, 9999px, 15px, 0);
    }
    60% {
        clip: rect(93px, 9999px, 37px, 0);
    }
    65% {
        clip: rect(87px, 9999px, 36px, 0);
    }
    70% {
        clip: rect(64px, 9999px, 94px, 0);
    }
    75% {
        clip: rect(58px, 9999px, 71px, 0);
    }
    80% {
        clip: rect(45px, 9999px, 2px, 0);
    }
    85% {
        clip: rect(89px, 9999px, 14px, 0);
    }
    90% {
        clip: rect(18px, 9999px, 79px, 0);
    }
    95% {
        clip: rect(14px, 9999px, 49px, 0);
    }
    100% {
        clip: rect(96px, 9999px, 91px, 0);
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(35px, 9999px, 36px, 0);
    }
    5% {
        clip: rect(82px, 9999px, 2px, 0);
    }
    10% {
        clip: rect(26px, 9999px, 12px, 0);
    }
    15% {
        clip: rect(63px, 9999px, 62px, 0);
    }
    20% {
        clip: rect(89px, 9999px, 73px, 0);
    }
    25% {
        clip: rect(84px, 9999px, 97px, 0);
    }
    30% {
        clip: rect(93px, 9999px, 90px, 0);
    }
    35% {
        clip: rect(69px, 9999px, 23px, 0);
    }
    40% {
        clip: rect(28px, 9999px, 19px, 0);
    }
    45% {
        clip: rect(22px, 9999px, 39px, 0);
    }
    50% {
        clip: rect(18px, 9999px, 11px, 0);
    }
    55% {
        clip: rect(10px, 9999px, 81px, 0);
    }
    60% {
        clip: rect(87px, 9999px, 45px, 0);
    }
    65% {
        clip: rect(96px, 9999px, 43px, 0);
    }
    70% {
        clip: rect(27px, 9999px, 49px, 0);
    }
    75% {
        clip: rect(23px, 9999px, 76px, 0);
    }
    80% {
        clip: rect(38px, 9999px, 53px, 0);
    }
    85% {
        clip: rect(69px, 9999px, 42px, 0);
    }
    90% {
        clip: rect(65px, 9999px, 62px, 0);
    }
    95% {
        clip: rect(54px, 9999px, 35px, 0);
    }
    100% {
        clip: rect(82px, 9999px, 24px, 0);
    }
}

@keyframes text-flicker {
    0%, 100% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color);
    }
    8%, 9% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color),
                -2px -2px 0 rgba(23, 232, 183, 0.5);
    }
    11%, 15% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color);
    }
    17%, 19% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color),
                2px -2px 0 rgba(23, 86, 232, 0.5);
    }
    22% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color);
    }
    55% {
        text-shadow:
                0 0 10px rgba(255, 255, 255, 0.7),
                4px 4px 0 var(--accent-color),
                1px -1px 0 rgba(23, 232, 183, 0.3);
    }
}

.cursor-blink {
    display: inline-block;
    width: 5px;
    height: 80%;
    background-color: var(--text-color);
    position: absolute;
    right: -15px;
    top: 10%;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* تگ لاین */
.tagline {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-shadow:
            2px 2px 0 rgba(0, 0, 0, 0.5),
            0 0 10px rgba(23, 232, 183, 0.5);
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bold;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    animation: tagline-glow 3s infinite alternate;
}

@keyframes tagline-glow {
    0%, 100% {
        text-shadow:
                2px 2px 0 rgba(0, 0, 0, 0.5),
                0 0 10px rgba(23, 232, 183, 0.5);
    }
    50% {
        text-shadow:
                2px 2px 0 rgba(0, 0, 0, 0.5),
                0 0 20px rgba(23, 232, 183, 0.8);
    }
}

.tagline::before, .tagline::after {
    content: '✧';
    display: inline-block;
    margin: 0 15px;
    color: var(--accent-color);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* دکمه‌ها */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pixel-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 15px 30px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s steps(2);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
            inset -2px -2px 0 0 #4b10a3,
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 10px rgba(107, 23, 232, 0.5);
    image-rendering: pixelated;
    transform-style: preserve-3d;
    transform: perspective(500px) translateZ(0);
}

.pixel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.pixel-btn:hover {
    transform: perspective(500px) translateZ(10px) translateY(-3px);
    background-color: var(--accent-light);
    box-shadow:
            0 5px 0 #4b10a3,
            inset -2px -2px 0 0 #4b10a3,
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.5),
            0 0 20px rgba(107, 23, 232, 0.8);
}

.pixel-btn:hover::before {
    left: 100%;
}

.pixel-btn:active {
    transform: perspective(500px) translateZ(5px) translateY(0);
    box-shadow:
            0 2px 0 #4b10a3,
            inset -2px -2px 0 0 #4b10a3,
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 15px rgba(107, 23, 232, 0.6);
}

.primary-btn {
    background-color: var(--accent-color);
    animation: btn-pulse 2s infinite alternate;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow:
                inset -2px -2px 0 0 #4b10a3,
                inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
                0 0 10px rgba(107, 23, 232, 0.5);
    }
    50% {
        box-shadow:
                inset -2px -2px 0 0 #4b10a3,
                inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
                0 0 15px rgba(107, 23, 232, 0.7);
    }
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    box-shadow:
            inset -2px -2px 0 0 var(--secondary-dark),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 10px rgba(23, 232, 183, 0.5);
}

.secondary-btn:hover {
    background-color: rgba(23, 232, 183, 0.1);
    box-shadow:
            0 5px 0 var(--secondary-dark),
            inset -2px -2px 0 0 var(--secondary-dark),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.5),
            0 0 20px rgba(23, 232, 183, 0.8);
}

/* لینک‌های سوشیال مدیا */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.4rem;
    transition: all 0.2s steps(2);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--text-color);
    text-decoration: none;
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 10px rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transform: perspective(500px) translateZ(0);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--dark-bg);
    border-color: var(--accent-color);
    transform: perspective(500px) translateZ(10px) translateY(-5px);
    box-shadow:
            0 5px 0 rgba(0, 0, 0, 0.3),
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.5),
            0 0 15px rgba(107, 23, 232, 0.7);
}

.social-link:hover::before {
    left: 0;
}

.social-link:active {
    transform: perspective(500px) translateZ(5px) translateY(-2px);
    box-shadow:
            0 2px 0 rgba(0, 0, 0, 0.3),
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 10px rgba(107, 23, 232, 0.5);
}

/* اسکرول ایندیکیتور */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s steps(2);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 15px;
    position: relative;
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 10px rgba(107, 23, 232, 0.3);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
    box-shadow: 0 0 5px var(--accent-color);
}

.arrow-down {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    margin-top: 15px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.scroll-indicator:hover .mouse {
    border-color: var(--accent-color);
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            0 0 15px rgba(107, 23, 232, 0.6);
}

.scroll-indicator:hover .wheel {
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.scroll-indicator:hover .arrow-down {
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* افکت‌های اضافی */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
    transparent 0%,
    rgba(107, 23, 232, 0.2) 10%,
    rgba(107, 23, 232, 0.5) 50%,
    rgba(107, 23, 232, 0.2) 90%,
    transparent 100%);
    z-index: 2;
    opacity: 0.5;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pixel-btn {
        width: 80%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .grid-overlay {
        transform: perspective(500px) rotateX(60deg) scale(3, 2) translateY(10vh);
    }
}

@media (max-width: 480px) {
    .pixel-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .tagline::before, .tagline::after {
        margin: 0 8px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 15px;
    }
}

/* پشتیبانی از تم‌های تاریک و روشن */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #0a0a0a;
        --darker-bg: #050505;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --dark-bg: #121212;
        --darker-bg: #0a0a0a;
        --text-color: #f0f0f0;
    }

    .hero-section {
        background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    }
}

/* افکت‌های تعاملی اضافی */
.pixel-btn, .social-link, .scroll-indicator {
    image-rendering: pixelated;
    transition: transform 0.2s steps(2), box-shadow 0.2s steps(2), background-color 0.2s steps(2);
}

.hero-content:hover .pixel-title {
    animation: text-flicker 3s infinite alternate;
}

/* افکت پیکسلی برای تمام عناصر */
.hero-section * {
    image-rendering: pixelated;
}

/* افکت کلیک */
.pixel-btn:active, .social-link:active {
    transform: scale(0.95);
}

/* افکت فوکوس */
.pixel-btn:focus, .social-link:focus {
    outline: none;
    box-shadow:
            0 0 0 2px var(--accent-color),
            0 0 10px rgba(107, 23, 232, 0.7);
}
/* متغیرهای اصلی */
:root {
    --papa-bg-color: #121212;
    --papa-text-color: #ffffff;
    --papa-accent-color: #6b17e8;
    --papa-secondary-color: #00fff9;
    --papa-dark-accent: #4a0ba8;
    --papa-card-bg: rgba(0, 0, 0, 0.3);
    --papa-border-light: rgba(255, 255, 255, 0.1);
    --papa-border-accent: rgba(107, 23, 232, 0.3);
    --papa-shadow-color: rgba(0, 0, 0, 0.3);
    --papa-glow-color: rgba(107, 23, 232, 0.5);
    --papa-gold: #FFD700;
    --papa-silver: #C0C0C0;
    --papa-bronze: #CD7F32;
    --papa-font-main: 'Vazirmatn', sans-serif;
    --papa-font-pixel: 'Press Start 2P', cursive;
}

/* ریست و استایل‌های پایه */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--papa-font-main);
    direction: rtl;
    background-color: var(--papa-bg-color);
    color: var(--papa-text-color);
    line-height: 1.6;
}

/* کانتینر اصلی */
.PAPA-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* سکشن پیش‌فروش */
.PAPA-presale {
    position: relative;
    padding: 120px 0;
    background-color: var(--papa-bg-color);
    color: var(--papa-text-color);
    overflow: hidden;
}

/* افکت‌های بصری پس‌زمینه */
.PAPA-presale__glitch-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.PAPA-presale__cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(107, 23, 232, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(107, 23, 232, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: PAPA-grid-animation 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.PAPA-presale__floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.PAPA-presale__neon-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(107, 23, 232, 0.3) 0%, rgba(107, 23, 232, 0.1) 40%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

/* ذرات معلق */
.PAPA-particle {
    position: absolute;
    background-color: rgba(107, 23, 232, 0.5);
    border-radius: 50%;
    opacity: 0.5;
    animation: PAPA-float-animation 20s linear infinite;
}

/* انیمیشن‌ها */
@keyframes PAPA-float-animation {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes PAPA-grid-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

@keyframes PAPA-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes PAPA-text-shadow-pulse {
    0% {
        text-shadow: 3px 3px 0 var(--papa-accent-color);
    }
    50% {
        text-shadow: 3px 3px 10px var(--papa-accent-color);
    }
    100% {
        text-shadow: 3px 3px 0 var(--papa-accent-color);
    }
}

@keyframes PAPA-glitch-animation-1 {
    0% {
        transform: translateX(0);
    }
    80% {
        transform: translateX(0);
    }
    85% {
        transform: translateX(-2px);
    }
    90% {
        transform: translateX(2px);
    }
    95% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes PAPA-glitch-animation-2 {
    0% {
        transform: translateX(0);
    }
    80% {
        transform: translateX(0);
    }
    85% {
        transform: translateX(2px);
    }
    90% {
        transform: translateX(-2px);
    }
    95% {
        transform: translateX(2px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes PAPA-album-float {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

@keyframes PAPA-glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes PAPA-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes PAPA-border-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes PAPA-shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes PAPA-slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* هدر سکشن */
.PAPA-section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    animation: PAPA-fade-in 1s ease forwards;
}

.PAPA-section-header__glitch-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.PAPA-section-header__title {
    font-family: var(--papa-font-pixel);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--papa-text-color);
    position: relative;
    display: inline-block;
    text-shadow: 3px 3px 0 var(--papa-accent-color);
}

.PAPA-section-header__title--glitch {
    position: relative;
    animation: PAPA-text-shadow-pulse 2s infinite;
}

.PAPA-section-header__title--glitch::before,
.PAPA-section-header__title--glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.PAPA-section-header__title--glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: PAPA-glitch-animation-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.PAPA-section-header__title--glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00fff9;
    animation: PAPA-glitch-animation-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.PAPA-section-header__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    animation: PAPA-fade-in 1s ease 0.3s forwards;
    opacity: 0;
}

.PAPA-highlight {
    color: var(--papa-accent-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.PAPA-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--papa-accent-color), transparent);
}

/* آلبوم */
.PAPA-album {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    animation: PAPA-fade-in 1s ease 0.5s forwards;
    opacity: 0;
}

.PAPA-album__cover-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.PAPA-album__cover {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: PAPA-album-float 6s ease-in-out infinite;
    z-index: 2;
}

.PAPA-album__cover:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 25px 50px rgba(107, 23, 232, 0.4);
}

.PAPA-album__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.PAPA-album__cover:hover .PAPA-album__image {
    transform: scale(1.05);
}

.PAPA-album__reflection {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(107, 23, 232, 0.2), transparent);
    transform: scaleY(-1) rotate(-3deg);
    filter: blur(5px);
    opacity: 0.5;
    z-index: 1;
}

.PAPA-album__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(107, 23, 232, 0.5) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 0;
    animation: PAPA-glow-pulse 3s ease-in-out infinite;
}

.PAPA-album__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.PAPA-album__cover:hover .PAPA-album__overlay {
    opacity: 1;
}

.PAPA-album__play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(107, 23, 232, 0.8);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(107, 23, 232, 0.5);
}

.PAPA-album__play-btn:hover {
    transform: scale(1);
    background: rgba(107, 23, 232, 1);
}

.PAPA-album__play-btn i {
    color: white;
    font-size: 24px;
}

.PAPA-album__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: PAPA-slide-in-right 1s ease 0.7s forwards;
    opacity: 0;
    transform: translateX(30px);
}

.PAPA-cyber-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(107, 23, 232, 0.3);
    padding: 25px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.PAPA-cyber-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, var(--papa-accent-color), var(--papa-secondary-color), var(--papa-accent-color));
    z-index: -1;
    animation: PAPA-border-animation 3s linear infinite;
}

.PAPA-album__title {
    font-family: var(--papa-font-pixel);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--papa-text-color);
    text-shadow: 2px 2px 0 var(--papa-accent-color);
    position: relative;
    display: inline-block;
}

.PAPA-album__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--papa-accent-color);
    box-shadow: 0 0 10px var(--papa-accent-color);
}

.PAPA-album__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.PAPA-album__details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.PAPA-album__detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.PAPA-album__detail-item:hover {
    background: rgba(107, 23, 232, 0.2);
    transform: translateY(-3px);
}

.PAPA-album__detail-item i {
    color: var(--papa-accent-color);
}

/* نسخه‌های آلبوم */
.PAPA-versions {
    margin-bottom: 80px;
    animation: PAPA-fade-in 1s ease 0.9s forwards;
    opacity: 0;
}

.PAPA-versions__title {
    font-family: var(--papa-font-pixel);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--papa-text-color);
    text-shadow: 2px 2px 0 var(--papa-accent-color);
}

.PAPA-versions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.PAPA-version-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
    animation: PAPA-fade-in 1s ease forwards;
    opacity: 0;
}

.PAPA-version-card:nth-child(1) {
    animation-delay: 1.1s;
}

.PAPA-version-card:nth-child(2) {
    animation-delay: 1.3s;
}

.PAPA-version-card:nth-child(3) {
    animation-delay: 1.5s;
}

.PAPA-version-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(107, 23, 232, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.PAPA-version-card:hover .PAPA-version-card__inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107, 23, 232, 0.3);
    border-color: rgba(107, 23, 232, 0.5);
}

.PAPA-version-card--featured .PAPA-version-card__inner {
    border-color: rgba(107, 23, 232, 0.5);
    box-shadow: 0 10px 20px rgba(107, 23, 232, 0.2);
}

.PAPA-version-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--papa-accent-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.PAPA-version-card__header {
    background: rgba(107, 23, 232, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(107, 23, 232, 0.2);
}

.PAPA-version-card__type {
    font-family: var(--papa-font-pixel);
    font-size: 1.2rem;
    color: var(--papa-text-color);
}

.PAPA-version-card__price {
    font-weight: bold;
    color: var(--papa-accent-color);
}

.PAPA-version-card__content {
    padding: 20px;
}

.PAPA-version-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.PAPA-version-card__feature {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.PAPA-version-card__feature:hover {
    color: var(--papa-accent-color);
    transform: translateX(5px);
}

.PAPA-version-card__feature::before {
    content: '✓';
    color: var(--papa-accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.PAPA-version-card__feature:last-child {
    border-bottom: none;
}

/* دکمه‌ها */
.PAPA-btn {
    background: var(--papa-accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    font-family: var(--papa-font-pixel);
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 0 var(--papa-dark-accent);
    border-radius: 3px;
    width: 100%;
    text-align: center;
}

.PAPA-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.PAPA-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 var(--papa-dark-accent), 0 0 20px rgba(107, 23, 232, 0.5);
}

.PAPA-btn:hover::before {
    left: 100%;
}

.PAPA-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--papa-dark-accent);
}

.PAPA-btn--select {
    margin-top: 10px;
}

.PAPA-btn--pay {
    background: linear-gradient(45deg, var(--papa-accent-color), #9b4dff);
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 15px;
}

/* لیدربورد */
.PAPA-leaderboard {
    animation: PAPA-fade-in 1s ease 1.7s forwards;
    opacity: 0;
}

.PAPA-leaderboard__title {
    font-family: var(--papa-font-pixel);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--papa-text-color);
    text-shadow: 2px 2px 0 var(--papa-accent-color);
}

.PAPA-leaderboard__container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(107, 23, 232, 0.2);
    position: relative;
}

.PAPA-leaderboard__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(107, 23, 232, 0.03) 10px,
            rgba(107, 23, 232, 0.03) 20px
    );
    pointer-events: none;
}

.PAPA-leaderboard__item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 150px;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    color: var(--papa-text-color);
    transition: all 0.3s ease;
    animation: PAPA-slide-in-bottom 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.PAPA-leaderboard__item:nth-child(1) {
    animation-delay: 1.9s;
}

.PAPA-leaderboard__item:nth-child(2) {
    animation-delay: 2.0s;
}

.PAPA-leaderboard__item:nth-child(3) {
    animation-delay: 2.1s;
}

.PAPA-leaderboard__item:nth-child(4) {
    animation-delay: 2.2s;
}

.PAPA-leaderboard__item:nth-child(5) {
    animation-delay: 2.3s;
}

.PAPA-leaderboard__item:hover {
    background: rgba(107, 23, 232, 0.1);
    transform: translateX(5px);
}

.PAPA-leaderboard__item:last-child {
    border-bottom: none;
}

.PAPA-leaderboard__rank {
    font-family: var(--papa-font-pixel);
    font-size: 1rem;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.PAPA-leaderboard__rank::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: PAPA-shine 2s infinite;
}

.PAPA-leaderboard__item--rank-1 .PAPA-leaderboard__rank {
    background: linear-gradient(135deg, var(--papa-gold), #FFA500);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.PAPA-leaderboard__item--rank-2 .PAPA-leaderboard__rank {
    background: linear-gradient(135deg, var(--papa-silver), #A9A9A9);
    color: #000;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.PAPA-leaderboard__item--rank-3 .PAPA-leaderboard__rank {
    background: linear-gradient(135deg, var(--papa-bronze), #A0522D);
    color: #000;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.PAPA-leaderboard__user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.PAPA-leaderboard__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.PAPA-leaderboard__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.PAPA-leaderboard__avatar:hover img {
    transform: scale(1.1);
}

.PAPA-leaderboard__avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 60%, rgba(107, 23, 232, 0.5));
}

.PAPA-leaderboard__item--rank-1 .PAPA-leaderboard__avatar {
    border-color: var(--papa-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.PAPA-leaderboard__item--rank-2 .PAPA-leaderboard__avatar {
    border-color: var(--papa-silver);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.PAPA-leaderboard__item--rank-3 .PAPA-leaderboard__avatar {
    border-color: var(--papa-bronze);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.PAPA-leaderboard__username {
    font-weight: bold;
    color: var(--papa-text-color);
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.PAPA-leaderboard__username:hover {
    color: var(--papa-accent-color);
}

.PAPA-leaderboard__purchase-type,
.PAPA-leaderboard__purchase-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.PAPA-leaderboard__item:hover .PAPA-leaderboard__purchase-type,
.PAPA-leaderboard__item:hover .PAPA-leaderboard__purchase-date {
    color: var(--papa-accent-color);
}

/* مودال پرداخت */
.PAPA-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.PAPA-modal.active {
    opacity: 1;
    visibility: visible;
}

.PAPA-modal__content {
    background: rgba(20, 20, 30, 0.95);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(107, 23, 232, 0.3);
    border: 1px solid rgba(107, 23, 232, 0.3);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.PAPA-modal.active .PAPA-modal__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.PAPA-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.PAPA-modal__close:hover {
    color: var(--papa-accent-color);
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.PAPA-modal__title {
    font-family: var(--papa-font-pixel);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--papa-text-color);
    text-shadow: 2px 2px 0 rgba(107, 23, 232, 0.5);
}

.PAPA-modal__price {
    font-size: 1.2rem;
    color: var(--papa-accent-color);
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(107, 23, 232, 0.5);
}

.PAPA-payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.PAPA-payment-method {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.PAPA-payment-method::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(107, 23, 232, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.PAPA-payment-method:hover::before {
    opacity: 1;
}

.PAPA-payment-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.PAPA-payment-method--active {
    background: rgba(107, 23, 232, 0.2);
    border-color: var(--papa-accent-color);
    box-shadow: 0 0 15px rgba(107, 23, 232, 0.3);
}

.PAPA-payment-method i {
    font-size: 24px;
    color: var(--papa-accent-color);
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.PAPA-payment-method:hover i {
    transform: scale(1.2);
}

.PAPA-payment-form {
    margin-top: 20px;
}

.PAPA-form__group {
    margin-bottom: 20px;
    position: relative;
}

.PAPA-form__label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.PAPA-form__input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--papa-text-color);
    font-family: var(--papa-font-main);
    transition: all 0.3s ease;
}

.PAPA-form__input:focus {
    outline: none;
    border-color: var(--papa-accent-color);
    box-shadow: 0 0 10px rgba(107, 23, 232, 0.3);
}

.PAPA-form__input:focus + .PAPA-form__label {
    color: var(--papa-accent-color);
}

/* رسپانسیو - تبلت */
@media (max-width: 992px) {
    .PAPA-album {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .PAPA-album__cover-container {
        max-width: 350px;
    }

    .PAPA-leaderboard__item {
        grid-template-columns: 60px 1fr 120px;
    }

    .PAPA-leaderboard__purchase-date {
        display: none;
    }

    .PAPA-section-header__title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .PAPA-section-header__subtitle {
        font-size: 1.1rem;
    }

    .PAPA-album__title {
        font-size: 1.5rem;
    }

    .PAPA-versions__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* رسپانسیو - موبایل بزرگ */
@media (max-width: 768px) {
    .PAPA-presale {
        padding: 80px 0;
    }

    .PAPA-versions__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .PAPA-leaderboard__item {
        grid-template-columns: 50px 1fr 100px;
        padding: 12px;
    }

    .PAPA-leaderboard__username {
        font-size: 1rem;
    }

    .PAPA-payment-methods {
        flex-direction: column;
        gap: 10px;
    }

    .PAPA-section-header {
        margin-bottom: 50px;
    }

    .PAPA-album__detail-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .PAPA-album__text {
        font-size: 1rem;
    }

    .PAPA-version-card__type {
        font-size: 1rem;
    }
}

/* رسپانسیو - موبایل */
@media (max-width: 576px) {
    .PAPA-presale {
        padding: 60px 0;
    }

    .PAPA-section-header__title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .PAPA-section-header__subtitle {
        font-size: 0.9rem;
    }

    .PAPA-album__title {
        font-size: 1.3rem;
    }

    .PAPA-leaderboard__item {
        grid-template-columns: 40px 1fr;
    }

    .PAPA-leaderboard__purchase-type {
        display: none;
    }

    .PAPA-leaderboard__avatar {
        width: 40px;
        height: 40px;
    }

    .PAPA-leaderboard__rank {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .PAPA-album__detail-item {
        width: 100%;
    }

    .PAPA-album__details {
        flex-direction: column;
        gap: 10px;
    }

    .PAPA-modal__content {
        padding: 20px;
    }

    .PAPA-modal__title {
        font-size: 1.1rem;
    }

    .PAPA-btn {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* رسپانسیو - موبایل کوچک */
@media (max-width: 375px) {
    .PAPA-presale {
        padding: 40px 0;
    }

    .PAPA-section-header {
        margin-bottom: 40px;
    }

    .PAPA-version-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .PAPA-version-card__feature {
        font-size: 0.9rem;
    }

    .PAPA-leaderboard__username {
        font-size: 0.9rem;
    }

    .PAPA-album__play-btn {
        width: 60px;
        height: 60px;
    }

    .PAPA-album__play-btn i {
        font-size: 18px;
    }
}
/* استایل سکشن موزیک‌های پاپابویز - نسخه فانتزی و پیکسلی */
:root {
    --papa-primary: #6b17e8;
    --papa-secondary: #17e8e8;
    --papa-accent: #ff00ff;
    --papa-dark: #0a0a0a;
    --papa-darker: #050505;
    --papa-light: #ffffff;
    --papa-glow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5);
}

.PAPA-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.PAPA-music-section {
    background-color: var(--papa-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* بکگراند ستاره‌ای متحرک پیشرفته */
.PAPA-music-section__stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.PAPA-pixel-star {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: PAPA-star-twinkle infinite;
}

@keyframes PAPA-star-twinkle {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #fff, 0 0 8px rgba(255, 255, 255, 0.8); }
    50% { opacity: 0.2; box-shadow: 0 0 2px #fff; }
}

/* نبولا فانتزی */
.PAPA-music-section__nebula {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(107, 23, 232, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(23, 232, 232, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    animation: PAPA-nebula-pulse 15s infinite alternate;
}

@keyframes PAPA-nebula-pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

.PAPA-music-section__pixel-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(107, 23, 232, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(107, 23, 232, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.3;
    animation: PAPA-grid-pulse 10s infinite alternate;
}

@keyframes PAPA-grid-pulse {
    0% { opacity: 0.2; background-size: 20px 20px; }
    50% { opacity: 0.3; background-size: 22px 22px; }
    100% { opacity: 0.2; background-size: 20px 20px; }
}

/* هدر سکشن پیکسلی فانتزی */
.PAPA-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.PAPA-section-header__pixel-box {
    display: inline-block;
    position: relative;
    padding: 5px 20px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    box-shadow: var(--papa-glow);
    animation: PAPA-pixel-box-pulse 4s infinite alternate;
}

@keyframes PAPA-pixel-box-pulse {
    0% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
    50% { box-shadow: 0 0 15px rgba(107, 23, 232, 0.9), 0 0 30px rgba(107, 23, 232, 0.7); }
    100% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
}

.PAPA-section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    position: relative;
    display: inline-block;
    text-shadow:
            3px 3px 0 var(--papa-primary),
            6px 6px 0 rgba(0, 0, 0, 0.5);
    animation: PAPA-text-glitch 8s infinite;
    letter-spacing: 2px;
}

@keyframes PAPA-text-glitch {
    0%, 100% {
        text-shadow: 3px 3px 0 var(--papa-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(0);
    }
    98% {
        text-shadow: 3px 3px 0 var(--papa-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(0);
    }
    98.5% {
        text-shadow: -3px 3px 0 var(--papa-primary), 6px -6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(2px, -2px);
    }
    99% {
        text-shadow: 3px -3px 0 var(--papa-primary), -6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(-2px, 2px);
    }
    99.5% {
        text-shadow: -3px -3px 0 var(--papa-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(2px, 2px);
    }
}

.PAPA-section-line {
    width: 100px;
    height: 8px;
    background: linear-gradient(90deg, var(--papa-primary), var(--papa-secondary), var(--papa-accent), var(--papa-secondary), var(--papa-primary));
    margin: 0 auto;
    position: relative;
    box-shadow: var(--papa-glow);
    clip-path: polygon(
            0 0,
            100% 0,
            100% 50%,
            90% 100%,
            10% 100%,
            0 50%
    );
    animation: PAPA-line-glow 4s infinite alternate;
}

@keyframes PAPA-line-glow {
    0% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
    50% { box-shadow: 0 0 15px rgba(107, 23, 232, 0.9), 0 0 30px rgba(107, 23, 232, 0.7); }
    100% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
}

.PAPA-section-line::before,
.PAPA-section-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--papa-accent);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: var(--papa-glow);
}

.PAPA-section-line::before {
    left: -6px;
}

.PAPA-section-line::after {
    right: -6px;
}

/* اسلایدر موزیک سه‌بعدی فانتزی */
.PAPA-music-slider-container {
    position: relative;
    padding: 0 50px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    perspective: 1000px;
}

.PAPA-music-slider {
    overflow: visible;
    padding: 50px 0;
}

.swiper-slide {
    opacity: 0.5;
    transform: scale(0.8) translateZ(-100px);
    transition: all 0.5s ease;
    filter: grayscale(70%);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: grayscale(0%);
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.9) translateZ(-50px);
    filter: grayscale(30%);
}

/* کارت موزیک پیکسلی فانتزی */
.PAPA-music-card {
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.PAPA-music-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.PAPA-music-card__inner {
    background: #111;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.PAPA-music-card__pixel-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    pointer-events: none;
    z-index: 10;
    box-shadow: var(--papa-glow);
}

.PAPA-music-card__cover {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.PAPA-music-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: pixelated;
}

.PAPA-music-card:hover .PAPA-music-card__image {
    transform: scale(1.05);
}

.PAPA-music-card__no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
}

.PAPA-music-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

/* اسکن لاین پیکسلی */
.PAPA-music-card__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent 50%,
            rgba(107, 23, 232, 0.1) 50.5%,
            transparent 51%
    );
    background-size: 100% 8px;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
    animation: PAPA-scanline 8s linear infinite;
}

@keyframes PAPA-scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

.PAPA-music-card__info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.9));
}

.PAPA-music-card__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.PAPA-music-card__artist {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.PAPA-music-card__duration {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--papa-accent);
    margin-top: 10px;
    display: inline-block;
}

.PAPA-music-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: var(--papa-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--papa-glow);
}

.PAPA-music-card:hover .PAPA-music-card__play-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* کنترل‌های اسلایدر پیکسلی */
.PAPA-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.PAPA-slider-nav__prev,
.PAPA-slider-nav__next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--papa-glow);
}

.PAPA-slider-nav__prev:hover,
.PAPA-slider-nav__next:hover {
    background: rgba(107, 23, 232, 0.5);
    transform: translateY(-2px);
}

.PAPA-slider-nav__prev:active,
.PAPA-slider-nav__next:active {
    transform: translateY(0);
    box-shadow:
            inset 2px 2px 0 0 rgba(0, 0, 0, 0.5),
            inset -2px -2px 0 0 rgba(255, 255, 255, 0.3);
}

/* پلیر چسبیده به پایین صفحه - پیکسلی فانتزی */
.PAPA-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    border-top: 4px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: repeat;
}

.PAPA-sticky-player.active {
    transform: translateY(0);
}

.PAPA-sticky-player__progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
}

.PAPA-sticky-player__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--papa-primary), var(--papa-secondary), var(--papa-accent));
    width: 0;
    transition: width 0.1s linear;
    position: relative;
    background-size: 200% 100%;
    animation: PAPA-gradient-shift 3s linear infinite;
}

@keyframes PAPA-gradient-shift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.PAPA-sticky-player__progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(107, 23, 232, 0.8);
}

.PAPA-sticky-player__container {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 20px;
}

.PAPA-sticky-player__cover-container {
    width: 50px;
    height: 50px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.PAPA-sticky-player__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.PAPA-sticky-player__pixel-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    pointer-events: none;
    box-shadow: var(--papa-glow);
}

.PAPA-sticky-player__info {
    flex-grow: 1;
    min-width: 0;
}

.PAPA-sticky-player__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.PAPA-sticky-player__artist {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.PAPA-sticky-player__controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.PAPA-sticky-player__control {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--papa-glow);
}

.PAPA-sticky-player__play-pause {
    width: 50px;
    height: 50px;
    background: var(--papa-primary);
}

.PAPA-sticky-player__control:hover {
    background: rgba(107, 23, 232, 0.5);
    transform: translateY(-2px);
}

.PAPA-sticky-player__control:active {
    transform: translateY(0);
    box-shadow:
            inset 2px 2px 0 0 rgba(0, 0, 0, 0.5),
            inset -2px -2px 0 0 rgba(255, 255, 255, 0.3);
}

.PAPA-sticky-player__time {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.PAPA-sticky-player__close {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3);
}

.PAPA-sticky-player__close:hover {
    background: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* حالت خالی پیکسلی */
.PAPA-music-empty {
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    margin: 0 auto;
    max-width: 500px;
    box-shadow: var(--papa-glow);
    position: relative;
}

.PAPA-music-empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            45deg,
            transparent 0%,
            rgba(107, 23, 232, 0.1) 50%,
            transparent 100%
    );
    animation: PAPA-empty-shine 3s linear infinite;
}

@keyframes PAPA-empty-shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.PAPA-music-empty p {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.PAPA-btn {
    display: inline-block;
    background: var(--papa-primary);
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    padding: 12px 20px;
    text-decoration: none;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--papa-glow);
    transition: all 0.3s ease;
}

.PAPA-btn:hover {
    background: var(--papa-secondary);
    transform: translateY(-2px);
}

/* رسپانسیو پیشرفته */
@media (max-width: 1200px) {
    .PAPA-section-title {
        font-size: 2.2rem;
    }

    .PAPA-music-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .PAPA-section-title {
        font-size: 2rem;
    }

    .PAPA-music-slider-container {
        padding: 0 30px;
    }

    .PAPA-music-card__title {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .PAPA-section-title {
        font-size: 1.8rem;
    }

    .PAPA-music-section {
        padding: 80px 0;
    }

    .PAPA-music-card__info {
        padding: 15px;
    }

    .PAPA-sticky-player__container {
        padding: 10px;
        gap: 15px;
    }

    .PAPA-sticky-player__time {
        display: none;
    }

    .swiper-slide {
        transform: scale(0.9) translateZ(-50px);
    }
}

@media (max-width: 576px) {
    .PAPA-section-title {
        font-size: 1.5rem;
    }

    .PAPA-music-section {
        padding: 60px 0;
    }

    .PAPA-section-header {
        margin-bottom: 40px;
    }

    .PAPA-music-slider-container {
        padding: 0 20px;
    }

    .PAPA-music-card__play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .PAPA-slider-nav__prev,
    .PAPA-slider-nav__next {
        width: 40px;
        height: 40px;
    }

    .PAPA-sticky-player__cover-container {
        width: 40px;
        height: 40px;
    }

    .PAPA-sticky-player__control {
        width: 35px;
        height: 35px;
    }

    .PAPA-sticky-player__play-pause {
        width: 40px;
        height: 40px;
    }

    .PAPA-sticky-player__title {
        font-size: 0.7rem;
    }
}
/**
 * Super Mario Members Section Styles - نسخه فانتزی و پیکسلی پیشرفته
 * با استفاده از روش BEM
 */

/* فونت پیکسلی */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* متغیرهای رنگ */
:root {
    --mario-primary: #6b17e8;
    --mario-primary-dark: #4b10a3;
    --mario-primary-light: #8a3df9;
    --mario-secondary: #17e8e8;
    --mario-secondary-dark: #10a3a3;
    --mario-secondary-light: #3df9f9;
    --mario-accent: #ff00ff;
    --mario-accent-dark: #b300b3;
    --mario-accent-light: #ff3dff;
    --mario-dark: #0a0a0a;
    --mario-darker: #050505;
    --mario-light: #ffffff;
    --mario-glow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5);
    --mario-glow-accent: 0 0 10px rgba(255, 0, 255, 0.8), 0 0 20px rgba(255, 0, 255, 0.5);
    --mario-glow-secondary: 0 0 10px rgba(23, 232, 232, 0.8), 0 0 20px rgba(23, 232, 232, 0.5);
    --mario-cubic-bezier: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* استایل اصلی بخش */
.mario-members-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--mario-darker);
    padding: 100px 0;
    font-family: 'Press Start 2P', cursive;
    color: var(--mario-light);
    image-rendering: pixelated;
}

.mario-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* بکگراند ستاره‌ای پیکسلی متحرک پیشرفته */
.mario-members-section__starry-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.mario-members-section__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ستاره‌های پیکسلی با اندازه‌های مختلف */
.mario-pixel-star {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: mario-star-twinkle infinite;
    z-index: 1;
}

.mario-pixel-star--small {
    width: 2px;
    height: 2px;
    animation-duration: 3s;
}

.mario-pixel-star--medium {
    width: 3px;
    height: 3px;
    animation-duration: 5s;
}

.mario-pixel-star--large {
    width: 4px;
    height: 4px;
    animation-duration: 7s;
}

@keyframes mario-star-twinkle {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #fff, 0 0 8px rgba(255, 255, 255, 0.8); }
    50% { opacity: 0.2; box-shadow: 0 0 2px #fff; }
}

/* پیکسل‌های شناور */
.mario-members-section__floating-pixels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mario-floating-pixel {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--color, var(--mario-primary));
    opacity: 0.7;
    animation: mario-float-animation var(--duration, 15s) infinite linear;
    transform: translateZ(var(--depth, 0));
}

@keyframes mario-float-animation {
    0% {
        transform: translate3d(0, 0, var(--depth, 0));
    }
    100% {
        transform: translate3d(var(--x, 100px), var(--y, 100px), var(--depth, 0));
    }
}

/* نبولا فانتزی */
.mario-members-section__nebula {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(107, 23, 232, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(23, 232, 232, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    animation: mario-nebula-pulse 15s infinite alternate;
    filter: blur(30px);
}

@keyframes mario-nebula-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* گرید پیکسلی */
.mario-members-section__pixel-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(107, 23, 232, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(107, 23, 232, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.3;
    animation: mario-grid-pulse 10s infinite alternate;
}

@keyframes mario-grid-pulse {
    0% { opacity: 0.2; background-size: 20px 20px; }
    50% { opacity: 0.3; background-size: 22px 22px; }
    100% { opacity: 0.2; background-size: 20px 20px; }
}

/* اسکن لاین‌های پیکسلی */
.mario-members-section__scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 50%,
            rgba(23, 232, 232, 0.1) 50.5%,
            transparent 51%
    );
    background-size: 100% 4px;
    z-index: 15;
    pointer-events: none;
    opacity: 0.4;
    animation: mario-scanline 8s linear infinite;
}

@keyframes mario-scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

/* افکت وینیت */
.mario-members-section__vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            ellipse at center,
            transparent 0%,
            transparent 60%,
            rgba(5, 5, 5, 0.6) 100%
    );
    z-index: 14;
    pointer-events: none;
}

/* عنوان بخش */
.mario-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.mario-section-header__pixel-box {
    display: inline-block;
    position: relative;
    padding: 10px 30px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 4px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    box-shadow: var(--mario-glow);
    animation: mario-pixel-box-pulse 4s infinite alternate;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--mario-cubic-bezier), transform 0.8s var(--mario-cubic-bezier);
}

.mario-section-header__pixel-box.mario-section-header__pixel-box--visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mario-pixel-box-pulse {
    0% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
    50% { box-shadow: 0 0 15px rgba(107, 23, 232, 0.9), 0 0 30px rgba(107, 23, 232, 0.7); }
    100% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
}

.mario-section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.8rem;
    color: #fff;
    margin: 0;
    position: relative;
    display: inline-block;
    text-shadow:
            3px 3px 0 var(--mario-primary),
            6px 6px 0 rgba(0, 0, 0, 0.5);
    animation: mario-text-glitch 8s infinite;
    letter-spacing: 2px;
}

@keyframes mario-text-glitch {
    0%, 100% {
        text-shadow: 3px 3px 0 var(--mario-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(0);
    }
    98% {
        text-shadow: 3px 3px 0 var(--mario-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(0);
    }
    98.5% {
        text-shadow: -3px 3px 0 var(--mario-primary), 6px -6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(2px, -2px);
    }
    99% {
        text-shadow: 3px -3px 0 var(--mario-primary), -6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(-2px, 2px);
    }
    99.5% {
        text-shadow: -3px -3px 0 var(--mario-primary), 6px 6px 0 rgba(0, 0, 0, 0.5);
        transform: translate(2px, 2px);
    }
}

.mario-section-line {
    width: 150px;
    height: 8px;
    background: linear-gradient(90deg, var(--mario-primary), var(--mario-secondary), var(--mario-accent), var(--mario-secondary), var(--mario-primary));
    margin: 0 auto;
    position: relative;
    box-shadow: var(--mario-glow);
    clip-path: polygon(
            0 0,
            100% 0,
            100% 50%,
            90% 100%,
            10% 100%,
            0 50%
    );
    animation: mario-line-glow 4s infinite alternate, mario-gradient-shift 3s linear infinite;
}

@keyframes mario-gradient-shift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes mario-line-glow {
    0% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
    50% { box-shadow: 0 0 15px rgba(107, 23, 232, 0.9), 0 0 30px rgba(107, 23, 232, 0.7); }
    100% { box-shadow: 0 0 10px rgba(107, 23, 232, 0.8), 0 0 20px rgba(107, 23, 232, 0.5); }
}

.mario-section-line::before,
.mario-section-line::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--mario-accent);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: var(--mario-glow-accent);
}

.mario-section-line::before {
    left: -6px;
}

.mario-section-line::after {
    right: -6px;
}

/* کانتینر سوپر ماریو */
.mario-members-section__mario-container {
    position: absolute;
    height: 200px;
    width: 100%;
    bottom: 30%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
}

/* سوپر ماریو پیکسلی */
.mario-members-section__mario {
    position: absolute;
    left: -50px;
    bottom: 40px;
    width: 40px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="24" viewBox="0 0 16 24"><rect x="4" y="0" width="8" height="2" fill="red"/><rect x="2" y="2" width="12" height="2" fill="red"/><rect x="2" y="4" width="12" height="2" fill="red"/><rect x="2" y="6" width="12" height="2" fill="brown"/><rect x="0" y="8" width="4" height="2" fill="brown"/><rect x="4" y="8" width="2" height="2" fill="peachpuff"/><rect x="6" y="8" width="4" height="2" fill="brown"/><rect x="10" y="8" width="2" height="2" fill="peachpuff"/><rect x="12" y="8" width="4" height="2" fill="brown"/><rect x="0" y="10" width="2" height="2" fill="peachpuff"/><rect x="2" y="10" width="2" height="2" fill="brown"/><rect x="4" y="10" width="2" height="2" fill="peachpuff"/><rect x="6" y="10" width="2" height="2" fill="peachpuff"/><rect x="8" y="10" width="2" height="2" fill="peachpuff"/><rect x="10" y="10" width="2" height="2" fill="peachpuff"/><rect x="12" y="10" width="2" height="2" fill="brown"/><rect x="14" y="10" width="2" height="2" fill="peachpuff"/><rect x="2" y="12" width="2" height="2" fill="peachpuff"/><rect x="4" y="12" width="2" height="2" fill="brown"/><rect x="6" y="12" width="2" height="2" fill="peachpuff"/><rect x="8" y="12" width="2" height="2" fill="brown"/><rect x="10" y="12" width="2" height="2" fill="peachpuff"/><rect x="12" y="12" width="2" height="2" fill="brown"/><rect x="2" y="14" width="12" height="2" fill="peachpuff"/><rect x="4" y="16" width="8" height="2" fill="red"/><rect x="2" y="18" width="12" height="2" fill="red"/><rect x="0" y="20" width="16" height="2" fill="red"/><rect x="0" y="22" width="4" height="2" fill="blue"/><rect x="12" y="22" width="4" height="2" fill="blue"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
    image-rendering: pixelated;
    transform: scale(2);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(107, 23, 232, 0.5));
}

/* جعبه سؤال پیکسلی */
.mario-members-section__question-box {
    position: absolute;
    left: 50%;
    bottom: 120px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><rect x="0" y="0" width="40" height="40" fill="%236b17e8" /><rect x="4" y="4" width="32" height="32" fill="%23050505" stroke="%236b17e8" stroke-width="2" /><text x="16" y="28" font-family="Arial" font-size="24" fill="%23fff">?</text></svg>');
    background-size: contain;
    z-index: 3;
    animation: mario-question-box-animation 1s steps(2) infinite;
    box-shadow: var(--mario-glow);
    image-rendering: pixelated;
    transform-origin: center bottom;
}

@keyframes mario-question-box-animation {
    0% { filter: brightness(1); box-shadow: var(--mario-glow); }
    50% { filter: brightness(1.5); box-shadow: var(--mario-glow-accent); }
    100% { filter: brightness(1); box-shadow: var(--mario-glow); }
}

/* سکه پیکسلی */
.mario-members-section__coin {
    position: absolute;
    left: 50%;
    bottom: 120px;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="12" fill="%236b17e8" /><rect x="10" y="8" width="10" height="14" fill="%236b17e8" stroke="%2317e8e8" stroke-width="2" /><text x="12" y="20" font-family="Arial" font-size="12" fill="%23fff">1</text></svg>');
    background-size: contain;
    z-index: 4;
    opacity: 0;
    transform: translateY(0);
    box-shadow: var(--mario-glow);
    image-rendering: pixelated;
}

.mario-members-section__coin.mario-members-section__coin--animated {
    animation: mario-coin-animation 1s forwards var(--mario-cubic-bezier);
}

@keyframes mario-coin-animation {
    0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); box-shadow: var(--mario-glow); }
    25% { box-shadow: var(--mario-glow-accent); transform: translateY(-40px) rotate(90deg) scale(1.2); }
    50% { opacity: 1; transform: translateY(-80px) rotate(180deg) scale(1); box-shadow: var(--mario-glow-secondary); }
    75% { box-shadow: var(--mario-glow-accent); transform: translateY(-90px) rotate(270deg) scale(0.8); }
    100% { opacity: 0; transform: translateY(-100px) rotate(360deg) scale(0.5); box-shadow: var(--mario-glow); }
}

/* کانتینر کارت‌ها */
.mario-members-section__cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    opacity: 0;
    transition: opacity 1.2s ease;
    padding: 20px;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.mario-members-section__cards-container.mario-members-section__cards-container--visible {
    opacity: 1;
}

/* کارت عضو */
.mario-members-section__card {
    width: 260px;
    height: 340px;
    background-color: rgba(5, 5, 5, 0.7);
    border: 4px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%236b17e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0) rotateY(0deg);
    transition: transform 0.5s var(--mario-cubic-bezier), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    image-rendering: pixelated;
    box-shadow: var(--mario-glow);
    transform-style: preserve-3d;
    backdrop-filter: blur(5px);
}

/* اسکن لاین پیکسلی کارت */
.mario-members-section__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent 50%,
            rgba(107, 23, 232, 0.1) 50.5%,
            transparent 51%
    );
    background-size: 100% 8px;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
    animation: mario-card-scanline 8s linear infinite;
}

@keyframes mario-card-scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

/* افکت درخشش کارت */
.mario-members-section__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 232, 232, 0.2), transparent);
    transition: 0.5s;
    z-index: 1;
}

.mario-members-section__card:hover::after {
    left: 100%;
}

.mario-members-section__card.mario-members-section__card--animated {
    animation: mario-card-appear 0.8s var(--mario-cubic-bezier) forwards;
}

.mario-members-section__card:hover {
    box-shadow: 0 0 25px rgba(107, 23, 232, 0.8), 0 0 40px rgba(107, 23, 232, 0.5);
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
}

@keyframes mario-card-appear {
    0% { transform: scale(0) rotateY(90deg); opacity: 0; }
    70% { transform: scale(1.1) rotateY(-10deg); opacity: 1; }
    85% { transform: scale(0.95) rotateY(5deg); opacity: 1; }
    100% { transform: scale(1) rotateY(0deg); opacity: 1; }
}

/* تصویر کارت با حاشیه پیکسلی */
.mario-members-section__card-image-container {
    width: 220px;
    height: 220px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.mario-members-section__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    position: relative;
    z-index: 2;
    filter: contrast(1.1) brightness(1.1);
    transition: transform 0.5s ease;
}

.mario-members-section__card:hover .mario-members-section__card-image {
    transform: scale(1.05);
}

.mario-members-section__card-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="8" fill="%2317e8e8"/></svg>') 2;
    border-image-slice: 2;
    border-image-repeat: space;
    pointer-events: none;
    z-index: 3;
    box-shadow: var(--mario-glow-secondary);
}

/* نام عضو */
.mario-members-section__card-name {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 0 var(--mario-primary);
    position: relative;
    z-index: 2;
    padding: 5px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.3s ease;
}

.mario-members-section__card:hover .mario-members-section__card-name {
    transform: scale(1.05);
    text-shadow: 2px 2px 0 var(--mario-accent);
}

/* نقش عضو */
.mario-members-section__card-role {
    color: var(--mario-secondary);
    font-size: 12px;
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.mario-members-section__card:hover .mario-members-section__card-role {
    color: var(--mario-accent-light);
}

/* دکمه پلی روی کارت */
.mario-members-section__card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--mario-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s var(--mario-cubic-bezier);
    cursor: pointer;
    z-index: 5;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 85%,
            85% 100%,
            0% 100%
    );
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--mario-glow);
}

.mario-members-section__card:hover .mario-members-section__card-play-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.mario-members-section__card-play-btn:hover {
    background: var(--mario-accent);
    box-shadow:
            inset -2px -2px 0 0 rgba(0, 0, 0, 0.5),
            inset 2px 2px 0 0 rgba(255, 255, 255, 0.3),
            var(--mario-glow-accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.mario-members-section__card-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow:
            inset 2px 2px 0 0 rgba(0, 0, 0, 0.5),
            inset -2px -2px 0 0 rgba(255, 255, 255, 0.3),
            var(--mario-glow-accent);
}

/* انیمیشن‌های سوپر ماریو */
@keyframes mario-run {
    0% { left: -50px; transform: scale(2) scaleX(1); }
    20% { transform: scale(2) scaleX(1.05); }
    40% { left: calc(50% - 60px); transform: scale(2) scaleX(1); }
    60% { left: calc(50% - 60px); transform: scale(2) scaleX(1); }
    80% { transform: scale(2) scaleX(1.05); }
    100% { left: calc(100% + 50px); transform: scale(2) scaleX(1); }
}

@keyframes mario-jump {
    0% { bottom: 40px; transform: scale(2) rotate(0deg); filter: drop-shadow(0 0 5px rgba(107, 23, 232, 0.5)); }
    25% { filter: drop-shadow(0 0 10px rgba(107, 23, 232, 0.8)); transform: scale(2.1) rotate(2deg); }
    50% { bottom: 120px; transform: scale(2) rotate(5deg); filter: drop-shadow(0 0 15px rgba(107, 23, 232, 1)); }
    75% { filter: drop-shadow(0 0 10px rgba(107, 23, 232, 0.8)); transform: scale(1.9) rotate(2deg); }
    100% { bottom: 40px; transform: scale(2) rotate(0deg); filter: drop-shadow(0 0 5px rgba(107, 23, 232, 0.5)); }
}

@keyframes mario-question-box-hit {
    0% { bottom: 120px; transform: scale(1); }
    10% { transform: scale(1.05); }
    30% { bottom: 130px; transform: scale(0.95); }
    50% { transform: scale(1.02); }
    70% { transform: scale(0.98); }
    100% { bottom: 120px; transform: scale(1); }
}

/* افکت پیکسلی کلی */
.mario-members-section__pixel-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2" viewBox="0 0 2 2"><rect x="0" y="0" width="1" height="1" fill="%23000" opacity="0.03"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
    z-index: 16;
    opacity: 0.5;
    image-rendering: pixelated;
}

/* افکت گلیچ */
.mario-members-section__glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 17;
    pointer-events: none;
    opacity: 0;
    animation: mario-glitch 10s infinite;
}

@keyframes mario-glitch {
    0%, 100% { opacity: 0; }
    98% { opacity: 0; }
    98.5% {
        opacity: 0.05;
        background: linear-gradient(
                to bottom,
                transparent 10%,
                rgba(107, 23, 232, 0.2) 10.5%,
                transparent 11%,
                transparent 14%,
                rgba(23, 232, 232, 0.2) 14.5%,
                transparent 15%
        );
    }
    99% {
        opacity: 0.1;
        background: linear-gradient(
                to bottom,
                transparent 20%,
                rgba(255, 0, 255, 0.2) 20.5%,
                transparent 21%,
                transparent 34%,
                rgba(107, 23, 232, 0.2) 34.5%,
                transparent 35%
        );
    }
    99.5% { opacity: 0; }
}

/* پارتیکل‌های پیکسلی */
.mario-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--mario-primary);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.mario-particle--active {
    animation: mario-particle-animation 1s forwards var(--mario-cubic-bezier);
}

@keyframes mario-particle-animation {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x, 50px), var(--y, -50px)) rotate(var(--r, 180deg)) scale(var(--s, 0.5));
    }
}

/* رسپانسیو پیشرفته */
@media (max-width: 1400px) {
    .mario-section-title {
        font-size: 2.5rem;
    }

    .mario-members-section__card {
        width: 240px;
        height: 320px;
    }

    .mario-members-section__card-image-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .mario-section-title {
        font-size: 2.2rem;
    }

    .mario-members-section__cards-container {
        gap: 30px;
    }

    .mario-members-section__card {
        width: 220px;
        height: 300px;
    }

    .mario-members-section__card-image-container {
        width: 180px;
        height: 180px;
    }

    .mario-section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 992px) {
    .mario-section-title {
        font-size: 2rem;
    }

    .mario-members-section__cards-container {
        gap: 25px;
    }

    .mario-members-section__card {
        width: 200px;
        height: 280px;
        padding: 15px;
    }

    .mario-members-section__card-image-container {
        width: 170px;
        height: 170px;
        margin-bottom: 15px;
    }

    .mario-members-section__card-name {
        font-size: 14px;
    }

    .mario-members-section__card-role {
        font-size: 10px;
    }

    .mario-members-section__card-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .mario-members-section {
        padding: 80px 0;
    }

    .mario-section-title {
        font-size: 1.8rem;
    }

    .mario-section-header {
        margin-bottom: 50px;
    }

    .mario-section-header__pixel-box {
        padding: 8px 20px;
    }

    .mario-members-section__cards-container {
        gap: 20px;
    }

    .mario-members-section__card {
        width: 180px;
        height: 260px;
        padding: 12px;
    }

    .mario-members-section__card-image-container {
        width: 156px;
        height: 156px;
        margin-bottom: 12px;
    }

    .mario-members-section__card-name {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .mario-members-section__card-role {
        font-size: 9px;
    }

    .mario-members-section__mario {
        transform: scale(1.5);
    }

    .mario-members-section__question-box {
        width: 35px;
        height: 35px;
    }

    .mario-members-section__coin {
        width: 25px;
        height: 25px;
    }

    .mario-section-line {
        width: 120px;
        height: 6px;
    }

    /* ایجاد فاصله بیشتر بین سطرهای کارت‌ها در موبایل */
    .mario-members-section__cards-container {
        row-gap: 30px;
    }
}

@media (max-width: 576px) {
    .mario-members-section {
        padding: 60px 0;
    }

    .mario-section-title {
        font-size: 1.5rem;
    }

    .mario-section-header {
        margin-bottom: 40px;
    }

    .mario-section-header__pixel-box {
        padding: 6px 15px;
    }

    .mario-members-section__cards-container {
        gap: 15px;
    }

    .mario-members-section__card {
        width: 150px;
        height: 220px;
        padding: 10px;
    }

    .mario-members-section__card-image-container {
        width: 130px;
        height: 130px;
        margin-bottom: 10px;
    }

    .mario-members-section__card-name {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .mario-members-section__card-role {
        font-size: 8px;
    }

    .mario-members-section__card-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .mario-members-section__mario {
        transform: scale(1.2);
    }

    .mario-members-section__question-box {
        width: 30px;
        height: 30px;
    }

    .mario-members-section__coin {
        width: 20px;
        height: 20px;
    }

    .mario-section-line {
        width: 100px;
        height: 5px;
    }
}

/* برای موبایل‌های کوچک */
@media (max-width: 400px) {
    .mario-members-section__cards-container {
        gap: 10px;
    }

    .mario-members-section__card {
        width: 140px;
        height: 200px;
    }

    .mario-members-section__card-image-container {
        width: 120px;
        height: 120px;
    }

    .mario-section-title {
        font-size: 1.3rem;
    }
}

/* برای دستگاه‌های با نسبت تصویر عریض */
@media (min-width: 1400px) and (min-aspect-ratio: 16/9) {
    .mario-members-section__cards-container {
        gap: 50px;
    }

    .mario-members-section__card {
        width: 280px;
        height: 360px;
    }

    .mario-members-section__card-image-container {
        width: 240px;
        height: 240px;
    }

    .mario-section-title {
        font-size: 3rem;
    }
}

/* برای دستگاه‌های با دقت نمایش بالا */
@media (min-resolution: 192dpi) {
    .mario-members-section__pixel-effect {
        opacity: 0.3;
    }

    .mario-members-section__scanlines {
        opacity: 0.3;
    }
}