@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Almarai", sans-serif;
}
.logo-title{
    font-family:"Poppins";
    color: #F59E0B;
    font-size: 5rem;
}
body{
  background-color: #0F172A;
  color: white;
  direction: rtl;
}

header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem auto;
  padding: 0 2rem;
  max-width: 1200px;
}

.logo{
  width: 85px;
  height: auto;
}

.navigation ul{
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navigation a{
  text-decoration: none;
  color: #F8FAFC;
  font-size: 1rem;
}

.navigation a:hover{
  color: #F59E0B;
}
.navigation button{
    text-decoration: none;
    color: white;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1rem;
    transition: 0.3s;
}

.navigation button:hover{
    color: #F59E0B;
}

hr{
  opacity: 10%;
}

.hero{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1{
  font-size: 4rem;
  color: #F59E0B;
  margin-bottom: 1rem;
}

.hero p{
  font-size: 1.3rem;
  color: #CBD5E1;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn{
  display: inline-block;
  background-color: #F59E0B;
  color: #0F172A;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.cards{
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card{
  background-color: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
}

.card h2{
  color: #F59E0B;
  margin-bottom: 1rem;
}

.card p{
  color: #CBD5E1;
  line-height: 1.8;
}

@media (max-width: 768px){
  header{
    flex-direction: column;
    gap: 1.5rem;
  }

  .navigation ul{
    flex-direction: column;
    text-align: center;
  }

  .hero h1{
    font-size: 2.8rem;
  }

  .cards{
    grid-template-columns: 1fr;
  }

  
.analysis-page h1{
    text-align: center;
    color: #F59E0B;
    margin-bottom: 40px;
}

.matches-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.match-card{
    background-color: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.match-card:hover{
    transform: translateY(-5px);
    border-color: #F59E0B;
}

.match-card h2{
    color: #F59E0B;
    margin-bottom: 10px;
}
.analysis-page{
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 2rem;
  text-align: center;
}

.analysis-page h1{
  font-size: 3.5rem;
  color: #F59E0B;
  margin-bottom: 0.7rem;
}

.analysis-subtitle{
  color: #CBD5E1;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.matches-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.match-card{
  display: block;
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 2rem;
  text-decoration: none;
  color: white;
  text-align: left;
  transition: 0.3s;
}

.match-card:hover{
  transform: translateY(-8px);
  border-color: #F59E0B;
  box-shadow: 0 15px 35px rgba(245,158,11,0.15);
}

.match-card span{
  color: #F59E0B;
  font-size: 0.9rem;
}

.match-card h2{
  margin: 1rem 0;
  font-size: 1.5rem;
}

.match-card p{
  color: #CBD5E1;
}
}
.analysis-page{
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 2rem;
  text-align: center;
}

.analysis-page h1{
  font-size: 3.5rem;
  color: #F59E0B;
  margin-bottom: 0.7rem;
}

.analysis-subtitle{
  color: #CBD5E1;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.matches-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.match-card{
  display: block;
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 2rem;
  text-decoration: none;
  color: white;
  text-align: left;
  transition: 0.3s;
}

.match-card:hover{
  transform: translateY(-8px);
  border-color: #F59E0B;
  box-shadow: 0 15px 35px rgba(245,158,11,0.15);
}

.match-card span{
  color: #F59E0B;
  font-size: 0.9rem;
}

.match-card h2{
  margin: 1rem 0;
  font-size: 1.5rem;
  color: white;
}

.match-card p{
  color: #CBD5E1;
}
.football-strip{
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.football-strip div{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #F8FAFC;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
}

.featured{
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.featured h2,
.pitch-section h2{
  color: #F59E0B;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.featured-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.big-card,
.side-card{
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem;
}

.big-card{
  min-height: 280px;
}

.big-card span{
  color: #F59E0B;
}

.big-card h3,
.side-card h3{
  color: white;
  font-size: 1.7rem;
  margin: 1rem 0;
}

.big-card p,
.side-card p{
  color: #CBD5E1;
  line-height: 1.8;
}

.pitch-section{
  max-width: 900px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

.pitch{
  position: relative;
  height: 430px;
  border: 3px solid rgba(255,255,255,0.25);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    #0B3B3B;
  background-size: 60px 60px;
  overflow: hidden;
}

.pitch::before{
  content: "";
  position: absolute;
  inset: 40px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 20px;
}

.player{
  position: absolute;
  width: 48px;
  height: 48px;
  background: #F59E0B;
  color: #0F172A;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.p1{
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Defense */
.p2{
    bottom: 110px;
    right: 15%;
}

.p3{
    bottom: 110px;
    right: 38%;
}

.p4{
    bottom: 110px;
    left: 38%;
}

.p5{
    bottom: 110px;
    left: 15%;
}

/* CDM */
.p6{
    bottom: 190px;
    left: 50%;
    transform: translateX(-50%);
}

/* Midfield */
.p7{
    bottom: 270px;
    right: 35%;
}

.p8{
    bottom: 270px;
    left: 35%;
}

/* Attack */
.p9{
    top: 80px;
    right: 18%;
}

.p10{
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.p11{
    top: 80px;
    left: 18%;
}

@media(max-width: 768px){
  .football-strip{
    grid-template-columns: 1fr;
  }

  .featured-grid{
    grid-template-columns: 1fr;
  }

  .pitch{
    height: 360px;
  }
}









.wc-hero{
  min-height: 75vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(245,158,11,0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.22), transparent 35%);
}

.wc-tag{
  color: #F59E0B;
  font-weight: 800;
  letter-spacing: 2px;
}

.wc-hero h1{
  font-size: 4.5rem;
  color: white;
  margin: 1rem 0;
}

.wc-hero p{
  max-width: 700px;
  color: #CBD5E1;
  font-size: 1.3rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.wc-btn{
  display: inline-block;
  background: #F59E0B;
  color: #0F172A;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: 14px;
  font-weight: 800;
}

.wc-stats{
  max-width: 1000px;
  margin: -3rem auto 5rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wc-stats div{
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 2rem;
  text-align: center;
}

.wc-stats h2{
  color: #F59E0B;
  font-size: 3rem;
}

.wc-stats p{
  color: #CBD5E1;
}

.wc-featured,
.wc-matches{
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.wc-featured h2,
.wc-matches h2{
  color: #F59E0B;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.wc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.wc-card{
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: 0.3s;
}

.wc-card:hover{
  transform: translateY(-8px);
  border-color: #F59E0B;
}

.wc-card span{
  font-size: 2.2rem;
}

.wc-card h3{
  color: white;
  margin: 1rem 0;
}

.wc-card p{
  color: #CBD5E1;
  line-height: 1.8;
}

.match-list{
  display: grid;
  gap: 1rem;
}

.wc-match{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 1.5rem;
  text-decoration: none;
  transition: 0.3s;
}

.wc-match:hover{
  transform: translateX(-8px);
  border-color: #F59E0B;
}

.wc-match h3{
  color: white;
}

.wc-match p{
  color: #CBD5E1;
  margin-top: 0.5rem;
}

.wc-match span{
  color: #F59E0B;
  font-weight: 800;
}

@media(max-width: 768px){
  .wc-hero h1{
    font-size: 3rem;
  }

  .wc-stats,
  .wc-grid{
    grid-template-columns: 1fr;
  }

  .wc-match{
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.wc-finished{
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.wc-finished h2{
  color: #F59E0B;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.finished{
  border-right: 5px solid #F59E0B;
}

.finished::before{
  content: "انتهت";
  color: #22C55E;
  font-weight: 800;
  margin-left: 1rem;
}
.match-hero{
  height: 420px;
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.70)),
    url("photos/pexels-franco-monsalvo-252430633-30986214.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.match-hero-content{
  max-width: 1000px;
  padding: 20px;
}

.match-hero-content span{
  color: #F59E0B;
  font-weight: 800;
}

.match-hero-content h1{
  color: white;
  font-size: 4rem;
  margin: 15px 0;
}

.match-hero-content p{
  color: #CBD5E1;
  font-size: 1.2rem;
}

.hero-overlay{
  max-width: 1000px;
  padding: 20px;
}

.hero-overlay span{
  color: #F59E0B;
  font-weight: 800;
}

.hero-overlay h1{
  color: white;
  font-size: 4rem;
  margin: 15px 0;
}

.hero-overlay p{
  color: #CBD5E1;
  font-size: 1.2rem;
}

.analysis-article{
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem 5rem;
  display: grid;
  gap: 2rem;
}
.match-tag{
    color:#F59E0B;
    font-weight:800;
    letter-spacing:2px;
}

.match-hero h1{
    font-size:4rem;
    margin:1rem 0;
}

.match-hero p{
    color:#CBD5E1;
    font-size:1.2rem;
}

.analysis-content{
    max-width:1100px;
    margin:4rem auto;
    padding:0 2rem;

    display:grid;
    gap:2rem;
}

.analysis-box{
    background:linear-gradient(
    145deg,
    #111827,
    #1E293B);

    border-radius:24px;

    padding:2rem;

    border:1px solid
    rgba(255,255,255,.08);
}

.analysis-box h2{
    color:#F59E0B;
    margin-bottom:1rem;
}

.analysis-box p{
    color:#CBD5E1;
    line-height:2;
    font-size:1.05rem;
}



.analysis-header{
    max-width:1000px;
    margin:80px auto;
    text-align:center;
    padding:0 2rem;
}

.analysis-header span{
    color:#F59E0B;
    font-weight:700;
}

.analysis-header h1{
    font-size:4rem;
    margin:1rem 0;
}

.analysis-header p{
    color:#CBD5E1;
    font-size:1.2rem;
}

.analysis-article{
    max-width:1000px;
    margin:auto;
    padding:0 2rem 5rem;
    display:grid;
    gap:2rem;
}

.article-box{
    background:linear-gradient(145deg,#111827,#1E293B);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:2rem;
}

.article-box h2{
    color:#F59E0B;
    margin-bottom:1rem;
}

.article-box p{
    color:#CBD5E1;
    line-height:2;
}
.match-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.match-title img{
    width:70px;
    height:auto;
}

.match-title h1{
    color:white;
    font-size:4rem;
}
.match-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
}

.match-title img{
    width:60px;
    height:auto;
}

.match-title h1{
    color:white;
    font-size:3rem;
}
.competition-logo{
    width:70px;
    height:auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,.4));
}
.hero{
    position: relative;
    height: 550px;   /* حجم المستطيل */
    overflow: hidden; /* أهم سطر */
    
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: rgba(0,0,0,0.75);

    width: 100%;
    height: 100%;

    z-index: 1;
}

.hero-content{
    position:relative;
    z-index:2;
}
.worldcup-banner{
    background: linear-gradient(
        135deg,
        #111827,
        #1E293B
    );

    padding:80px 20px;
    text-align:center;
}

.wc-logo{
    width:120px;
    margin-bottom:20px;
}

.worldcup-banner h2{
    color:#F59E0B;
    font-size:3rem;
    margin-bottom:15px;
}

.worldcup-banner p{
    color:#CBD5E1;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.wc-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    background:#F59E0B;
    color:#0F172A;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
}





.news-hero{
  max-width: 1100px;
  margin: 70px auto 40px;
  padding: 0 2rem;
  text-align: center;
}

.news-hero span{
  color: #F59E0B;
  font-weight: 800;
  letter-spacing: 2px;
}

.news-hero h1{
  font-size: 4rem;
  color: white;
  margin: 1rem 0;
}

.news-hero p{
  color: #CBD5E1;
  font-size: 1.2rem;
  line-height: 1.8;
}

.breaking-ticker{
  max-width: 1100px;
  margin: 0 auto 3rem;
  background: #F59E0B;
  color: #0F172A;
  border-radius: 14px;
  padding: 1rem;
  font-weight: 800;
  text-align: center;
}

.news-page{
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.main-news{
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("photos/news.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,.08);
}

.main-news span,
.news-card span{
  color: #F59E0B;
  font-weight: 800;
}

.main-news h2{
  color: white;
  font-size: 2.8rem;
  margin: 1rem 0;
}

.main-news p{
  color: #CBD5E1;
  line-height: 1.8;
  max-width: 700px;
}

.main-news a{
  display: inline-block;
  margin-top: 1.5rem;
  background: #F59E0B;
  color: #0F172A;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.news-card{
  background: linear-gradient(145deg, #111827, #1E293B);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 2rem;
  transition: .3s;
}

.news-card:hover{
  transform: translateY(-7px);
  border-color: #F59E0B;
}

.news-card h3{
  color: white;
  margin: 1rem 0;
}

.news-card p{
  color: #CBD5E1;
  line-height: 1.7;
}

@media(max-width: 768px){
  .news-hero h1{
    font-size: 2.8rem;
  }

  .news-grid{
    grid-template-columns: 1fr;
  }
}