.elegant-button 
    {
      display: block;
      /* padding: 6px 12px; */
      background-color: #4c7aaf;
      color: white;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-size: 20px;
      font-family: 'Arial', sans-serif;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s, transform 0.3s;
      width: 200px; /* زيادة عرض الزر */
      height: 200px; /* زيادة ارتفاع الزر */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-height: 200px;
      overflow: hidden;
      border: 1px solid black;
    }

    .elegant-button:hover {
      background-color: #ffffff;
      transform: translateY(-1px);
      color: rgb(0, 26, 255);
      border: 1px solid black;
    }

    .elegant-button:active {
      transform: translateY(2px);
    }

    #globe-container canvas {
      /* border: 1px solid blue;  */
      border-radius: 5px;    
    }

    .elegant-button .en,
    .elegant-button .ar {
      display: block;
      width: 100%;
      text-align: center;      
    }

    .elegant-button .ar {
      direction: rtl;
      text-align: center;
      font-size: 25px;
    }

    .elegant-button .en {
      text-align: center;
      font-size: 18px;
    }

    body[lang="ar"] .elegant-button .en {
      display: none;
    }

    body[lang="ar"] .elegant-button .ar {
      display: block;
    }

    body[lang="en"] .elegant-button .ar {
      display: none;
    }

    body[lang="en"] .elegant-button .en {
      display: block;
    }

    #globe-container {
      width: 200px; /* زيادة عرض كرة الأرض داخل الزر */
      height: 200px; /* زيادة ارتفاع كرة الأرض داخل الزر */
      position: relative;
      margin-bottom: 10px;
    }




    /* 8/10/2025 */
        /* === زر منصة الفعاليات الجديد - بنفس أبعاد القديم === */
        .hovervid-card {
            display: block;
            width: 200px;
            height: 200px;
            margin: 0 auto;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-decoration: none;
            border: 1px solid black;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .hovervid-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .hovervid-card:active {
            transform: translateY(2px);
        }

        /* منطقة الفيديو */
        .hovervid-video-area {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hovervid-video-area video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* يملأ المساحة مع الحفاظ على النسبة */
            display: block;
        }

        /* منطقة النص (الملصق) */
        .hovervid-label-area {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 70%);
            padding: 0 10px;
            box-sizing: border-box;
        }

        .hovervid-label-area h3 {
            margin: 0;
            font-family: 'Arial', sans-serif;
            line-height: 1.3;
        }

        .hovervid-label-area .ar {
            font-size: 25px;
            direction: rtl;
        }

        .hovervid-label-area .en {
            font-size: 18px;
        }

        /* التحكم باللغة (مثل الزر القديم) */
        body[lang="ar"] .hovervid-label-area .en {
            display: none;
        }
        body[lang="ar"] .hovervid-label-area .ar {
            display: block;
        }
        body[lang="en"] .hovervid-label-area .ar {
            display: none;
        }
        body[lang="en"] .hovervid-label-area .en {
            display: block;
        }
    /* 8/10/2025 */