
/* 
inherit => وراثة الخاصية
vw => view port width 
psistion => relative
            static
            absulte
            fixed
            sticky
transition => الانتقال=>duration = المدة
                        delay
                        property = selected feature
                        timing =
!important
filter =>greyscale
        Blur
        invert
gradient => linearGradient
transform => scall 
            translat
            rotat 
            skew 
            origin


*/
* {
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
.app-start {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    animation-name: start;
    z-index: 100;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    
}
@keyframes start {
    0% {
        display: flex;
    }
    100% {
        display: none;
    }
}
.app-start .filter {
    background-color:#011d5ed0;
    backdrop-filter: blur(10px) ;
    position: absolute;
    width: 100%;
    height: 100%;

}
.app-start img {
    width: 250px;
    position: absolute;
    left: 50%;
    top :50%;
    margin-left:-150px;
    margin-top: -200px;
}
.load {
    width: 160px;
    display: flex;
    justify-content: space-around;

    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -80px;
    margin-top: 20px;
}
.load div {
    width: 45px;
    height: 45px;
    animation: start-round;
    animation-duration: 0.45s;
    border-radius: 50%;
    background-color: #fD05A0;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction:alternate;
}

.load .tow {
    animation-delay: 0.15s;
}
.load .three {
    animation-delay: 0.3s;
}


@keyframes start-round {
    0% {

    }
    50% {
        background-color:#fcca24;

    }
    100% {
        transform: translateY(-50px);
        
        background-color:#35a4e4;
    }
}
.solgan {
    font-family:"Parkinsans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    bottom: 20%;
    left: 50%;
    margin-left: -170px;
    color: #ffffff;
}
:root {
    --maincolor: #fD05A0;
    --stcoler: #011d5e;
    --ndcolor: #fcca24;
    --rdcolor: #35a4e4;

}
body {
  position: relative;
  background: url(../media/picture/background2.jpg);
  animation: drift 15s linear infinite;
  background-position: center;
  background-repeat:repeat;
  animation-direction: alternate;
}
@keyframes drift {
    0% { 
        background-position: 0 0;
    }
    100% {
        background-position: -50px -50px;
    }
}
/* الطبقة الشفافة */
body::before {
    content: "";
    position: fixed; /* مهم جدًا حتى تبقى في الخلف */
    inset: 0;
    background-color: rgba(255, 255, 255, 0.85); /* الشفافية */
    z-index: -2; /* نجعلها خلف كل شيء */
}
header {
    background-color: #0035b093;
    padding: 20px;
    height: 90px;
    text-align: center;
    box-sizing: border-box;
    border-bottom:5px solid #fcca24;
    position: relative;
}
header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: invert(1);
    mix-blend-mode: screen;
    height: 90px;
}

.container {
    box-sizing: border-box;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;

}

@media (min-width:768px) {
    .container{
        width: 728px;
    }
}
@media (min-width:992px) {
    .container{
        width: 952px;
    }
}
@media (min-width:1200px) {
    .container{
        width: 1160px;
    }
}
.app-logo {
    height: 45px;
    position: fixed;
    left: 2vw;
    z-index: 2;
    transition-duration: 50ms;
}
.app-logo:hover {
    transform: scale(1.1);
}

.app-link {
    font-size: 1.5rem;
    border: 10px solid var(--maincolor);
    background-color: var(--maincolor);
    color: #ffffff;
    display: inline-block;
    border-radius: 20px ;
    font-family: "Share Tech", sans-serif;
    font-style: normal;
    text-decoration: none;
    font-weight: 600;
    transition-duration: 50ms;
    text-align: center;
    
}
.app-link:hover {
    border: 10px solid var(--rdcolor);
    background-color: var(--rdcolor);
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}

header .app-link {
    position: fixed;
    right: 2vw;
    z-index: 3 ;

}

.top {
    margin-top: 10px;
    position: relative;
}
.top div:first-child{
    position: absolute;
    width: 400px;
    left: 40%;
    top: 50%;
    display: flex;
    gap: 20Px;

}
.join {
    color: #ffffff;
    font-size: 1.5rem;
    padding-left: 10px;
    height: 28px;
    font-family:"Share Tech", sans-serif;
    text-decoration: none;
    transition-duration: 100ms;

}
.join:hover {
    color: var(--rdcolor);
    font-weight: 900;
    transform: scale(1.1);
    margin: -7px;
}
::selection {
    background-color:#fd059e30;
}

nav {

    width: 88% ;
    height: 62px;
    background-color:  var(--ndcolor);
    border-radius: 20px ;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    text-align: center;
    position: relative;
    top: -1vw;
    line-height: 1.2;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(6, auto);
    gap: 30px;
    align-items: center;
    justify-content: space-around;
    overflow: scroll;
    scrollbar-width: none;
    margin-bottom: 50px;
    
}

h2{
    text-wrap: nowrap;

}
nav .button {
    
    text-wrap:nowrap;
    color: var(--stcoler);
    padding: 0px 10px;
    font-size: 24px;
    display: inline-flex;
    font-family:"Share Tech", sans-serif;
    transition-duration: 100ms;
    transition-timing-function: ease;
    position: relative;
    border-radius: 20px;
}

nav .button:hover {
    color: white;
    background-color: var(--stcoler);
    border: 5px solid var(--stcoler);
    border-left:7px solid var(--stcoler);
    border-right: 7px;
    transform: scale(1.1);
    
}


