/* Reset و استایل‌های پایه */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-tap-highlight-color: transparent; /* حذف highlight روی تاپ در موبایل */
        }

        /* جلوگیری از انتخاب و کپی متن */
        body {
            -webkit-user-select: none; /* Safari */
            -moz-user-select: none; /* Firefox */
            -ms-user-select: none; /* IE10+/Edge */
            user-select: none; /* Standard */
            background-color: var(--background-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* اجازه انتخاب برای input ها و textarea */
        input, textarea {
            -webkit-user-select: text; /* Safari */
            -moz-user-select: text; /* Firefox */
            -ms-user-select: text; /* IE10+/Edge */
            user-select: text; /* Standard */
        }

        :root {
            --primary-color: #777bf2;
            --secondary-color: #1a3a5f;
            --accent-color: #5488e9;
            --text-dark: #333;
            --text-light: #777;
            --background-light: #f9f9f9;
            --white: #fff;
            --success-color: #28a745;
            --error-color: #dc3545;
            --gold-color: #ffd700;
            --silver-color: #c0c0c0;
            --bronze-color: #cd7f32;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* استایل هدر - به روز شده با رفع لرزش */
        header {
            background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(26, 58, 95, 0.7)),  
                        url('img/header-bg.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            perspective: 1000px;
            /* رفع لرزش در کروم */
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .header-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex: 1;
            width: 100%;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
            position: relative;
            /* رفع لرزش */
            transform: translateZ(0);
            will-change: transform;
        }

        /* انیمیشن شناور - بهینه شده برای رفع لرزش */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotateX(0) rotateY(0) translateZ(0);
            }
            50% {
                transform: translateY(-10px) rotateX(2deg) rotateY(1deg) translateZ(0);
            }
        }

        /* افکت سه بعدی برای محتوای هدر */
        .header-content::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, 
                rgba(194, 154, 92, 0.3) 0%, 
                rgba(212, 167, 95, 0.2) 25%, 
                rgba(232, 176, 84, 0.4) 50%, 
                rgba(194, 154, 92, 0.2) 75%, 
                rgba(236, 233, 5, 0.3) 100%);
            border-radius: 30px;
            z-index: -1;
            transform: translateZ(-20px);
            filter: blur(15px);
            opacity: 0.7;
        }

        /* افکت نور پس‌زمینه */
        .header-content::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80%;
            height: 80%;
            background: radial-gradient(
                ellipse at center,
                rgba(194, 154, 92, 0.4) 0%,
                rgba(194, 154, 92, 0.2) 40%,
                transparent 70%
            );
            transform: translate(-50%, -50%) translateZ(-30px);
            z-index: -2;
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) translateZ(-30px) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) translateZ(-30px) scale(1.1);
            }
        }

        /* استایل عنوان اصلی - به روز شده با رفع لرزش */
        .main-title {
            font-family: 'B Nazanin', 'B Lotus', Tahoma, sans-serif;
            font-size: 4rem;
            margin: 0 auto 20px;
            text-shadow: 
                2px 2px 8px rgba(0, 0, 0, 0.7),
                0 0 15px rgba(194, 154, 92, 0.5),
                0 0 30px rgba(232, 176, 84, 0.3);
            line-height: 1.3;
            font-weight: normal;
            position: relative;
            display: inline-block;
            padding: 35px 60px;
            min-height: 180px;
            background: linear-gradient(135deg, 
                rgba(194, 154, 92, 0.4) 0%, 
                rgba(212, 167, 95, 0.3) 25%, 
                rgba(232, 176, 84, 0.5) 50%, 
                rgba(194, 154, 92, 0.3) 75%, 
                rgba(212, 167, 95, 0.4) 100%);
            border-radius: 20px;
            border: 2px solid rgba(232, 176, 84, 0.5);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.4),
                0 5px 15px rgba(194, 154, 92, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            text-align: center;
            width: auto;
            max-width: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
            /* رفع لرزش */
            transform: translateZ(0);
            will-change: transform;
        }

        .main-title:hover {
            transform: translateY(-5px) rotateX(5deg) rotateY(2deg) translateZ(0);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 10px 25px rgba(194, 154, 92, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
        }

        .main-title::before {
            content: '';
            position: absolute;
            top: -4px;
            right: -4px;
            bottom: -4px;
            left: -4px;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(232, 176, 84, 0.3) 25%, 
                rgba(255, 215, 0, 0.4) 50%, 
                rgba(232, 176, 84, 0.3) 75%, 
                transparent 100%);
            border-radius: 24px;
            z-index: -1;
            animation: glow 3s ease-in-out infinite alternate;
            transform: translateZ(-5px);
        }

        /* افکت سایه سه بعدی */
        .main-title::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                transparent 50%);
            border-radius: 25px;
            z-index: -2;
            transform: translateZ(-15px);
            filter: blur(10px);
            opacity: 0.6;
        }

        /* استایل متن در هدر */
        header p {
            font-size: 2rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 
                1px 1px 3px rgba(0, 0, 0, 0.5),
                0 0 10px rgba(194, 154, 92, 0.3);
            position: relative;
            z-index: 1;
            transform-style: preserve-3d;
            animation: textFloat 8s ease-in-out infinite;
            /* رفع لرزش */
            transform: translateZ(0);
        }

        @keyframes textFloat {
            0%, 100% {
                transform: translateY(0) translateZ(0);
            }
            50% {
                transform: translateY(-5px) translateZ(5px);
            }
        }

        /* دکمه CTA - به روز شده با رفع لرزش */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, 
                var(--accent-color) 0%, 
                #d4a75f 50%, 
                var(--primary-color) 100%);
            color: var(--text-dark);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.3),
                0 4px 10px rgba(194, 154, 92, 0.4);
            position: relative;
            z-index: 1;
            transform-style: preserve-3d;
            overflow: hidden;
            /* رفع لرزش */
            transform: translateZ(0);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                #c19a5c 50%, 
                #a8844a 100%);
            color: var(--white);
            transform: translateY(-3px) translateZ(10px);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.4),
                0 8px 20px rgba(194, 154, 92, 0.5);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* استایل‌های واکنش‌گرا برای هدر به روز شده با رفع لرزش */
        @media (max-width: 768px) {
            .header-content {
                animation: floatMobile 6s ease-in-out infinite;
            }
            
            @keyframes floatMobile {
                0%, 100% {
                    transform: translateY(0) translateZ(0);
                }
                50% {
                    transform: translateY(-5px) translateZ(0);
                }
            }
            
            .main-title {
                font-size: 2.5rem;
                padding: 20px 30px;
                transform: translateZ(0);
            }
            
            .main-title:hover {
                transform: translateY(-3px) translateZ(0);
            }
            
            header p {
                font-size: 1.5rem;
                animation: textFloatMobile 8s ease-in-out infinite;
            }
            
            @keyframes textFloatMobile {
                0%, 100% {
                    transform: translateY(0) translateZ(0);
                }
                50% {
                    transform: translateY(-3px) translateZ(0);
                }
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.8rem;
                padding: 12px 18px;
            }
            
            header p {
                font-size: 1.2rem;
            }
        }

        .logo {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 120px;
        }

        .language-switcher {
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .language-switcher a {
            color: var(--white);
            text-decoration: none;
            margin: 0 5px;
            font-size: 14px;
        }

        /* استایل نوار ناوبری */
        nav {
            background-color: var(--secondary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            /* رفع لرزش */
            transform: translateZ(0);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
        }

        nav li {
            position: relative;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        nav a:hover {
            background-color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        /* استایل بخش‌ها */
        section {
            padding: 80px 0;
            /* رفع لرزش */
            transform: translateZ(0);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        /* استایل عناوین بخش‌ها */
        .section-title h2 {
            font-family: 'B Nazanin', 'B Lotus', Tahoma, sans-serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: normal;
            position: relative;
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, 
                rgba(194, 154, 92, 0.15) 0%, 
                rgba(232, 176, 84, 0.08) 50%, 
                rgba(194, 154, 92, 0.15) 100%);
            border-radius: 15px;
            border: 2px solid rgba(194, 154, 92, 0.2);
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
            text-shadow: 0 0 10px rgba(194, 154, 92, 0.2);
            transition: all 0.3s ease;
            /* رفع لرزش */
            transform: translateZ(0);
        }

        .section-title h2:hover {
            transform: translateY(-2px) translateZ(0);
            box-shadow: 
                0 8px 25px rgba(194, 154, 92, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            border-color: rgba(194, 154, 92, 0.4);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary-color) 50%, 
                transparent 100%);
            margin: 20px auto 0;
        }

        /* استایل‌های مربوط به چرخ شانس جدید */
        .wheel-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .wheel-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto 40px;
        }

        .wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
            transition: transform 4s cubic-bezier(0.2, 0.8, 0.3, 1);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .wheel-slice {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-origin: center;
            clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
        }

        .wheel-pointer {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #ff0000;
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            z-index: 100;
            filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
        }

        .wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
            border: 5px solid #ffd700;
            z-index: 50;
        }

        .wheel-label {
            position: absolute;
            font-weight: bold;
            font-size: 1.4rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            transform-origin: center;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spin-button {
            background: linear-gradient(135deg, #ffd700, #e8b054);
            color: #333;
            border: none;
            padding: 18px 50px;
            font-size: 1.4rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            margin: 20px 0;
            font-weight: bold;
        }

        .spin-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .spin-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            background: #ccc;
        }

        .score-display {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 25px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .current-spin {
            font-size: 1.3rem;
            margin: 15px 0;
            padding: 12px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
        }

        .spins-left {
            font-size: 1.2rem;
            margin: 15px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
        }

        .prize-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 20px;
            margin: 25px 0;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .prize-level {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            margin: 8px 0;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .prize-level.current {
            background: rgba(255, 215, 0, 0.4);
            border: 3px solid #ffd700;
            transform: scale(1.05);
        }

        .prize-level.locked {
            opacity: 0.6;
        }

        .prize-name {
            font-size: 1.1rem;
            font-weight: bold;
        }

        .prize-range {
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 15px;
        }

        @media (max-width: 768px) {
            .wheel-container {
                width: 320px;
                height: 320px;
            }
            
            .wheel-center {
                width: 100px;
                height: 100px;
                font-size: 1.6rem;
            }
            
            .wheel-label {
                font-size: 1.1rem;
            }
            
            .wheel-pointer {
                width: 50px;
                height: 50px;
                top: -25px;
            }
        }

        @media (max-width: 480px) {
            .wheel-container {
                width: 280px;
                height: 280px;
            }
            
            .wheel-center {
                width: 80px;
                height: 80px;
                font-size: 1.3rem;
            }
            
            .wheel-label {
                font-size: 0.9rem;
            }
            
            .wheel-pointer {
                width: 40px;
                height: 40px;
                top: -20px;
            }
        }

        /* استایل سیستم امتیازدهی */
        .reward-system {
            background: var(--background-light);
            padding: 60px 0;
            text-align: center;
        }

        .user-progress {
            max-width: 600px;
            margin: 0 auto 40px;
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 10px;
            transition: width 0.5s ease;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .achievements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .achievement {
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .achievement.completed {
            border-color: var(--success-color);
            background: linear-gradient(135deg, var(--white), #f8fff8);
        }

        .achievement.locked {
            opacity: 0.6;
            background: #f5f5f5;
        }

        .achievement.locked::after {
            content: '🔒';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 1.2rem;
        }

        .achievement-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .achievement.completed .achievement-icon {
            color: var(--gold-color);
        }

        .achievement-points {
            color: var(--primary-color);
            font-weight: bold;
            margin-top: 10px;
        }

        /* استایل پاپ‌آپ مسابقه */
        .contest-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
        }

        .contest-content {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            animation: popIn 0.5s ease;
            position: relative;
        }

        @keyframes popIn {
            0% { transform: scale(0.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .close-popup {
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .contest-prize {
            background: linear-gradient(135deg, #fff9c4, #ffecb3);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            border: 2px dashed var(--gold-color);
        }

        .prize-list {
            list-style: none;
            padding: 0;
            text-align: right;
        }

        .prize-list li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .prize-list li:last-child {
            border-bottom: none;
        }

        /* بقیه استایل‌های موجود شما... */

        /* استایل بخش رستوران */
        .restaurant-section {
            background: 
                linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('img/restaurant-bg.jpg') center/cover no-repeat;
            color: var(--white);
            text-align: center;
            padding: 80px 0;
            position: relative;
        }

        /* استایل مخصوص برای عنوان رستوران در بخش تیره */
        .restaurant-section .section-title h2 {
            color: var(--white);
            background: linear-gradient(135deg, 
                rgba(232, 176, 84, 0.2) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(232, 176, 84, 0.2) 100%);
            border: 2px solid rgba(232, 176, 84, 0.3);
            text-shadow: 
                0 0 10px rgba(232, 176, 84, 0.3),
                0 0 20px rgba(232, 176, 84, 0.2);
        }

        .restaurant-section .section-title::after {
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--accent-color) 50%, 
                transparent 100%);
        }

        .restaurant-info {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        /* استایل بخش اطلاعات */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .info-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
        }

        .info-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .info-card-content {
            padding: 20px;
        }

        .info-card h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        /* استایل بخش فروشگاه‌ها */
        .floor-plans {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .floor-plan {
            flex: 1 1 calc(25% - 20px);
            min-width: 250px;
            max-width: 300px;
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .floor-plan-header {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 15px;
            text-align: center;
        }

        .floor-plan-content {
            padding: 20px;
        }

        .floor-plan-content ul {
            list-style-type: none;
            padding: 0;
        }

        .floor-plan-content li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .floor-plan-content li:before {
            content: '✓';
            color: var(--primary-color);
            margin-left: 10px;
            font-weight: bold;
        }

        @media (max-width: 1200px) {
            .floor-plan {
                flex: 1 1 calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .floor-plan {
                flex: 1 1 100%;
            }
        }

        /* استایل بخش کافه */
        .cafe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .cafe-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .cafe-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .cafe-item:hover img {
            transform: scale(1.1);
        }

        .cafe-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cafe-item:hover .cafe-info {
            transform: translateY(0);
        }

        /* استایل بخش پارکینگ */
        .parking-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .parking-text {
            flex: 1;
            min-width: 300px;
        }

        .parking-image {
            flex: 1;
            min-width: 300px;
        }

        .parking-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* استایل گالری */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* استایل بخش رویدادها */
        .events-timeline-with-line {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }

        /* خط عمودی آبی */
        .events-timeline-with-line::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 4px;
            background: linear-gradient(to bottom, 
                var(--primary-color) 0%, 
                var(--accent-color) 50%, 
                var(--primary-color) 100%);
            border-radius: 2px;
            z-index: 1;
        }

        .event-item-with-dot {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* دایره‌های آبی */
        .event-item-with-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 3px var(--primary-color);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .event-item-with-dot:hover::before {
            background-color: var(--accent-color);
            transform: translate(50%, -50%) scale(1.2);
            box-shadow: 0 0 0 3px var(--accent-color), 0 0 20px rgba(84, 136, 233, 0.5);
        }

        .event-content {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 45%;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }

        /* آیتم‌های زوج در سمت چپ */
        .event-item-with-dot:nth-child(odd) .event-content {
            margin-left: auto;
            margin-right: 55%;
        }

        /* آیتم‌های فرد در سمت راست */
        .event-item-with-dot:nth-child(even) .event-content {
            margin-left: 55%;
            margin-right: auto;
        }

        .event-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(194, 154, 92, 0.3);
        }

        .event-content h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: bold;
        }

        .event-date {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
        }

        .event-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* استایل واکنش‌گرا برای موبایل */
        @media (max-width: 768px) {
            .events-timeline-with-line::before {
                right: 30px;
            }
            
            .event-item-with-dot::before {
                right: 30px;
            }
            
            .event-content {
                width: 80%;
                margin-left: auto !important;
                margin-right: auto !important;
                text-align: right;
            }
            
            .event-item-with-dot:nth-child(odd) .event-content,
            .event-item-with-dot:nth-child(even) .event-content {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 480px) {
            .events-timeline-with-line::before {
                right: 20px;
            }
            
            .event-item-with-dot::before {
                right: 20px;
                width: 16px;
                height: 16px;
            }
            
            .event-content {
                width: 85%;
                padding: 20px 15px;
            }
            
            .event-content h3 {
                font-size: 1.2rem;
            }
            
            .event-date {
                font-size: 1rem;
            }
        }

        /* استایل فرم باشگاه مشتریان */
        .membership-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(194, 154, 92, 0.2);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-message {
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--success-color);
            border: 1px solid var(--success-color);
            display: block;
        }

        .form-message.error {
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--error-color);
            border: 1px solid var(--error-color);
            display: block;
        }

        .form-loading {
            display: none;
            text-align: center;
            padding: 10px;
        }

        .form-loading .spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* استایل فوتر */
        footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* دکمه بازگشت به بالا */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* استایل‌های ویدیو */
        .column {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .column video {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .desc {
            margin-top: 10px;
            font-weight: bold;
        }

        /* استایل‌های واکنش‌گرا */
        @media (max-width: 992px) {
            .main-title {
                font-size: 3rem;
                padding: 25px 40px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 100px 0 60px;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .header-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex: 1;
                width: 100%;
                text-align: center;
            }
            
            .main-title {
                font-size: 2.5rem;
                padding: 20px 30px;
                margin: 0 auto 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 90%;
                text-align: center;
            }
            
            .restaurant-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
                padding: 10px 20px;
            }
            
            header p {
                font-size: 1.5rem;
            }
            
            /* منوی موبایل */
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--secondary-color);
                padding-top: 60px;
                transition: right 0.3s ease;
                z-index: 1000;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                right: 0;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 2rem;
                padding: 15px 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
                padding: 8px 15px;
            }
            
            header p {
                font-size: 1.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .restaurant-section {
                padding: 40px 0;
            }
            
            .main-title {
                font-size: 1.8rem;
                padding: 12px 18px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
                padding: 8px 12px;
            }
        }

        /* اطمینان از بارگذاری فونت در موبایل */
        .nastaliq-text {
            font-family: 'B Nazanin', 'B Lotus', Tahoma, sans-serif;
        }

        .map-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-bottom: 2px solid #f0f0f0;
        }

        .map-container iframe {
            border: none;
        }

        /* استایل‌های تقویم شمسی */
        .date-input-container {
            position: relative;
        }

        .date-input-container::after {
            content: '\f073';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            pointer-events: none;
        }

        /* پخش کننده موسیقی */
        .music-player {
            position: fixed;
            top: 70px;
            left: 30px;
            background: rgba(194, 154, 92, 0.9);
            border-radius: 25px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 998;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .music-player:hover {
            background: rgba(194, 154, 92, 1);
            transform: scale(1.05);
        }

        .music-player.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }

        .music-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .music-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .music-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .music-info {
            color: white;
            font-size: 0.8rem;
            max-width: 150px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .volume-slider {
            width: 70px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            outline: none;
            -webkit-appearance: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
        }

        /* استایل‌های واکنش‌گرا برای پخش کننده موسیقی */
        @media (max-width: 768px) {
            .music-player {
                top: 60px;
                left: 20px;
                padding: 8px 12px;
                width: 70%;
                max-width: 280px;
                min-width: 200px;
            }
            
            .music-info {
                max-width: 80px;
                font-size: 0.7rem;
            }
            
            .volume-slider {
                width: 40px;
            }
            
            .music-controls {
                gap: 5px;
            }
            
            .music-btn {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .music-player {
                width: 60%;
                left: 15px;
                padding: 6px 10px;
            }
            
            .music-info {
                max-width: 60px;
                font-size: 0.65rem;
            }
            
            .volume-slider {
                width: 35px;
            }
        }



        /*       استایل های جدید    نخواستی پاک کن    */

        /* تغییر رنگ زمینه اصلی به سرمه‌ای دیپاماتیک */
body {
    background-color: #0a0e17;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(15, 25, 47, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(20, 30, 58, 0.6) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(10, 14, 23, 0.9) 0%, transparent 50%);
    background-attachment: fixed;
}

/* بهبود خوانایی متن روی زمینه تیره */
section {
    background: rgba(15, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid rgba(86, 108, 160, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* استایل‌های خاص برای بخش‌های مختلف */
#about,
#floors,
#cafe,
#parking,
#gallery,
#events,
#membership,
#contact {
    background: rgba(12, 20, 38, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(67, 97, 158, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* بهبود خوانایی متن */
.section-title h2 {
    color: #e8e6e3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.section-title p {
    color: #b8b6b3;
}

/* بهبود کارت‌های اطلاعاتی */
.info-card {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

.info-card h3 {
    color: #d4af37;
}

/* بهبود بخش طبقات */
.floor-plan {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

.floor-plan-header {
    background: linear-gradient(135deg, #1a2b4d, #2a3b5d);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* بهبود فوتر */
footer {
    background: linear-gradient(135deg, #0a0e17, #1a2438);
    border-top: 3px solid rgba(212, 175, 55, 0.3);
}

/* بهبود ناوبری */
nav {
    background: linear-gradient(135deg, #0f192f, #1a2b4d);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* بهبود فرم‌ها */
.membership-form {
    background: rgba(18, 28, 50, 0.95);
    border: 1px solid rgba(67, 97, 158, 0.4);
    color: #e8e6e3;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(67, 97, 158, 0.4);
    color: #e8e6e3;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* بهبود گالری */
.gallery-item {
    border: 2px solid rgba(67, 97, 158, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
}

/* بهبود تایم‌لاین رویدادها */
.event-content {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

.event-content h3 {
    color: #d4af37;
}

.event-date {
    color: #8ab4f8;
}

/* بهبود دکمه‌ها */
.cta-button {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0e17;
    font-weight: bold;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e5c158, #d4af37);
    color: #0a0e17;
}

.games-button {
    background: linear-gradient(135deg, #8ab4f8, #669df6);
    color: #0a0e17;
    font-weight: bold;
}

.games-button:hover {
    background: linear-gradient(135deg, #a8c7fa, #8ab4f8);
    color: #0a0e17;
}

/* رفع مشکل باکس باشگاه مشتریان */
#membership {
    background: rgba(12, 20, 38, 0.85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(67, 97, 158, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #e8e6e3;
}

#membership .section-title h2 {
    color: #e8e6e3 !important;
}

#membership .section-title p {
    color: #b8b6b3 !important;
}

#membership .membership-info {
    color: #e8e6e3;
}

#membership .membership-info p {
    color: #b8b6b3;
}

/* رفع مشکل باکس گالری تصاویر */
#gallery {
    background: rgba(12, 20, 38, 0.85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(67, 97, 158, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#gallery .section-title h2 {
    color: #e8e6e3 !important;
}

#gallery .section-title p {
    color: #b8b6b3 !important;
}

/* رفع مشکل باکس طبقات مرکز خرید */
#floors {
    background: rgba(12, 20, 38, 0.85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(67, 97, 158, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#floors .section-title h2 {
    color: #e8e6e3 !important;
}

#floors .section-title p {
    color: #b8b6b3 !important;
}

#floors .floor-plan {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

#floors .floor-plan-header {
    background: linear-gradient(135deg, #1a2b4d, #2a3b5d);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    color: #e8e6e3;
}

#floors .floor-plan-header h3 {
    color: #d4af37 !important;
}

#floors .floor-plan-header p {
    color: #b8b6b3 !important;
}

#floors .floor-plan-content {
    color: #e8e6e3;
}

#floors .floor-plan-content ul li {
    color: #e8e6e3;
    border-bottom: 1px solid rgba(67, 97, 158, 0.2);
}

#floors .floor-plan-content ul li:before {
    color: #d4af37;
}

/* بهبود هدر صفحه اصلی */
header {
    background: linear-gradient(rgba(10, 14, 23, 0.9), rgba(15, 25, 47, 0.8)),  
                url('img/header-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* بهبود کارت‌های اطلاعاتی در بخش درباره ما */
#about .info-card {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

#about .info-card h3 {
    color: #d4af37;
}

#about .info-card p {
    color: #b8b6b3;
}

/* بهبود بخش کافه و شیرینی */
#cafe .cafe-item .cafe-info {
    background: rgba(18, 28, 50, 0.95);
    color: #e8e6e3;
}

#cafe .cafe-item .cafe-info h3 {
    color: #d4af37;
}

#cafe .cafe-item .cafe-info p {
    color: #b8b6b3;
}

/* بهبود بخش پارکینگ */
#parking .parking-text {
    color: #e8e6e3;
}

#parking .parking-text h3 {
    color: #d4af37;
}

#parking .parking-text ul li {
    color: #b8b6b3;
}

/* بهبود بخش رویدادها */
#events .event-content {
    background: rgba(18, 28, 50, 0.9);
    border: 1px solid rgba(67, 97, 158, 0.3);
    color: #e8e6e3;
}

#events .event-content h3 {
    color: #d4af37;
}

#events .event-content p {
    color: #b8b6b3;
}

/* بهبود بخش تماس با ما */
#contact .footer-column {
    color: #e8e6e3;
}

#contact .footer-column h3 {
    color: #d4af37;
}

#contact .footer-column p {
    color: #b8b6b3;
}

/* بهبود ویدیوها و توصیفات */
.column .desc {
    color: #e8e6e3;
    background: rgba(18, 28, 50, 0.8);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(67, 97, 158, 0.3);
}

/* بهبود منوی فوتر */
footer .footer-column h3 {
    color: #d4af37;
}

footer .footer-column p,
footer .footer-column ul li a {
    color: #b8b6b3;
}

footer .footer-column ul li a:hover {
    color: #d4af37;
}

/* بهبود سوشال لینک‌ها */
.social-links a {
    background: rgba(67, 97, 158, 0.3);
    border: 1px solid rgba(86, 108, 160, 0.5);
}

.social-links a:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}