/*==================================================
SPORTSZONE TEMPLATE
style.css
==================================================*/


/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
ROOT VARIABLES
==================================================*/

:root{

--primary:#081B3A;
--secondary:#102B56;
--accent:#06cbeb;
--accent-hover:#f0b000;
--white:#ffffff;
--text:#d8d8d8;
--heading:#ffffff;
--border:rgba(255,255,255,.08);

--radius:14px;
--shadow:0 15px 45px rgba(0,0,0,.25);

--transition:.35s ease;

--container:1280px;

}


/*==================================================
RESET
==================================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:var(--primary);

color:var(--text);

line-height:1.7;

overflow-x:hidden;

}

img{

width:100%;

display:block;

}

ul{

list-style:none;

}

a{

text-decoration:none;

color:inherit;

}

button{

border:none;

background:none;

cursor:pointer;

font-family:inherit;

}

.container{

width:90%;

max-width:var(--container);

margin:auto;

}

section{

padding:90px 0;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

color:#fff;

margin-bottom:15px;

font-weight:700;

}

.section-title p{

max-width:650px;

margin:auto;

color:#bfc8d9;

}


/*==================================================
TAG
==================================================*/

.tag{

display:inline-block;

background:rgba(255,193,7,.12);

color:var(--accent);

padding:8px 18px;

border-radius:40px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}


/*==================================================
BUTTONS
==================================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 34px;

background:var(--accent);

color:#111;

border-radius:50px;

font-weight:600;

transition:var(--transition);

}

.btn-primary:hover{

background:#ffd54a;

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(255,193,7,.35);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 34px;

border:2px solid rgba(255,255,255,.15);

border-radius:50px;

color:#fff;

transition:var(--transition);

}

.btn-outline:hover{

background:#fff;

color:#111;

}


/*==================================================
HEADER
==================================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

transition:.4s;

padding:20px 0;

}

header.sticky{

background:#07142d;

padding:14px 0;

box-shadow:0 10px 30px rgba(0,0,0,.4);

}

header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo a{

font-size:34px;

font-weight:800;

color:#fff;

}

.logo span{

color:var(--accent);

}

nav ul{

display:flex;

gap:35px;

}

nav a{

font-size:15px;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:var(--accent);

}

.header-right{

display:flex;

align-items:center;

gap:18px;

}

.search-btn{

width:48px;

height:48px;

border-radius:50%;

background:rgba(255,255,255,.06);

color:#fff;

transition:.3s;

}

.search-btn:hover{

background:var(--accent);

color:#111;

}

.menu-toggle{

display:none;

font-size:26px;

color:#fff;

cursor:pointer;

}
.mobile-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.mobile-logo{

font-size:28px;

font-weight:700;

color:#fff;

}

.mobile-logo span{

color:var(--accent);

}

.mobile-close{

width:42px;

height:42px;

border-radius:50%;

background:#132d5c;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:20px;

cursor:pointer;

transition:.3s;

}

.mobile-close:hover{

background:var(--accent);

color:#000;

}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu{
    position:fixed;
    top:0;
    right:0;
    width:320px;
    height:100vh;
    background:#08172f;
    transform:translateX(100%);
    transition:.35s ease;
    z-index:9999;
    overflow-y:auto;
    padding:30px;
}

.mobile-menu.active{
   transform:translateX(0);
}

.mobile-menu ul{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-menu a{
    font-size:18px;
    font-weight:500;
    display:block;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu a:hover{
    color:var(--accent);
}


/*==================================================
HERO
==================================================*/

.hero{
    padding-top:180px;
    padding-bottom:120px;
    background:linear-gradient(rgba(8,27,58,.90),rgba(8,27,58,.95)),
    url(images/hero-bg.jpg);
    background-size:cover;
    background-position:center;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.hero h1{

font-size:58px;

line-height:1.15;

color:#fff;

margin-bottom:25px;

font-weight:800;

}

.hero p{

font-size:18px;

margin-bottom:35px;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:50px;

}

.hero-image img{

animation:float 5s ease-in-out infinite;

}

.hero-stats{

display:flex;

gap:25px;

margin-top:40px;

}

.hero-stats div{

background:rgba(255,255,255,.05);

padding:22px;

border-radius:15px;

min-width:150px;

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.08);

}

.hero-stats h2{

font-size:34px;

color:var(--accent);

margin-bottom:6px;

}

.hero-stats p{

margin:0;

font-size:15px;

}


/*==================================================
LIVE STRIP
==================================================*/

.live-strip{

padding:30px 0;

background:#0d2347;

}

.live-strip .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.live-card{

display:flex;

align-items:center;

gap:18px;

background:#132d5c;

padding:25px;

border-radius:15px;

transition:.3s;

}