section {
    
    display: flex;
    align-items: center;
    flex-direction: column;
}
.dws {
    display: flex;
    align-items: center;
    grid-template-columns: repeat( auto-fill, minmax(500px, 570px));
    padding-bottom: 100px;
    
}
.dw {
    animation-direction:alternate-reverse;   
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-name: flow ;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    
}
@keyframes pumb {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(0.99);
    }
}



.dw p {
    height: 300px;
    width: 450px;
    margin-top: 5vw;
    color: var(--stcoler);
    font-size: 30px;
    font-weight: 350;
    font-family: "Parkinsans", sans-serif;
    font-style: normal;
    display:block;
    line-height: 1.5;
    text-align: left;
}

h1 {
    padding-left: 20px;
    color: var(--maincolor);
    font-size: 46px;
    font-style: normal;
    font-family: "Parkinsans", sans-serif;
    margin: auto;
    letter-spacing: -2px;
    word-spacing: -0.5px;
    line-height: 0.9;
}


.dws .app-link {
    font-size: 2.5rem;
    position: relative;
    top: 3vw;
    left: 16vw;
    animation-direction:alternate;   
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    animation-name: pumb ;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}


.dws .p1 {
    width: 50%;
    display: inline-block;
    animation-name: flow;
    animation-fill-mode: forwards;
    animation-duration: 1S;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction:alternate;
    
}
/* @keyframes flow {
    0% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(-3px);
    }
} */

@media (max-width: 768px) {
    nav {
        width: auto;
        border-radius: 0%;
        overflow: scroll;
    }
    .dws {
        flex-direction: column-reverse;
        gap: 100px;
        padding: 10px;
        padding-bottom: 150px;
    }
    .dws:nth-child(even) {
        flex-direction: column;
    }
    .dws .p1 {
        width: 100%;
        line-height: 1;
    }
    .dw .app-link {
        font-size: 2rem;
    }

}
@media (min-width:768px) and (max-width: 1200Px) {
    .dw {
        font-size: 24px;
    }
    .dw .app-link {
        font-size: 2rem;
    }
    h1  {
        font-size: 2.5rem;
    }
    .p1{
        width: 50%;
    }
}

mark {
    color: var(--maincolor);
}


.lbt {
    text-align: center;
    margin: 50px;
}
.leadboard {
    border: 5px solid var(--rdcolor);
    width: 90%;
    text-align: center;
    margin: 0% 6%;
    line-height: 2;
    font-size: 24px;
    font-family: "Share Tech", sans-serif;
    border-collapse: collapse;
    z-index: 4;
}


.leadboard thead td{
    box-sizing: border-box;
    background-color: var(--ndcolor);
    position: sticky;
    top: -3px;
    border:1.5PX SOLID var(--rdcolor);
    z-index: 4;
}

.leadboard tbody td{
    border:3PX solid var(--rdcolor);
    z-index: 4;
}
footer{
    border-top:10px solid #fcca24;
    background-color: #0035b093;
    backdrop-filter: invert(1);
    position: relative;
    bottom: 0px;
    justify-content: center;
    padding-top: 150px;

}

ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style: none;

}
.main-ul {
    flex-direction: row;
    row-gap: 50px;
    column-gap: 150px;
    justify-content: center;
    text-align: left;
    padding-bottom: 80px;
}

.footer-list {
    color: #d4d4d463;
    font-size: 22px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
} 

.list-head {
    color: #ffffff;
    font-size: 26px;
    
}
li {
    transition-duration: 500ms;
}
li li {
    transition-duration: 100ms;
}
li:hover {
    transform: scale(1.1);
    color: #d4d4d463;
}
li li:hover {
    transform: scale(1.2);
    color: #e6e6e663;
}

.rights {
    margin-top: 150px;
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 10px;
    text-align: center;
}
.footer-app-logo {
    height: 65px;
    position: absolute;
    left: 2vw;
    top: 2vw;
}
@media (max-width: 768px) {
    .leadboard {
        font-size: 20px;
    }
    footer {
        padding: 100px 10px 0px;
    }
    .footer-list{
        font-size: 20Px;
    }
    li:hover {
        transform: scale(1);
        color: #d4d4d463;
    }
    li li:hover {
        transform: scale(1.1);
        color: #e6e6e663;
    }

    .main-ul {
        /* gap: 10px; */
    }
}
/* start feature */
.feature .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 400px)) ;
    padding: 20px ;
    padding-top: 100Px;
    padding-bottom: 100Px;
    justify-items:center;
    justify-content: space-around ;
    row-gap: 60px;

}
.feature .container .card {
    display: flex;
}
.feature .container .card .icon{
    font-size:55px ;
    color: var(--maincolor);
    animation: rotate;
    animation-fill-mode: forwards;
    animation-duration: 1S;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction:alternate;
    transform-origin: 50% 10%;
}
@keyframes rotate {
    0% {
        transform:rotate(10deg);
        
    }
    100% {
        transform:rotate(-10deg);

    }
}

.feature .container .card .info  {
}
.feature .container .card .info h4 {
    color: var(--rdcolor);
    font-size: 40px;
    font-family: "Parkinsans", sans-serif;
    font-weight: 700;
    animation: pumb;
    animation-fill-mode: forwards;
    animation-duration: 1S;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction:alternate;
} 
.feature .container .card .info p {
    margin-top: 15px;
    color: var(--stcoler);
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
    font-size: 24px;
    animation: flow;
    animation-fill-mode: forwards;
    animation-duration: 1S;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction:alternate;
}
/* end feature */

