/* ==================== فونت Yekan Bakh ==================== */
@font-face {
    font-family: "Yekan Bakh";
    src: url("../fonts/YekanBakh-VF.woff2") format("woff2");
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

/* ==================== استایل اصلی ==================== */
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    scroll-behavior: smooth;
    direction: rtl;
    text-align: right;
    font-family: "Yekan Bakh", "Vazir", Tahoma, Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

.container {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* ==================== هدر لوکس ==================== */
header {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    z-index: 9999;
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(168, 230, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

header.scrolled {
    top: 10px;
    background: rgba(5, 8, 15, 0.7);
    backdrop-filter: blur(30px) saturate(200%);
    border-color: rgba(168, 230, 255, 0.3);
    padding: 10px 40px;
}

.head-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.head-left img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    filter: drop-shadow(0 0 10px rgba(168, 230, 255, 0.5));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(168, 230, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(168, 230, 255, 0.8));
    }
}

.head-left button {
    font-family: "Yekan Bakh";
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        rgba(168, 230, 255, 0.15),
        rgba(127, 219, 255, 0.08)
    );
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 230, 255, 0.2);
    transition: all 0.3s ease;
}

.head-left button:hover {
    background: linear-gradient(
        135deg,
        rgba(168, 230, 255, 0.3),
        rgba(127, 219, 255, 0.2)
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 230, 255, 0.4);
}

.head-right {
    display: flex;
    gap: 30px;
}

.head-right a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.head-right a i {
    color: #a8e6ff;
    text-shadow: 0 0 10px rgba(168, 230, 255, 0.5);
}

.head-right a:hover {
    background: rgba(168, 230, 255, 0.1);
    transform: translateY(-2px);
}

.head-right a:hover i {
    transform: scale(1.2);
    color: #fff;
}

.head-right a.active {
    background: rgba(168, 230, 255, 0.15);
    border: 1px solid rgba(168, 230, 255, 0.3);
}

.hamburger-menu {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(168, 230, 255, 0.05);
    border: 1px solid rgba(168, 230, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: #a8e6ff;
    transition: all 0.4s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #a8e6ff;
    transition: all 0.4s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

.hamburger-menu.active .hamburger-icon {
    background: transparent;
}

.hamburger-menu.active .hamburger-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 25, 0.95),
        rgba(5, 8, 18, 0.98)
    );
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(168, 230, 255, 0.1);
    z-index: 9998;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid rgba(168, 230, 255, 0.2);
    border-radius: 50%;
    color: #a8e6ff;
    font-size: 36px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    transform: rotate(90deg);
    background: rgba(168, 230, 255, 0.1);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(168, 230, 255, 0.03);
    border: 1px solid rgba(168, 230, 255, 0.08);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-nav a {
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-nav a i {
    color: #a8e6ff;
    font-size: 24px;
}

.mobile-menu-nav a span {
    font-size: 18px;
    font-weight: 700;
}

.mobile-menu-nav a:hover {
    background: rgba(168, 230, 255, 0.1);
    transform: translateX(-5px);
    color: #fff;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 230, 255, 0.08);
}

.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(168, 230, 255, 0.08);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 230, 255, 0.1);
}

.mobile-social a:hover {
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    transform: translateY(-3px);
}

.mobile-copyright {
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-vid {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
}

.glitch-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2%,
        rgba(168, 230, 255, 0.05) 2%,
        rgba(168, 230, 255, 0.05) 3%,
        transparent 3%,
        transparent 7%,
        rgba(127, 219, 255, 0.05) 7%,
        rgba(127, 219, 255, 0.05) 8%,
        transparent 8%
    );
    animation: glitchPulse 4s infinite;
}

@keyframes glitchPulse {
    0%,
    100% {
        opacity: 0;
    }
    3%,
    6%,
    9%,
    12%,
    15%,
    18%,
    21%,
    24%,
    27%,
    30% {
        opacity: 0.1;
    }
}