.live-card:hover{

transform:translateY(-8px);

background:#19396f;

}

.live-card i{

font-size:34px;

color:var(--accent);

}

.live-card h3{

color:#fff;

margin-bottom:4px;

font-size:18px;

}

.live-card p{

font-size:14px;

margin:0;

color:#b9c5db;

}


/*==================================================
ANIMATION
==================================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}


/*==================================================
CATEGORY TABS
==================================================*/

.categories{
    background:#091f41;
}

.tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.tab{
    padding:14px 28px;
    background:#132d5c;
    color:#fff;
    border-radius:40px;
    transition:.35s;
    font-size:15px;
    font-weight:600;
    border:1px solid transparent;
}

.tab:hover,
.tab.active{

    background:var(--accent);

    color:#111;

    transform:translateY(-3px);

}

/*==================================================
FEATURED NEWS
==================================================*/

.featured-news{

    background:var(--primary);

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.news-card{

    background:#10284f;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow);

}

.news-card:hover{

    transform:translateY(-10px);

}

.news-card img{

    height:230px;

    object-fit:cover;

}

.news-content{

    padding:25px;

}

.news-content span{

    color:var(--accent);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

.news-content h3{

    margin:15px 0;

    color:#fff;

    font-size:22px;

    line-height:1.4;

}

.news-content p{

    color:#cfd8ea;

    margin-bottom:20px;

    font-size:15px;

}

.news-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--accent);

    font-weight:600;

}

.news-content a:hover{

    gap:12px;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

    background:#0d2347;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    text-align:center;

    padding:40px 30px;

    background:#132d5c;

    border-radius:18px;

    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);

    background:#173870;

}

.feature-card i{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    background:rgba(255,193,7,.15);

    color:var(--accent);

    font-size:34px;

    margin-bottom:25px;

}

.feature-card h3{

    color:#fff;

    margin-bottom:15px;

}

.feature-card p{

    color:#c7d2e6;

}

/*==================================================
ABOUT
==================================================*/

.about{

    background:var(--primary);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-content h2{

    color:#fff;

    font-size:42px;

    margin-bottom:25px;

    line-height:1.3;

}

.about-content p{

    margin-bottom:30px;

}

.about-stats{

    display:flex;

    gap:40px;

    margin:35px 0;

}

.about-stats div{

    text-align:center;

}

.about-stats h3{

    color:var(--accent);

    font-size:36px;

}

.about-stats p{

    margin-top:6px;

    font-size:14px;

}

/*==================================================
TOURNAMENTS
==================================================*/

.tournaments{

    background:#0b2144;

}

.tournament-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.tournament-card{

    background:#122d59;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:var(--shadow);

}

.tournament-card:hover{

    transform:translateY(-12px);

}

.tournament-card img{

    height:240px;

    object-fit:cover;

}

.tournament-content{

    padding:28px;

}

.tournament-content span{

    color:var(--accent);

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

}

.tournament-content h3{

    color:#fff;

    margin:15px 0 20px;

}

.tournament-content ul{

    margin-bottom:25px;

}

.tournament-content li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;

    color:#d4dceb;

}

.tournament-content li i{

    color:var(--accent);

}

/*==================================================
PROCESS
==================================================*/

.process{

    background:var(--primary);

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.step{

    position:relative;

    text-align:center;

    padding:40px 30px;

    background:#10284f;

    border-radius:20px;

    transition:.35s;

}

.step:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--accent);

    color:#111;

    font-size:26px;

    font-weight:700;

    margin-bottom:25px;

}

.step h3{

    color:#fff;

    margin-bottom:15px;

}

.step p{

    color:#c9d4e7;

}

/*==================================================
SMOOTH HOVER
==================================================*/

.news-card,
.feature-card,
.tournament-card,
.step{

    transition:all .35s ease;

}

.news-card:hover,
.feature-card:hover,
.tournament-card:hover,
.step:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}


/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{
    background:#0d2347;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    background:#132d5c;
    border-radius:18px;
    padding:40px 20px;
    text-align:center;
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-8px);
    background:#173870;
}

.counter-box h2{
    font-size:52px;
    color:var(--accent);
    margin-bottom:10px;
    font-weight:700;
}

.counter-box span{
    color:#fff;
    font-size:16px;
}


/*==================================================
VIDEO SECTION
==================================================*/

.video-section{
    background:var(--primary);
}

.video-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.video-wrapper img{
    height:650px;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:95px;
    height:95px;
    background:var(--accent);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:32px;
    cursor:pointer;
    transition:.35s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
    box-shadow:0 0 40px rgba(255,193,7,.45);
}


/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{
    background:#091f41;
}

