:root {
            --primary-color: #0a0a0a;
            --secondary-color: #00ff88;
            --accent-color: #8a2be2;
            --light-color: #ffffff;
            --dark-color: #121212;
            --shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            --gradient-reverse: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            --saudi-green: #006c35;
            --saudi-white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        body {
            background-color: var(--primary-color);
            color: var(--light-color);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 0.9rem;
        }

        /* شريط التنقل - تم تكبيره */
        header {
            background: rgba(10, 10, 10, 0.98);
            color: white;
            padding: 1.2rem 0; /* زيادة الحشوة لتكبير الشريط */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 255, 136, 0.3);
            transition: all 0.4s ease;
        }

        /* تأثير فتح وإغلاق النافبار */
        header.hidden {
            transform: translateY(-100%);
        }

        header.visible {
            transform: translateY(0);
        }

        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

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

        .logo {
            font-size: 1.8rem; /* زيادة حجم الشعار */
            font-weight: bold;
            display: flex;
            align-items: center;
            color: var(--light-color);
            text-shadow: 0 0 8px rgba(0, 255, 136, 0.7);
        }

        .logo i {
            margin-left: 8px;
            color: var(--secondary-color);
            font-size: 1.5rem; /* زيادة حجم الأيقونة */
        }

        .palestine-section {
            display: flex;
            align-items: center;
            background: linear-gradient(45deg, #000000, #006400, #000000);
            padding: 6px 15px; /* زيادة الحشوة */
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #006400; }
            to { box-shadow: 0 0 15px #00ff00, 0 0 25px #006400; }
        }

        .palestine-flag {
            width: 24px; /* زيادة حجم العلم */
            height: 17px; /* زيادة حجم العلم */
            background: linear-gradient(180deg, #000000 33%, #ffffff 33%, #ffffff 66%, #009639 66%, #009639 100%);
            margin-left: 8px;
            border-radius: 2px;
            position: relative;
        }

        .palestine-flag::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 33%;
            height: 100%;
            background: #ce1126;
            border-radius: 2px 0 0 2px;
        }

        .palestine-text {
            font-size: 0.9rem; /* زيادة حجم النص */
            font-weight: 600;
            color: #ffffff;
            text-shadow: 0 0 5px #00ff00;
        }

        /* تصميم هامبرجر متحرك */
        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 8px; /* زيادة الحشوة */
            z-index: 1001;
        }

        .hamburger {
            width: 30px; /* زيادة حجم الهامبرجر */
            height: 24px; /* زيادة حجم الهامبرجر */
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--secondary-color);
            border-radius: 3px;
            opacity: 1;
            right: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 10px; /* تعديل الموضع */
        }

        .hamburger span:nth-child(3) {
            top: 20px; /* تعديل الموضع */
        }

        .menu-toggle.active .hamburger span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .menu-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
            right: -20px;
        }

        .menu-toggle.active .hamburger span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* قائمة التنقل مع تأثيرات متقدمة */
        .nav-links {
            display: flex;
            list-style: none;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .nav-links li {
            margin: 0 12px; /* زيادة المسافة بين العناصر */
            opacity: 1;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 8px 15px; /* زيادة الحشوة */
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            font-size: 1rem; /* زيادة حجم الخط */
            display: flex;
            align-items: center;
        }

        .nav-links a i {
            margin-left: 5px;
            font-size: 0.9rem; /* زيادة حجم الأيقونات */
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -1;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .nav-links a:hover::before {
            transform: translateX(0);
        }

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

        /* الأقسام الرئيسية */
        section {
            padding: 70px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            padding-bottom: 8px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background: var(--gradient);
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            border-radius: 2px;
        }

        /* قسم التعريف - تصميم جديد مميز */
        #intro {
            background: 
                radial-gradient(circle at 90% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 10% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            margin-top: 80px; /* زيادة الهامش العلوي ليتناسب مع الشريط الأكبر */
            border-radius: 0 0 0 50px;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            border-right: 5px solid var(--secondary-color);
        }

        #intro::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, transparent 70%, rgba(0, 255, 136, 0.05) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><path d="M20,20 Q50,10 80,20 T80,80 Q50,90 20,80 T20,20 Z" fill="none" stroke="%2300ff88" stroke-width="2"/></svg>');
            background-size: cover, 200px 200px;
        }

        .intro-content {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
            width: 100%;
            max-width: 800px;
            margin-right: 5%;
            position: relative;
            z-index: 2;
        }

        .intro-badge {
            background: var(--gradient);
            color: var(--primary-color);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
            display: inline-block;
            animation: pulse 2s infinite;
        }

        .intro-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
            line-height: 1.2;
            position: relative;
        }

        .intro-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 150px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .intro-subtitle {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
        }

        .intro-description {
            background: rgba(18, 18, 18, 0.7);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border-right: 3px solid var(--secondary-color);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .intro-description::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient);
        }

        .intro-description p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 20px;
            line-height: 1.8;
            text-align: justify;
        }

        .intro-description p:last-child {
            margin-bottom: 0;
        }

        .intro-features {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .feature-item {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 15px;
            padding: 15px 20px;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(0, 255, 136, 0.2);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
        }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .feature-text {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .intro-actions {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }

        .btn {
            display: inline-block;
            background: var(--gradient);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
            font-size: 0.9rem;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-reverse);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 255, 136, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }

        .btn-secondary:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        /* تأثيرات النبض */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
        }

        /* قسم الرتب - كروت عريضة */
        #ranks {
            background: radial-gradient(circle at top left, rgba(138, 43, 226, 0.15), transparent 40%),
                        radial-gradient(circle at bottom right, rgba(0, 255, 136, 0.15), transparent 40%),
                        var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            perspective: 1000px;
            height: 220px; /* تقليل الارتفاع ليتناسب مع التصميم الأفقي */
            position: relative;
            margin: 0 auto;
            width: 90%;
        }

        .carousel {
            width: 100%;
            height: 100%;
            position: absolute;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .carousel-item {
            position: absolute;
            width: 320px; /* زيادة العرض */
            height: 180px; /* تقليل الارتفاع */
            left: calc(50% - 160px);
            top: 20px;
            background: rgba(18, 18, 18, 0.9);
            border-radius: 12px;
            display: flex;
            flex-direction: row; /* تغيير إلى أفقي */
            align-items: center;
            justify-content: flex-start;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
            color: var(--light-color);
            text-align: right;
            padding: 15px;
            border: 1px solid rgba(0, 255, 136, 0.3);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.1;
            z-index: -1;
        }

        .carousel-item:hover {
            box-shadow: 0 12px 30px rgba(0, 255, 136, 0.4);
            transform: translateY(-8px) scale(1.04);
        }

        .rank-image {
            width: 100px; /* زيادة حجم الصورة */
            height: 100px; /* زيادة حجم الصورة */
            border-radius: 50%;
            overflow: hidden;
            margin-left: 15px; /* نقل الهامش إلى اليسار */
            margin-bottom: 0; /* إزالة الهامش السفلي */
            border: 2px solid rgba(0, 255, 136, 0.4);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
            position: relative;
            transition: var(--transition);
            flex-shrink: 0; /* منع الصورة من الانكماش */
        }

        .carousel-item:hover .rank-image {
            transform: scale(1.08);
            box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
        }

        .rank-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rank-badge {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 25px;
            height: 25px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 0.7rem;
            border: 2px solid var(--dark-color);
        }

        .rank-content {
            flex: 1; /* السماح للمحتوى بملء المساحة المتبقية */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .carousel-item h3 {
            font-size: 1.1rem;
            margin: 0 0 5px;
            color: var(--light-color);
            position: relative;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .rank-level {
            font-size: 0.75rem;
            color: var(--secondary-color);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .carousel-item p {
            font-size: 0.75rem;
            color: #cccccc;
            line-height: 1.4;
            margin-top: 6px;
            margin-bottom: 8px;
        }

        .rank-stats {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .stat-label {
            font-size: 0.65rem;
            color: #aaaaaa;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 35px;
            position: relative;
            z-index: 10;
        }

        .carousel-nav button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            opacity: 0.7;
            transition: var(--transition);
            position: relative;
        }

        .carousel-nav button.active {
            opacity: 1;
            transform: scale(1.2);
            background: var(--secondary-color);
            box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
        }

        /* قسم مميزات المملكة - كروت مصغرة */
        #kingdom {
            background: linear-gradient(135deg, rgba(0, 108, 53, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 108, 53, 0.1) 100%),
                        radial-gradient(circle at 20% 80%, rgba(0, 108, 53, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 108, 53, 0.2) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
            border-top: 2px solid var(--saudi-green);
            border-bottom: 2px solid var(--saudi-green);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* تصغير حجم الكروت */
            gap: 20px; /* تقليل المسافة بين الكروت */
            margin-top: 30px;
        }

        .feature-card {
            background: linear-gradient(145deg, rgba(0, 108, 53, 0.15), rgba(0, 0, 0, 0.8));
            border-radius: 12px; /* تقليل نصف القطر */
            padding: 20px; /* تقليل الحشوة */
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0, 108, 53, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            height: 100%; /* جعل جميع الكروت بنفس الارتفاع */
            display: flex;
            flex-direction: column;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--saudi-green), #ffffff, var(--saudi-green));
        }

        .feature-card:hover {
            transform: translateY(-6px); /* تقليل تأثير الرفع */
            box-shadow: 0 10px 20px rgba(0, 108, 53, 0.4);
            border-color: rgba(0, 108, 53, 0.6);
        }

        .feature-image {
            width: 100%;
            height: 130px; /* زيادة ارتفاع الصورة */
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
            flex-shrink: 0; /* منع الصورة من الانكماش */
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* جعل الصورة تملأ الحيز المخصص */
            transition: transform 0.5s ease;
        }

        .feature-card:hover .feature-image img {
            transform: scale(1.08); /* زيادة تأثير التكبير */
        }

        .feature-icon {
            width: 50px; /* تصغير الأيقونة */
            height: 50px;
            margin: 0 auto 12px;
            background: linear-gradient(135deg, var(--saudi-green), #00a859);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 0 12px rgba(0, 108, 53, 0.5);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.06) rotate(5deg);
            box-shadow: 0 0 20px rgba(0, 108, 53, 0.7);
        }

        .feature-card h3 {
            font-size: 1.1rem; /* تصغير حجم الخط */
            margin-bottom: 10px;
            color: var(--saudi-white);
            position: relative;
            flex-shrink: 0;
        }

        .feature-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 50%;
            transform: translateX(50%);
            width: 30px;
            height: 2px;
            background: var(--saudi-green);
            border-radius: 1px;
        }

        .feature-card p {
            color: #cccccc;
            line-height: 1.5;
            font-size: 0.8rem; /* تصغير حجم الخط */
            flex-grow: 1; /* السماح للنص بملء المساحة المتبقية */
        }

        .kingdom-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 40px;
            padding: 25px;
            background: rgba(0, 108, 53, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(0, 108, 53, 0.3);
        }

        .stat-item {
            text-align: center;
            padding: 15px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--saudi-green);
            text-shadow: 0 0 8px rgba(0, 108, 53, 0.5);
            margin-bottom: 8px;
        }

        .stat-text {
            color: var(--saudi-white);
            font-size: 0.9rem;
        }

        /* قسم النقابات - كروت مصغرة */
        #guilds {
            background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(0, 255, 136, 0.1), transparent 40%),
                        var(--dark-color);
            position: relative;
            overflow: hidden;
        }

        .guilds-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* تصغير حجم الكروت */
            gap: 18px; /* تقليل المسافة بين الكروت */
        }

        .guild-card {
            background: rgba(18, 18, 18, 0.85);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 255, 136, 0.25);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .guild-card:hover {
            transform: translateY(-5px) scale(1.02); /* تقليل تأثير الرفع */
            box-shadow: 0 8px 18px rgba(0, 255, 136, 0.3);
            border-color: rgba(0, 255, 136, 0.5);
        }

        .guild-image {
            width: 100%;
            height: 140px; /* زيادة ارتفاع الصورة */
            overflow: hidden;
            flex-shrink: 0;
        }

        .guild-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* جعل الصورة تملأ الحيز المخصص */
            transition: transform 0.5s ease;
        }

        .guild-card:hover .guild-image img {
            transform: scale(1.08); /* زيادة تأثير التكبير */
        }

        .guild-header {
            background: var(--gradient);
            color: var(--primary-color);
            padding: 12px 15px; /* تقليل الحشوة */
            text-align: center;
            position: relative;
            flex-shrink: 0;
        }

        .guild-header h3 {
            font-size: 1rem; /* تصغير حجم الخط */
            margin-bottom: 4px;
        }

        .guild-header p {
            font-size: 0.75rem; /* تصغير حجم الخط */
            opacity: 0.9;
        }

        .guild-body {
            padding: 15px;
            flex-grow: 1; /* السماح للجسم بملء المساحة المتبقية */
            display: flex;
            flex-direction: column;
        }

        .guild-body p {
            color: #cccccc;
            margin-bottom: 10px;
            line-height: 1.4;
            font-size: 0.8rem; /* تصغير حجم الخط */
            flex-grow: 1;
        }

        .guild-body ul {
            list-style: none;
            margin: 10px 0;
            flex-shrink: 0;
        }

        .guild-body li {
            padding: 4px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            transition: var(--transition);
            font-size: 0.75rem; /* تصغير حجم الخط */
        }

        .guild-body li:hover {
            background: rgba(0, 255, 136, 0.05);
            padding-right: 5px;
        }

        .guild-body li i {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-left: 5px;
            font-size: 0.8rem;
        }

        .guild-footer {
            padding: 10px 15px; /* تقليل الحشوة */
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .members {
            display: flex;
            align-items: center;
            color: #cccccc;
            font-size: 0.75rem; /* تصغير حجم الخط */
        }

        .members i {
            margin-left: 4px;
            color: var(--secondary-color);
        }

        /* قسم الأخبار - كروت مصغرة */
        #news {
            background: radial-gradient(circle at top left, rgba(0, 255, 136, 0.1), transparent 40%),
                        radial-gradient(circle at bottom right, rgba(138, 43, 226, 0.1), transparent 40%),
                        var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* تصغير حجم الكروت */
            gap: 18px; /* تقليل المسافة بين الكروت */
        }

        .news-card {
            background: rgba(18, 18, 18, 0.85);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 255, 136, 0.25);
            backdrop-filter: blur(10px);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-5px) scale(1.02); /* تقليل تأثير الرفع */
            box-shadow: 0 8px 18px rgba(0, 255, 136, 0.3);
            border-color: rgba(0, 255, 136, 0.5);
        }

        .news-image {
            height: 150px; /* زيادة ارتفاع الصورة */
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s ease;
            flex-shrink: 0;
        }

        .news-card:hover .news-image {
            transform: scale(1.08); /* زيادة تأثير التكبير */
        }

        .news-content {
            padding: 15px;
            flex-grow: 1; /* السماح للمحتوى بملء المساحة المتبقية */
            display: flex;
            flex-direction: column;
        }

        .news-date {
            color: var(--secondary-color);
            font-size: 0.75rem; /* تصغير حجم الخط */
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .news-date i {
            margin-left: 4px;
        }

        .news-content h3 {
            font-size: 1rem; /* تصغير حجم الخط */
            margin-bottom: 8px;
            color: var(--light-color);
            line-height: 1.3;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .news-card:hover .news-content h3 {
            color: var(--secondary-color);
        }

        .news-content p {
            color: #cccccc;
            margin-bottom: 12px;
            line-height: 1.4;
            font-size: 0.8rem; /* تصغير حجم الخط */
            flex-grow: 1;
        }

        /* التذييل */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 30px 0 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0, 255, 136, 0.25);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
        }

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

        .footer-logo {
            font-size: 1.6rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            color: var(--light-color);
            text-shadow: 0 0 8px rgba(0, 255, 136, 0.7);
            margin-bottom: 10px;
        }

        .footer-logo i {
            margin-left: 6px;
            color: var(--secondary-color);
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin: 0 6px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 255, 136, 0.3);
        }

        .social-links a i {
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 12px 0;
            gap: 10px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            font-size: 0.8rem;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .copyright {
            margin-top: 15px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            font-size: 0.8rem;
            color: #aaaaaa;
        }

        /* تأثيرات إضافية */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0px); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
            70% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
        }

        .particles {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: var(--secondary-color);
            border-radius: 50%;
            opacity: 0.2;
            animation: float linear infinite;
        }

        @keyframes float {
            to {
                transform: translateY(-1000px) rotate(360deg);
            }
        }

        /* تصميم متجاوب */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                text-align: center;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(15px);
                padding: 20px 0;
                transform: translateY(-20px);
                opacity: 0;
                transition: all 0.4s ease;
            }

            .nav-links.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
            }

            .nav-links li {
                margin: 0;
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
            .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

            .palestine-section {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .carousel-container {
                width: 90%;
                height: 200px;
            }
            
            .carousel-item {
                width: 280px;
                height: 160px;
                left: calc(50% - 140px);
                padding: 12px;
            }
            
            .rank-image {
                width: 80px;
                height: 80px;
                margin-left: 10px;
            }
            
            .carousel-item h3 {
                font-size: 1rem;
            }
            
            .carousel-item p {
                font-size: 0.7rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .kingdom-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .intro-content {
                margin-right: 0;
                align-items: center;
                text-align: center;
            }

            .intro-title {
                font-size: 2.5rem;
            }

            .intro-title::after {
                right: 50%;
                transform: translateX(50%);
            }

            .intro-features {
                justify-content: center;
            }

            .intro-actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.4rem;
            }

            .intro-title {
                font-size: 2rem;
            }

            .intro-subtitle {
                font-size: 1.1rem;
            }

            .intro-description {
                padding: 20px;
            }

            .intro-features {
                flex-direction: column;
                align-items: center;
            }

            .feature-item {
                width: 100%;
                max-width: 250px;
            }

            .carousel-container {
                height: 190px;
            }

            .carousel-item {
                width: 260px;
                height: 150px;
                left: calc(50% - 130px);
                padding: 10px;
            }
            
            .rank-image {
                width: 70px;
                height: 70px;
            }

            .guilds-container, .news-container {
                grid-template-columns: 1fr;
            }

            .footer-links {
                flex-direction: column;
                gap: 6px;
            }

            .kingdom-stats {
                grid-template-columns: 1fr;
            }
        }