/* تصفير الهوامش */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* إعدادات الصفحة */

body {

    height: 100vh;

    overflow: hidden;

    font-family: Arial, sans-serif;

    position: relative;
}

/* فيديو الخلفية */

.background-video {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;
}

/* الطبقة السوداء الشفافة */

.overlay {

    position: fixed;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.45);

    z-index: -1;
}

/* المحتوى بالنصف */

.main-content {

    width: 100%;
    height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 40px;
}

/* تصميم اللوغو */

.logo {

    color: rgb(255, 255, 255);

    font-size: clamp(28px, 9vw,70px);

    font-weight: bold;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.4s;

    animation: logoAnimation 2s ease forwards;

      display:flex;

    flex-direction:row;

    align-items:center;

    gap:10px
}

/* حركة Hover على اللوغو */

.logo:hover {

    transform: scale(1.1) rotate(2deg);

    color: #ffd700;

    text-shadow:
        0 0 10px #ffd700,
        0 0 20px #ffd700,
        0 0 40px #ffd700;
}

/* تصميم الزر */

.enter-btn {

    text-decoration: none;

    color: white;

    border: 2px solid white;

    padding: 15px 40px;

    border-radius: 50px;

    font-size: 25px;

    transition: 0.4s;

    backdrop-filter: blur(5px);

    animation: buttonAnimation 2s ease;

    text-align: center;

    position: relative;

    top: -20PX;
}

/* حركة Hover للزر */

.enter-btn:hover {

    background: white;

    color: black;

    transform: scale(1.1);

    box-shadow:
        0 0 15px white,
        0 0 40px white;
}

/* قسم المتابعين */

.followers-box {

    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    animation: fadeUp 2s ease;
    position: relative;
    top:-30px;
   
}

/* رقم المتابعين */

#counter {

    font-size: 70px;

    font-weight: bold;

    color: #e6c96a;

    text-shadow:
        0 0 5px rgba(230, 201, 106, 0.5),
        0 0 10px rgba(230, 201, 106, 0.4);

    animation: glow 4s infinite alternate;
}


/* كلمة Followers */

.followers-text {
transform: translateY(-5px) scale(1.1);

    color: #ffd700;

    text-shadow:
        0 0 10px #ffd700,
        0 0 20px #ffd700;
 
}
followers-text:hover {

    transform: translateY(-5px) scale(1.1);

    color: #ffd700;

    text-shadow:
        0 0 10px #ffd700,
        0 0 20px #ffd700;
}

/* Animation ظهور اللوغو */

@keyframes logoAnimation {

    0% {

        opacity: 0;

        transform: translateY(-100px);
    }

    100% {

        opacity: 1;

        transform: translateY(0);
    }
}

/* Animation الزر */

@keyframes buttonAnimation {

    0% {

        opacity: 0;

        transform: scale(0);
    }

    100% {

        opacity: 1;

        transform: scale(1);
    }
}

/* Animation المتابعين */

@keyframes fadeUp {

    0% {

        opacity: 0;

        transform: translateY(80px);
    }

    100% {

        opacity: 1;

        transform: translateY(0);
    }}
  @keyframes glow {

    from {

        text-shadow:
            0 0 10px #d4af37,
            0 0 20px #d4af37;
    }

    to {

        text-shadow:
            0 0 20px #ffd700,
            0 0 40px #ffd700,
            0 0 60px #ffd700;
    }
}
/* أيقونة التفاصيل */

.details-btn {

    position: fixed;

    top: 30px;

    right: 30px;

    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 30px;

    font-weight: bold;

    color: white;

    border: 2px solid rgba(255,255,255,0.25);

    border-radius: 18px;

    backdrop-filter: blur(10px);

    background: rgba(255,255,255,0.08);

    transition: 0.4s;

    z-index: 999;

    box-shadow:
        0 0 10px rgba(255,255,255,0.1);
}

/* Hover */

.details-btn:hover {

    transform: scale(1.12) rotate(6deg);

    color: #ffd700;

    border-color: #ffd700;

    background: rgba(255,215,0,0.08);

    box-shadow:
        0 0 15px #ffd700,
        0 0 35px rgba(255,215,0,0.5);
}
/* الحاوية */

.details-container {

    position: fixed;

    top: 30px;

    right: 30px;

    z-index: 999;
}

/* معلومات الشركة */

.details-tooltip {

    position: absolute;

    top: 75px;

    right: 0;

    width: 230px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(0,0,0,0.75);

    backdrop-filter: blur(12px);

    color: white;

    font-size: 15px;

    line-height: 1.7;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: 0.4s;

    border: 1px solid rgba(255,255,255,0.15);
}

/* لما تقرب الماوس */

.details-container:hover .details-tooltip {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.logo svg{

    width:200px;

    height:200px;
}

.logo-text{

   
     font-size:45px;
     position: relative;
     right: 2PX;
}

.logo-text p{

    font-size:40px;

    letter-spacing:10px;

    margin-top:-10px;
}
/* أول قطعة */

.logo svg path:nth-child(1){

    opacity:0;

    transform-origin:center;

    animation:partOne 1s ease forwards;
}

/* ثاني قطعة */

.logo svg path:nth-child(2){

    opacity:0;

    transform-origin:center;

    animation:partTwo 1s ease forwards;

    animation-delay:0.7s;
}

/* المربع */

.logo svg rect{

    opacity:0;

    transform-origin:center;

    animation:partThree 0.8s ease forwards;

    animation-delay:1.4s;
}

/* الحركات */

@keyframes partOne{

    0%{

        opacity:0;

        transform:translateX(-120px) rotate(-180deg);
    }

    100%{

        opacity:1;

        transform:translateX(0) rotate(0deg);
    }
}

@keyframes partTwo{

    0%{

        opacity:0;

        transform:translateX(120px) rotate(180deg);
    }

    100%{

        opacity:1;

        transform:translateX(0) rotate(0deg);
    }
}

@keyframes partThree{

    0%{

        opacity:0;

        transform:scale(0) rotate(360deg);
    }

    100%{

        opacity:1;

        transform:scale(1) rotate(0deg);
    }
}


   /* MOBILE */

@media(max-width:768px){

    .logo svg{

        width:90px;

        height:90px;
    }

    .logo-text h1{

        font-size: clamp(45px, 12vw, 90px);
    }

    .logo-text p{

        font-size: clamp(14px, 4vw, 28px);

        letter-spacing:4px;
    }

    .enter-btn{

        font-size:16px;

        padding:12px 30px;
    }

    #counter{

        font-size:50px;
    }

    .followers-text{

        font-size:20px;
    }}


       @media(min-width:2560px){

    body{

        zoom:2;
    }
    .main-content{

    justify-content:center;
    padding-bottom: 920PX;
}
}