.login-btn{
  display: inline-block;
  background: #fff;
  color: #333;
  min-width: 135px;
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 14px;
  border-radius: 5px;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-cta {
  background-color: #1CE783;
  padding: 1rem 2rem;
  font-family: "Rubik";
  border-radius: 5px;
}

.btn-cta:hover{
  cursor:pointer;
  opacity: 0.8;
}

.btn-outline{
  background: none;
  color: #fff;
  border: 2px solid #fff;
  font-family: sans-serif;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  border-radius: 3px;
  line-height: 2;
}
.btn-outline:hover{
  color: black;
  background-color: #fff;
  border-color: black;
  border: none;
}

.legal-text{
  font-size: 15px;
  color: #ccc;
  margin-top: 20px;
}

.sub-link{
  display: block;
  color: #ccc;
  font-size: 12px;
  margin-top: 5px;
  text-decoration: underline;
}

.header {
  height: 530px;
  background: url(../img/header.jpg)
  no-repeat center center/cover;
}
.header nav{
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px;
  z-index: 2;
  position: relative;
}
.header nav .btn{
  cursor: pointer;
  background: none;
  border: none;
  color:#fff;
  font-weight: bold;
  text-transform: uppercase ;
  letter-spacing: 1px;
}

.header .logo{
  width: 270px;
  margin: 20px;
}

.header .header-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}
.header .header-text-1{
  font-size: 22px;
  font-weight: bold;
}
.header .header-text-2{
  font-size: 18px;
  margin: 25px 0;  
}
/* sun header */
.sub-header{
  display: grid;
  grid-template-columns: 2fr 4fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 30px 40px;
  background: linear-gradient(
    318.68deg,
    #0f495c 0%,
    #0d3640 49.72%,
    #08141f 100%
  );
}

.sub-header>div:last-of-type{
  justify-self: end;
  align-self: end;
}
.sub-header>div:last-of-type .sub-link{
  text-align: center;
}
.text-xl{
  font-size: 70px;
  font-weight: bold;
}
.sub-text{
  max-width: 850px;
  margin-bottom: 10px;
  font-size: 24px;
}
/* categories */
.catagory{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 40px;
  justify-content: center;
}
.catagory .covers{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}
.catagory .covers>div{
  height: 500px;
  width: 300px;
  position: relative;

}
.catagory .cover-grad{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    156.82deg,
    rgba(0,0,0,0.6) 4.58%,
    rgba(0,0,0,0) 69.61%
  ),
  linear-gradient(24.5deg, rgba(0,0,0,0.2) 4.71%, rgba(0,0,0,) 71.49%)
}

.header::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.76) 15.54%,
    rgba(0,0,0,0.192) 60.23%,
    rgba(0,0,0,8e-5) 100%
  );
}

.catagory .cover-title{
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: left;
}
.cover-1{
  background: url('../img/cover-1.jpg') no-repeat center center / cover;
}
.cover-2{
  background: url('../img/cover-2.jpg') no-repeat center center / cover;
}
.cover-3{
  background: url('../img/cover-3.jpg') no-repeat center center / cover;
}
.cover-4{
  background: url('../img/cover-4.jpg') no-repeat center center / cover;
}

/* Live */

.live{
  background: #151516;
  padding: 40px;

}
.live-border{
  border: 4px solid #1ce783;
  border-radius: 16px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.live a{
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 20px;
  text-decoration: underline;
}
/* Live-sports */

.live-sports{
  background: url('../img/live-sports.jpg') no-repeat center center /cover;
  height: 800px;
  position: relative;
}
.live-sports-content{
  position: absolute;
  top: 160px;
  left: 100px;
  max-width: 550px;
}
.live-sports-logos{
  width: 300px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-sports-logos > div{
  background: url('../img/network-logo-bg.png') no-repeat center center/cover;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live-sports-logos img{
  width: 40px;
}

/* footer */
.footer{
  background: #ebedf2;
  color: #333;

}
.footer a{
  color: black;
  font-family: sans-serif;
  font-weight: 500;
  opacity: 0.6;
}

.footer a:is(:hover, :focus) {
  opacity: 1;
}

.footer-container{
  max-width: 1100px;
  margin: auto;
  padding: 40px;
}

/* Footer columns  */
.footer-lists{
  display: grid;
  align-items: start;
  justify-content: center;
  grid-template-areas: 
    "browse .      help about"
    "browse genral help about";
  grid-template-columns: min-content 1fr auto;
  gap: 2rem;
}

.browse {
  grid-area: browse;
  width: 12ch;
}

.genral {
  grid-area: genral;
  columns: 2;
  margin-inline: auto;
}

.help {
  grid-area: help;
}

.about {
  grid-area: about;
}