.testimonial-slider{
    max-width:900px;
    margin:auto;
    position:relative;
}

.testimonial{
    display:none;
    background:#132d5c;
    padding:60px;
    border-radius:22px;
    text-align:center;
    box-shadow:var(--shadow);
}

.testimonial.active{
    display:block;
}

.testimonial p{
    font-size:22px;
    line-height:1.8;
    color:#fff;
    margin-bottom:35px;
}

.testimonial h4{
    color:var(--accent);
    font-size:22px;
    margin-bottom:8px;
}

.testimonial span{
    color:#c8d4e6;
}


/*==================================================
APP DOWNLOAD
==================================================*/

.app-section{
    background:var(--primary);
}

.app-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.app-content h2{
    color:#fff;
    font-size:46px;
    margin:20px 0;
}

.app-content p{
    margin-bottom:35px;
}

.app-buttons{
    display:flex;
    gap:20px;
}

.app-image{
    text-align:center;
}

.app-image img{
    max-width:380px;
    margin:auto;
}


/*==================================================
LATEST ARTICLES
==================================================*/

.latest-news{
    background:#0b2144;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#132d5c;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:var(--shadow);
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card img{
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.blog-content span{
    color:var(--accent);
    font-size:13px;
    text-transform:uppercase;
    font-weight:600;
}

.blog-content h3{
    color:#fff;
    margin:15px 0 20px;
    font-size:24px;
    line-height:1.5;
}

.blog-content a{
    color:var(--accent);
    font-weight:600;
    transition:.35s;
}

.blog-content a:hover{
    letter-spacing:.5px;
}


/*==================================================
PARTNER LOGOS
==================================================*/

.partners{
    background:var(--primary);
}

.logo-slider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.logo-slider img{
    width:140px;
    opacity:.65;
    transition:.35s;
    filter:grayscale(100%);
}

.logo-slider img:hover{
    opacity:1;
    transform:scale(1.08);
    filter:none;
}


/*==================================================
COMMON CARD EFFECTS
==================================================*/

.blog-card,
.counter-box,
.testimonial,
.video-wrapper{
    transition:.35s;
}

.blog-card:hover,
.counter-box:hover,
.video-wrapper:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}


/*==================================================
IMAGE RADIUS
==================================================*/

.video-wrapper img,
.blog-card img,
.app-image img{
    border-radius:inherit;
}


/*==================================================
CTA SECTION
==================================================*/

.cta-section{
    background:#091f41;
}

.cta-box{
    background:linear-gradient(135deg,#102b56,#173d76);
    border-radius:24px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    box-shadow:var(--shadow);
}

.cta-content h2{
    color:#fff;
    font-size:44px;
    margin:20px 0;
}

.cta-content p{
    max-width:650px;
}

.cta-buttons{
    display:flex;
    gap:20px;
}


/*==================================================
NEWSLETTER
==================================================*/

.newsletter{
    background:var(--primary);
}

.newsletter-wrapper{
    background:#10284f;
    border-radius:22px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.newsletter-text{
    flex:1;
}

.newsletter-text h2{
    color:#fff;
    font-size:38px;
    margin:15px 0;
}

.newsletter-form{
    display:flex;
    width:520px;
}

.newsletter-form input{
    flex:1;
    border:none;
    outline:none;
    background:#fff;
    padding:18px 20px;
    font-size:16px;
    border-radius:50px 0 0 50px;
}

.newsletter-form button{
    border-radius:0 50px 50px 0;
}


/*==================================================
FAQ
==================================================*/

.faq{
    background:#091f41;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#132d5c;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    padding:25px 30px;
}

.faq-question h3{
    color:#fff;
    font-size:20px;
}

.faq-question i{
    color:var(--accent);
    transition:.3s;
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active i{
    transform:rotate(45deg);
}


/*==================================================
FOOTER
==================================================*/

footer{
    background:#061427;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:25px;
    margin-bottom:70px;
}

.footer-logo{
    font-size:34px;
    font-weight:700;
    color:#fff;
}

.footer-logo span{
    color:var(--accent);
}

.footer-col p{
    margin:25px 0;
}

.footer-col h3{
    color:#fff;
    margin-bottom:25px;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    transition:.3s;
}

.footer-col ul li a:hover{
    color:var(--accent);
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#10284f;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--accent);
    color:#111;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom div{
    display:flex;
    gap:25px;
}

.footer-bottom a:hover{
    color:var(--accent);
}


/*==================================================
BACK TO TOP
==================================================*/

#backToTop{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--accent);
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}


/*==================================================
SEARCH MODAL
==================================================*/

.search-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.search-modal.active{
    display:flex;
}

.search-box{
    position:relative;
    width:700px;
}

.search-box input{
    width:100%;
    padding:20px 70px 20px 25px;
    border:none;
    border-radius:60px;
    font-size:18px;
}

.search-box button{
    position:absolute;
    right:12px;
    top:10px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--accent);
    color:#111;
}

.close-search{
    position:absolute;
    top:-60px;
    right:0;
    color:#fff;
    font-size:34px;
    cursor:pointer;
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero-grid,
.about-grid,
.app-grid{
grid-template-columns:1fr;
}

.news-grid{
grid-template-columns:repeat(2,1fr);
}

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.process-grid{
grid-template-columns:repeat(2,1fr);
}

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

.blog-grid{
grid-template-columns:repeat(2,1fr);
}

.tournament-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.cta-box,
.newsletter-wrapper{
flex-direction:column;
text-align:center;
}

.newsletter-form{
width:100%;
}

}


@media(max-width:768px){

nav{
display:none;
}

.menu-toggle{
display:block;
}

.hero{
padding-top:140px;
}

.hero h1{
font-size:40px;
}

.hero-buttons{
flex-direction:column;
}

.hero-stats{
flex-direction:column;
}

.live-strip .container{
grid-template-columns:1fr;
}

.news-grid,
.feature-grid,
.process-grid,
.counter-grid,
.blog-grid,
.tournament-grid,
.footer-grid{
grid-template-columns:1fr;
}

.about-stats{
justify-content:space-between;
}

.tabs{
justify-content:flex-start;
overflow:auto;
padding-bottom:10px;
}

.video-wrapper img{
height:350px;
}

.testimonial{
padding:35px;
}

.testimonial p{
font-size:18px;
}

.newsletter-form{
flex-direction:column;
gap:15px;
}

.newsletter-form input,
.newsletter-form button{
width:100%;
border-radius:50px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-bottom div{
flex-wrap:wrap;
justify-content:center;
}

.search-box{
width:90%;
}

}


@media(max-width:480px){

section{
padding:70px 0;
}

.section-title h2{
font-size:32px;
}

.hero h1{
font-size:34px;
}

.about-content h2,
.app-content h2,
.cta-content h2{
font-size:32px;
}

.hero-stats div{
min-width:100%;
}

.about-stats{
flex-direction:column;
gap:20px;
text-align:center;
}

.logo a{
font-size:28px;
}

.btn-primary,
.btn-outline{
width:100%;
}

}


/*==================================================
UTILITY CLASSES
==================================================*/

.text-center{
text-align:center;
}

.mt-30{
margin-top:30px;
}

.mt-50{
margin-top:50px;
}

.mb-30{
margin-bottom:30px;
}

.shadow{
box-shadow:var(--shadow);
}

.rounded{
border-radius:var(--radius);
}

.hidden{
display:none;
}


.matches-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:40px;

}

.match-tabs{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:40px;

flex-wrap:wrap;

}

.match-tab{

padding:14px 28px;

border:none;

border-radius:40px;

background:#16315e;

color:#fff;

cursor:pointer;

font-weight:600;

}

.match-tab.active{

background:#06cbeb;

color:#111;

}

.match-card{

background:#10284f;

border-radius:20px;

padding:20px;

cursor:pointer;

transition:.3s;

}

.match-card:hover{

transform:translateY(-8px);

}

.match-head{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:15px;

}

.match-type{

background:#06cbeb;

padding:5px 12px;

border-radius:20px;

font-size:12px;

color:#111;

font-weight:bold;

}

.teams{

display:flex;

justify-content:space-between;

align-items:center;

margin:20px 0;

}

.team{

text-align:center;

width:40%;

}

.team img{

width:70px;

height:70px;

margin:auto;

object-fit:contain;

}

.vs{

font-size:24px;

font-weight:bold;

color:#06cbeb;

}

.match-info{

margin-top:20px;

font-size:14px;

line-height:28px;

}


/* popup */

.match-popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}

.match-popup.active{

display:flex;

}

.popup-box{

background:#0b1d3f;

padding:40px;

border-radius:20px;

width:450px;

max-width:95%;

position:relative;

text-align:center;

}

.popup-close{

position:absolute;

top:15px;

right:15px;

background:none;

border:none;

font-size:30px;

color:#fff;

cursor:pointer;

}

.popup-teams{

display:flex;

justify-content:space-between;

align-items:center;

margin:35px 0;

}

.popup-teams img{

width:80px;

height:80px;

}

.popup-details{

margin:25px 0;

}

.countdown{

margin-top:20px;

font-size:18px;

}

#countdown{

font-size:36px;

font-weight:bold;

color:#06cbeb;

}

@media(max-width:768px){

.matches-grid{

grid-template-columns:1fr;

}

}