




   /* تنسيق زر تسجيل الدخول الثابت */
        #scrollLoginBtn  {
            position: fixed;
            top: 20px;
          left: 20px;
        display: none; /* مخفي في البداية */
            opacity: 0; /* للإضافة المؤثرات لاحقًا */
            z-index: 1000;
            padding: 10px 15px;
            background-color: #4CAF50; /* لون الزر */
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: opacity 0.3s ease-in-out; /* تأثير ظهور/اختفاء سلس */
            font-weight: bold;
        }

        #scrollLoginBtn:hover {
            background-color: #45a049; /* لون الزر عند التحويم */
        }

        #scrollLoginBtn.show {
            display: block;
            opacity: 1; /* يظهر بالكامل */
        }







/* Reset and Base Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #CD853F;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --text-color: #333;
    --text-light: #777;
    --border-color: #ddd;
    --online-color: #4CAF50;
    --offline-color: #F44336;
    --recommended-color: #FFD700;
}

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



.Inf h1 {
    --fontFamily
"Red Rose",serif: "Red Rose", serif;
    position: absolute;
    font-size: 25px;
    margin-block-end: 20px;
    text-align: center;
    left: 10;
    color: #27ff6b;
    margin-top: 13px;
}














html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #6B3100;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #AD753F;
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Top Navigation */
.top-nav {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-links a {
    margin-right: 15px;
    color: #ccc;
    transition: color 0.3s ease;
}

.top-links a:hover {
    color: white;
}

.top-links a i {
    margin-left: 5px;
}

.server-time {
    display: flex;
    align-items: center;
}

.server-time i {
    margin-left: 5px;
}

/* Main Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    padding: 10px 15px;
    margin: 0 5px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-links a i {
    margin-left: 5px;
}

.auth-buttons .btn {
    margin-right: 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-register {
    background-color: var(--primary-color);
    color: white;
}

.btn-register:hover {
    background-color: #6B3100;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

/* Hero Banner */
.hero-banner {
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.webp') no-repeat center center/cover; */
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-play {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-play:hover {
    background-color: #6B3100;
    transform: translateY(-3px);
}

.btn-trailer {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-trailer:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.server-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Game Features */
.game-features {
    padding: 0 0 40 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Servers Section */
.servers-section {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.server-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.server-card.recommended {
    border: 2px solid #735d53;
    /* background-image: url(../img-styles/x2.png); */
}

.recommended-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--recommended-color);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.server-header {
    padding: 5px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.server-header h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.server-status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.server-status.online {
    background-color: var(--online-color);
    padding: 3 15 2 15;
}

.server-status.offline {
    background-color: var(--offline-color);
}

.server-info {
    padding: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--border-color);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.btn-join {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
}

.btn-join:hover {
    background-color: #6B3100;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    color: var(--primary-color);
    font-weight: bold;
}

.view-all-btn i {
    margin-right: 5px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background-color: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.screenshot {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.screenshot img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    color: white;
    font-size: 2rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.news-title {
    padding: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.news-excerpt {
    padding: 0 15px 15px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.read-more i {
    margin-right: 5px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-right: 5px;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-nav .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .server-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        /* font-size: 1.8rem; */
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .auth-buttons {
        display: none;
    }
}





        .close-btn {
            position: absolute;
            top: -14px;
            left: -1px;
            color: #d4af37;
            font-size: 28px;
            cursor: pointer;
            transition: 0.3s;
            z-index: 1001;
        }

        .close-btn:hover {
            color: #8b0000;
            transform: scale(1.2);
        }

        /* ØªØ¹Ø¯ÙŠÙ„Ø§Øª ØªÙ†Ø³ÙŠÙ‚ Ø§Ù„Ù†ÙˆØ§ÙØ° */
        .modal {
            /* position: fixed; */
            /* top: 50%; */
            /* left: 50%; */
            /* transform: translate(-50%, -50%); */
            /* background: #2d2d2d; */
            /* padding: 40px 30px 30px; */
            /* border-radius: 10px; */
            /* z-index: 1000; */
            /* display: none; */
            min-width: 400px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }
        /* Ø§Ù„Ø£Ù†Ù…Ø§Ø· Ø§Ù„Ø¹Ø§Ù…Ø© */
        body {
            background: #1a1a1a;
            color: #d4af37;
            font-family: 'Arial', sans-serif;
            margin: 0;
        }

        .nav-bar {
            background: #2d2d2da3;
            padding: 1rem;
            text-align: center;
            /* padding: 5 30 5 30; */
        }

        .nav-btn {
            background: none;
            border: none;
            color: #d4af37;
            margin: 0 1rem;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 1.1em;
        }

        .nav-btn:hover {
            color: #05070a;
        }

        .section {
            display: none;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .active {
            display: block;
        }

        /* Ø£Ù†Ù…Ø§Ø· Ø§Ù„Ù†ÙˆØ§ÙØ° Ø§Ù„Ù…Ù†Ø¨Ø«Ù‚Ø© */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: none;
            z-index: 999;
        }

        .modal {
            position: fixed;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #2d2d2d;
            padding: 1rem;
            border-radius: 5px;
            z-index: 1000;
            display: none;
        }

        /* Ø£Ù†Ù…Ø§Ø· Ø§Ù„Ù†Ù…Ø§Ø°Ø¬ */
        .form-box {
            max-width: 400px;
            margin: 0 auto;
        }

        input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            background: #333;
            border: 1px solid #444;
            color: white;
        }

        .form-btn {
            background: #8b0000;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            width: 100%;
            margin-top: 1rem;
        }




        /* Ø§Ù„ØªÙ†Ø³ÙŠÙ‚ Ø§Ù„Ø¹Ø§Ù… */
        body {
            font-family: Arial, sans-serif;
            /* display: flex; */
            justify-content: center;
            align-items: center;
            /* height: 100vh; */
            background-color: #f5f5f5;
            margin: 0;
        }

        /* ØªÙ†Ø³ÙŠÙ‚ Ø§Ù„Ø£Ø²Ø±Ø§Ø± */
        .nav-btn {
            padding: 12px 25px;
            margin: 0 10px;
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        /* Ø²Ø± ØªØ³Ø¬ÙŠÙ„ Ø§Ù„Ø¯Ø®ÙˆÙ„ (Ø£Ø²Ø±Ù‚) */
        button[onclick="showModal('login')"] {
            background: linear-gradient(162deg, #e1346d, #850935);
        }

        /* Ø²Ø± Ø­Ø³Ø§Ø¨ Ø¬Ø¯ÙŠØ¯ (Ø¨Ø±ØªÙ‚Ø§Ù„ÙŠ) */
        button[onclick="showModal('register')"] {
            background: linear-gradient(45deg, #13ad3b, #107514);
        }

        /* ØªØ£Ø«ÙŠØ± Ø§Ù„ØªØ­ÙˆÙŠÙ… */
        .nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        button[onclick="showModal('login')"]:hover {
            background: linear-gradient(45deg, #0D47A1, #2196F3);
        }

        button[onclick="showModal('register')"]:hover {
            background: linear-gradient(45deg, #035507, #13d93d);
        }

        /* ØªØ£Ø«ÙŠØ± Ø§Ù„Ø¶ØºØ· */
        .nav-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* ØªØ£Ø«ÙŠØ± Ripple (Ø¨Ø¹Ø¯Ø³Ø© Ù…Ø§Ø¦ÙŠØ©) */
        .nav-btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%, -50%);
            transform-origin: 50% 50%;
        }

        .nav-btn:hover::after {
            animation: ripple 1s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }

        /* Ø§Ù„Ù†ÙˆØ§ÙØ° Ø§Ù„Ù…Ù†Ø¨Ø«Ù‚Ø© (Modal) */
        .modal {
            display: none;
            /* position: fixed; */
            /* top: 0; */
            /* left: 0; */
            /* width: 100%; */
            /* height: 100%; */
            background-color: #c5c2ba;
            /* z-index: 1000; */
            /* justify-content: center; */
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 300px;
            text-align: center;
        }

        .close-btn {
            margin-top: 15px;
            padding: 1px 13;
            background: #ff4444;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
button.nav-btn {
    width: 160px;
    margin: 2 0 2 0;
}









































/* Ø§Ù„ØªØµÙ…ÙŠÙ… Ø§Ù„Ø£Ø³Ø§Ø³ÙŠ Ù„Ù„Ù€ Hero Banner */
.hero-banner {
    width: 100%;
    min-height: 30vh;
    background-image: url('https://mtatar.net/img-styles/imgmtatar.png');
    background-size: cover;
    /* background-position: center; */
    /* background: top; */
    20Ø­Ø¡:
    no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */ /* Ø·Ø¨Ù‚Ø© Ø´ÙØ§ÙØ© Ù„ØªØºÙ…ÙŠÙ‚ Ø§Ù„Ø®Ù„ÙÙŠØ© */
}

.container {
    position: relative;
    /* z-index: 2; */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ØªØµÙ…ÙŠÙ… Ø§Ù„Ø£Ø²Ø±Ø§Ø± */
.nav-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 12px 1px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.nav-btn:first-child {
    background-color: #ffffff;
    color: #ffffff;
}

.nav-btn:last-child {
    background-color: #4CAF50;
    color: white;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:first-child:hover {
    background-color: #f0f0f0;
}

.nav-btn:last-child:hover {
    background-color: #3e8e41;
}

/* Ø§Ù„ØªÙƒÙŠÙ Ù…Ø¹ Ø£Ø­Ø¬Ø§Ù… Ø§Ù„Ø´Ø§Ø´Ø§Øª Ø§Ù„Ù…Ø®ØªÙ„ÙØ© */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 50vh;
    }
    
    .nav-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 30vh;
        background-position: center;
        
        
        
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}



   .server-card {
        position: relative;
        width: 100%;
        max-width: 450px; /* ÙŠÙ…ÙƒÙ† ØªØ¹Ø¯ÙŠÙ„Ù‡Ø§ */
        margin: 20px auto;
        padding: 10px;
        border-radius: 10px;
        overflow: hidden; /* Ù„Ø¥Ø®ÙØ§Ø¡ Ø§Ù„Ø²ÙˆØ§Ø¦Ø¯ Ø®Ø§Ø±Ø¬ Ø§Ù„Ø­Ø¯ÙˆØ¯ */
        color: white; /* Ù„ÙˆÙ† Ø§Ù„Ù†Øµ */
        box-shadow: 0 5px 15px rgb(233 233 233 / 30%);
        
        /* Ø®Ù„ÙÙŠØ© Ù…ØªØ¬Ø§ÙˆØ¨Ø© */
        /* background-image: url('../img-styles/x6.png'); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 2px solid #735d53;
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Ø·Ø¨Ù‚Ø© Ø´Ø¨Ù‡ Ø´ÙØ§ÙØ© Ù„ØªØ­Ø³ÙŠÙ† Ù‚Ø±Ø§Ø¡Ø© Ø§Ù„Ù†Øµ */
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff8e0; /* ØªØ¹Ø¯ÙŠÙ„ Ø§Ù„Ø´ÙØ§ÙÙŠØ© Ù‡Ù†Ø§ */
            z-index: 0;
        }
    }

    /* ÙˆØ¶Ø¹ Ø§Ù„Ù…Ø­ØªÙˆÙ‰ ÙÙˆÙ‚ Ø§Ù„Ø·Ø¨Ù‚Ø© Ø§Ù„Ø´ÙØ§ÙØ© */
    .server-header,
    .server-info,
    .btn-join,
    .recommended-badge {
        position: relative;
        z-index: 1;
        background-color: #ffffff99;
        color: black;
    }

    /* Ø§Ù„ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ø¥Ø¶Ø§ÙÙŠØ© (Ø§Ø®ØªÙŠØ§Ø±ÙŠØ©) */
    .recommended-badge {
        background: #ff9800;
        color: #000;
        padding: 5px 10px;
        border-radius: 20px;
        display: inline-block;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .server-status.online {
        color: #fff;
    }

    .btn-join {
        display: block;
        background: #4caf50;
        color: white;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
        text-decoration: none;
        margin-top: 15px;
        font-weight: bold;
    }
  

@media (max-width: 600px) {
    .server-card {
        background-position: 60% center; /* ØªØ¹Ø¯ÙŠÙ„ Ù…ÙˆÙ‚Ø¹ Ø§Ù„ØµÙˆØ±Ø© */
    }
}



.world_list {
    list-style: none;
    padding: 0;
    margin: 0;
    perspective: 1000px;
    /* z-index: 9; */
}

.w_big {
    position: relative;
    width: 360px;
    border: 2px solid #12120e;
    height: 75px;
    margin-top: 8;
    5: 500;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px -1px 0px 0px rgba(0, 0, 0, 0.6);
}

.w_big::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    filter: brightness(0.8) contrast(1.2);
}

.w_big:hover {
    /* transform: translateY(-5px) rotateX(5deg); */
    box-shadow: 0px 0px 5px 1px rgb(241 15 15 / 72%);
}

.world-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image
Sets the background image(s) of an element.
Learn more
Don't show: url(../img-styles/x2.png);';
}

.Inf {
    position: absolute;
    /* bottom: 2; */
    left: 0;
    right: 0;
    padding: 1px;
    background: rgba(0, 0, 0, 0.7);
    color: #2b2924;
    text-align: center;
    background-image: url(../img-styles/1s.png);
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
    background-size: cover;
    /* border-top: 2px solid #8B0000; */
.w_big: :
    after;
}

.label_players, .label_online {
    font-size: 18px;
    margin: 5px 0;
    color: #fffdfd !important;
    margin-right: -150;
}

.label_players b, .label_online b {
    color: #fff;
    font-weight: bold;
}



@keyframes swordFloat {
    0% { transform: translate(-50%, -50%) rotate(-15deg); }
    100% { transform: translate(-50%, -50%) rotate(15deg); }
}

/* ØªØ£Ø«ÙŠØ± Ø§Ù„Ø¬Ù…Ø± Ø§Ù„Ù…ØªØ·Ø§ÙŠØ± */
.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #f00;
    border-radius: 50%;
    filter: blur(1px);
    animation: emberFly linear infinite;
}

@keyframes emberFly {
    to { transform: translateY(-100px) translateX(20px); }
}

// Ø¥Ù†Ø´Ø§Ø¡ Ø¬Ù…Ø± Ù…ØªØ·Ø§ÙŠØ±
document.addEventListener('DOMContentLoaded', function() {
    const world = document.querySelector('.w_big');
    
    for (let i = 0; i < 15; i++) {
        const ember = document.createElement('div');
        ember.classList.add('ember');
        
        ember.style.left = Math.random() * 100 + '%';
        ember.style.top = Math.random() * 100 + '%';
        ember.style.opacity = Math.random() * 0.5 + 0.3;
        ember.style.animationDuration = (Math.random() * 3 + 2) + 's';
        ember.style.animationDelay = Math.random() * 5 + 's';
        
        world.appendChild(ember);
    }
});
















.scroll-play-btn {
  position: fixed;
  bottom: -50px; /* يبدأ خارج الشاشة */
  right: 30px;
  background: #8B0000;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* تأثير Transition */
  z-index: 1000;
}

.scroll-play-btn.show {
  opacity: 1;
  bottom: 30px; /* يتحرك إلى هنا عند الظهور */
}





.scroll-play-btn {
  /* ... الأكواد السابقة ... */
  animation: vibrate 0.3s infinite; /* اهتزاز مستمر */
}

@keyframes vibrate {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.scroll-play-btn.show {
  animation: none; /* إيقاف الاهتزاز عند الظهور */
}


        /* تنسيق عام للأيقونات */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
           margin-bottom: 10;      
           }

        .social-icon {
      display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* تأثير عند التمرير */
        .social-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* ألوان خاصة بكل منصة */
        .facebook {
            background-color: #3B5998;
        }

        .youtube {
            background-color: #FF0000;
        }

        .whatsapp {
            background-color: #25D366;
        }

        .tiktok {
            background-color: #000000;
        }