.hero-info {
    z-index: 10;
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 500px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(168, 230, 255, 0.1);
    animation: floatIn 1s ease-out forwards;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.hero-info h1 {
    font-size: clamp(32px, 7vw, 70px);
    font-family: "Yekan Bakh", "Shabnam", "Vazir", sans-serif;
    font-weight: 900;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -3px;
    position: relative;
    color: transparent;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #e0e0e0 25%,
        #ffffff 50%,
        #e0e0e0 75%,
        #ffffff 100%
    );
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: textShine 4s ease-in-out infinite,
    glitchText 3s infinite;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(74, 207, 238, 0.4);
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid #edff66;
    width: fit-content;
    animation: typing 3s steps(10, end) 0.5s forwards,
    blink 0.75s step-end infinite 3.5s,
    textShine 4s ease-in-out 0.5s infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes textShine {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glitchText {
    0%,
    100% {
        text-shadow: 0 0 10px rgba(168, 230, 255, 0.5);
    }
    2% {
        text-shadow: -2px 0 15px rgba(168, 230, 255, 0.7),
        2px 0 15px rgba(127, 219, 255, 0.7);
    }
    4% {
        text-shadow: 0 0 10px rgba(168, 230, 255, 0.5);
    }
}

.hero-info p {
    color: white;
    font-size: 18px;
    line-height: 2;
    margin-top: 25px;
    animation: fadeInText 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

.hero-info button {
    background: #a8e6ff;
    border: 2px solid #a8e6ff;
    padding: 15px 55px;
    border-radius: 30px;
    color: black;
    font-weight: 800;
    font-size: 17px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeInText 1s ease-out 1.2s forwards;
    opacity: 0;
}

.hero-info button:hover {
    background: transparent;
    color: white;
    box-shadow: 0 0 30px #a8e6ff;
    transform: translateY(-3px);
}

.gaming-text {
    font-size: 120px;
    position: absolute;
    left: 3%;
    bottom: 5%;
    opacity: 0.15;
    color: white;
    text-shadow: 0 0 30px rgba(168, 230, 255, 0.6);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        text-shadow: 0 0 30px rgba(168, 230, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 50px rgba(168, 230, 255, 0.8);
    }
}

.next-btn {
    width: 220px;
    height: 220px;
    background: linear-gradient(
        135deg,
        rgba(168, 230, 255, 0.1),
        rgba(127, 219, 255, 0.05)
    );
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 32px;
    font-weight: 900;
    cursor: pointer;
    z-index: 100;
    opacity: 0.4;
    transition: all 0.6s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.next-btn:hover {
    opacity: 1;
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: black;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 50px rgba(168, 230, 255, 0.6);
}

.hero-particles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.particle-hero {
    position: absolute;
    background: radial-gradient(circle, #a8e6ff 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 3s ease-out forwards;
}

@keyframes particleFloat {
    to {
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

.about-section {
    width: 100%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.about-welcome {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 45px;
    margin-bottom: 30px;
    background: linear-gradient(
        135deg,
        rgba(168, 230, 255, 0.08),
        rgba(127, 219, 255, 0.05)
    );
    border: 1.5px solid rgba(168, 230, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    animation: icePulse 3s ease-in-out infinite;
    position: relative;
}

.about-welcome::before,
.about-welcome::after {
    content: "❄️";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: spin 4s linear infinite;
}

.about-welcome::before {
    left: 15px;
}

.about-welcome::after {
    right: 15px;
    animation-direction: reverse;
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes icePulse {
    0%,
    100% {
        border-color: rgba(168, 230, 255, 0.3);
        transform: scale(1);
    }
    50% {
        border-color: rgba(168, 230, 255, 0.6);
        transform: scale(1.02);
    }
}

.about-section h1 {
    font-size: 85px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(to right, #fff, #a8e6ff, #7fdbff, #fff);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s ease-in-out infinite;
    position: relative;
    margin: 25px 0 40px;
}

.about-section h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, #a8e6ff, transparent);
    border-radius: 2px;
}

.stones-img {
    position: absolute;
    margin-top: 18%;
    width: 500px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

.image-box {
    width: 380px;
    height: 530px;
    border-radius: 50px;
    overflow: hidden;
    margin: 50px 0;
    border: 2px solid rgba(168, 230, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.6s ease;
}

.image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(168, 230, 255, 0.5);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.about-section h4 {
    color: #a8e6ff;
    font-size: 22px;
    font-weight: 800;
    margin-top: 30px;
    text-shadow: 0 0 15px rgba(168, 230, 255, 0.5);
}

.about-section h5 {
    max-width: 550px;
    text-align: center;
    line-height: 2;
    padding: 25px 30px;
    background: rgba(168, 230, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(168, 230, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 20px;
    color: #e0e0e0;
}

.info-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 100px;
    min-height: 100vh;
    position: relative;
    padding: 40px 20px;
}

.particles-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(
        circle,
        rgba(168, 230, 255, 0.8) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.header-decorator {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        to right,
        transparent,
        #a8e6ff,
        #7fdbff,
        #a8e6ff,
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(168, 230, 255, 0.6);
}

.section-title {
    font-size: clamp(24px, 6vw, 48px);
    font-weight: 900;
    background: linear-gradient(to right, #fff, #a8e6ff, #7fdbff, #fff);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s ease-in-out infinite;
}

.section-description {
    max-width: 750px;
    margin: 0 auto 60px;
    padding: 25px 40px;
    background: rgba(168, 230, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(168, 230, 255, 0.12);
    backdrop-filter: blur(15px);
    text-align: center;
    color: #e0e0e0;
}

.info-cards {
    column-count: 3;
    column-gap: 25px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.card {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    break-inside: avoid;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(168, 230, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 230, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: auto;
    min-height: unset;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(168, 230, 255, 0.2) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(168, 230, 255, 0.2),
        transparent
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

.card:hover::after {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(168, 230, 255, 0.4);
    box-shadow: 0 20px 40px rgba(168, 230, 255, 0.2);
}

.card h1 {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 42px;
    background: linear-gradient(to right, #fff, #a8e6ff, #7fdbff, #fff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes textShimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.card p {
    position: absolute;
    top: 90px;
    right: 30px;
    max-width: 250px;
    color: #f5f5f5;
    line-height: 1.8;
    z-index: 3;
}

.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.8s ease;
}

.card:hover video {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.card button {
    font-family: "Yekan Bakh";
    position: absolute;
    bottom: 25px;
    right: 30px;
    padding: 12px 35px;
    border: 1px solid rgba(168, 230, 255, 0.3);
    background: rgba(15, 18, 23, 0.8);
    color: #e0e0e0;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
}

.card button:hover {
    background: rgba(168, 230, 255, 0.9);
    color: #000;
    box-shadow: 0 6px 25px rgba(168, 230, 255, 0.5);
}

.card:nth-child(1) {
    aspect-ratio: 1 / 1.3;
}

.card:nth-child(2) {
    aspect-ratio: 1 / 0.9;
}

.card:nth-child(3) {
    aspect-ratio: 1 / 1.4;
}

.card:nth-child(4) {
    aspect-ratio: 16 / 9;
}

.card:nth-child(5) {
    aspect-ratio: 1 / 0.7;
}

.card:nth-child(6) {
    aspect-ratio: 1 / 0.5;
}

.packages-section {
    width: 90%;
    max-width: 1400px;
    margin: 80px auto 120px;
    padding: 20px 20px;
    position: relative;
    background: rgba(10, 15, 25, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 80px;
    border: 1px solid rgba(168, 230, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #a8e6ff, #7fdbff, #fff);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s ease-in-out infinite;
    letter-spacing: 3px;
}

.packages-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    perspective: 2000px;
}

.package-card {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(168, 230, 255, 0.08),
        rgba(127, 219, 255, 0.03)
    );
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(168, 230, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(168, 230, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(168, 230, 255, 0.2) 0%,
        transparent 70%
    );
    opacity: 0.5;
    transition: all 0.6s ease;
    pointer-events: none;
}

.package-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(168, 230, 255, 0.1) 40%,
        rgba(168, 230, 255, 0.2) 45%,
        rgba(168, 230, 255, 0.1) 50%,
        transparent 60%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 1s ease;
    pointer-events: none;
}

.package-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(168, 230, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(168, 230, 255, 0.3);
}

.package-card .package-icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 42px;
    color: #000;
    transform: rotate(45deg);
    transition: all 0.6s ease;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    box-shadow: 0 10px 30px rgba(168, 230, 255, 0.5);
    animation: iceShine 3s ease-in-out infinite;
}

@keyframes iceShine {
    0%,
    100% {
        filter: brightness(1);
        box-shadow: 0 10px 30px rgba(168, 230, 255, 0.5);
    }
    50% {
        filter: brightness(1.2);
        box-shadow: 0 15px 40px rgba(168, 230, 255, 0.8);
    }
}

.package-card .package-icon i {
    transform: rotate(-45deg);
}

.package-card:hover .package-icon {
    transform: rotate(0deg) scale(1.1);
    border-radius: 50%;
}

.package-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 0 20px rgba(168, 230, 255, 0.5);
}

.package-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
    min-height: 70px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: right;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(168, 230, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 14px;
}

.package-card:hover .package-features li {
    transform: translateX(-5px);
}

.package-features li i {
    color: #a8e6ff;
    font-size: 16px;
}

.package-price {
    font-size: 42px;
    font-weight: 900;
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: #a8e6ff;
    text-shadow: 0 0 20px rgba(168, 230, 255, 0.5);
}

.package-price span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.package-btn {
    font-family: "Yekan Bakh";
    padding: 14px 35px;
    border: none;
    border-radius: 35px;
    color: #000;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    box-shadow: 0 10px 30px rgba(168, 230, 255, 0.3);
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(168, 230, 255, 0.5);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(168, 230, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
}

.package-badge i {
    color: #a8e6ff;
}

.contact-section {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
    background: transparent;
    border-radius: 80px;

    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

#particles-js {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 80px;
}

.contact-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-header {
    text-align: right;
}

.contact-header p {
    font-size: 18px;
    font-weight: 600;
    color: #a8e6ff;
    text-shadow: 0 0 15px rgba(168, 230, 255, 0.5);
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 25px;
    background: rgba(168, 230, 255, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(168, 230, 255, 0.2);
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(to right, #fff, #a8e6ff, #7fdbff, #fff);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s ease-in-out infinite;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-header h1::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, transparent, #a8e6ff, transparent);
    border-radius: 2px;
}

.contact-details {
    background: rgba(168, 230, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 35px;
    border: 1px solid rgba(168, 230, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(168, 230, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(168, 230, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a8e6ff;
    border: 1px solid rgba(168, 230, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.contact-form {
    background: rgba(168, 230, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 35px;
    border: 1px solid rgba(168, 230, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: #a8e6ff;
    font-size: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 230, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-family: "Yekan Bakh", "Vazir", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8e6ff;
    background: rgba(168, 230, 255, 0.1);
    box-shadow: 0 0 20px rgba(168, 230, 255, 0.3);
}

.contact-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(168, 230, 255, 0.5);
}

.contact-btn i {
    font-size: 20px;
}

.contact-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-title {
    text-align: center;
}

.gallery-title h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(168, 230, 255, 0.5);
}

.gallery-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid rgba(168, 230, 255, 0.2);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(168, 230, 255, 0.6);
    box-shadow: 0 20px 40px rgba(168, 230, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 16px;
    font-weight: 700;
    color: #a8e6ff;
}

.gallery-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 25px;
    background: rgba(168, 230, 255, 0.05);
    border-radius: 40px;
    border: 1px solid rgba(168, 230, 255, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #a8e6ff;
    text-shadow: 0 0 20px rgba(168, 230, 255, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-end;
}

.contact-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(168, 230, 255, 0.08);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 230, 255, 0.1);
}

.contact-social a:hover {
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 230, 255, 0.5);
}

.footer {
    width: 100%;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        #020206 20%,
        #05050a 40%,
        #0a0a15 70%,
        #05050a 100%
    );
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to left, transparent, #a8e6ff, #7fdbff);
    border-radius: 2px;
}

.footer-column p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #a8e6ff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #a8e6ff;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid rgba(168, 230, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    color: white;
    font-family: "Yekan Bakh", "Vazir", sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #a8e6ff;
    box-shadow: 0 0 15px rgba(168, 230, 255, 0.3);
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(168, 230, 255, 0.4);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 230, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(168, 230, 255, 0.08);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 230, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #a8e6ff, #7fdbff);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 230, 255, 0.5);
}

.footer-bottom {
    margin-top: 50px;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(168, 230, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888888;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-particles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #a8e6ff 0%, transparent 70%);
    border-radius: 50%;
    animation: footerFloat 15s infinite linear;
}

@keyframes footerFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@supports (animation-timeline: view()) {
    .autoBlur {
        animation: autoBlurAnimation linear both;
        animation-timeline: view();
    }

    @keyframes autoBlurAnimation {
        0% {
            filter: blur(20px); /* از 40px به 20px کاهش */
        }
        40%,
        60% {
            filter: blur(0);
            transform: translateY(0px);
            opacity: 1;
        }
        100% {
            filter: blur(20px); /* از 40px به 20px کاهش */
            transform: translateY(-100px); /* از -200px به -100px */
            opacity: 0;
        }
    }

    .autoBlur-light {
        animation: autoBlurLightAnimation linear both;
        animation-timeline: view();
    }

    @keyframes autoBlurLightAnimation {
        0% {
            filter: blur(8px); /* از 15px به 8px کاهش */
            opacity: 0.7;
        }
        30%,
        70% {
            filter: blur(0);
            transform: translateY(0px);
            opacity: 1;
        }
        100% {
            filter: blur(8px); /* از 15px به 8px کاهش */
            transform: translateY(-50px); /* از -100px به -50px */
            opacity: 0.7;
        }
    }

    .autoTakeFull {
        animation: autoTakeFullAnimation both;
        animation-timeline: view(70% 65%);
    }

    @keyframes autoTakeFullAnimation {
        to {
            width: 100%;
            height: 100vh;
            border-radius: 0;
            margin-bottom: 100px;
        }
    }
    .autoDisplay {
        animation: autoDisplayAnimation both;
        animation-timeline: view(70% 5%);
    }

    @keyframes autoDisplayAnimation {
        from {
            opacity: 0;
            transform: translateY(200px) scale(0.3);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

@media screen and (max-width: 1200px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section {
        padding: 60px 40px;
    }

    .info-cards {
        column-count: 2;
    }
}

@media screen and (max-width: 992px) {
    .head-right {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-info h1 {
        font-size: 70px;
    }

    .packages-section {
        width: 95%;
    }

    .contact-section {
        width: 95%;
        padding: 50px 30px;
    }

    .info-cards {
        column-count: 2;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
        top: 10px;
    }

    .head-left button {
        display: none;
    }

    .hero-section {
        height: 80vh;
        margin-top: 60px;
    }

    .hero-info {
        right: 5%;
        padding: 30px;
        max-width: 90%;
    }

    .hero-info h1 {
        font-size: 50px;
    }

    .gaming-text {
        font-size: 50px;
    }

    .next-btn {
        width: 150px;
        height: 150px;
        bottom: 30px;
        top: auto;
    }

    .about-section {
        margin-top: 80px;
        padding: 40px 0;
    }

    .about-section h1 {
        font-size: 33px;
        font-weight: 600;
    }

    .stones-img {
        width: 350px;
        margin-top: 60%;
    }

    .image-box {
        width: 320px;
        height: 480px;
    }

    .info-section {
        min-height: auto;
        margin-bottom: 60px;
        padding: 30px 15px;
    }

    .info-cards {
        column-count: 2;
        column-gap: 15px;
    }

    .card {
        margin-bottom: 15px;
    }

    .card h1 {
        font-size: 28px;
        top: 15px;
        right: 15px;
    }

    .card p {
        font-size: 13px;
        top: 60px;
        right: 15px;
        max-width: 180px;
    }

    .card button {
        padding: 8px 20px;
        font-size: 13px;
        bottom: 15px;
        right: 15px;
    }

    .packages-section {
        padding: 20px 15px;
        margin: 60px auto 80px;
    }

    .packages-container {
        grid-template-columns: 1fr;
    }

    .packages-header h2 {
        font-size: 36px;
    }

    .package-card {
        padding: 30px 20px;
    }

    .package-price {
        font-size: 36px;
    }

    .contact-section {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .contact-header h1 {
        font-size: 36px;
    }

    .contact-details {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .gallery-stats {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }

    .footer-column:nth-child(1),
    .footer-column:nth-child(4) {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px 0;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 8px 15px;
    }

    .hero-section {
        height: 70vh;
        margin-top: 50px;
    }

    .hero-info h1 {
        font-size: 40px;
    }

    .hero-info {
        padding: 25px;
    }

    .about-welcome {
        font-size: 14px;
        padding: 12px 30px;
        letter-spacing: 2px;
    }

    .about-section h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .info-cards {
        column-count: 1;
    }

    .packages-header h2 {
        font-size: 28px;
    }

    .package-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-column:nth-child(1),
    .footer-column:nth-child(4) {
        grid-column: span 1;
    }

    .footer {
        padding: 40px 0 20px;
    }
}
