*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#050505;
font-family:Montserrat,sans-serif;
color:#fff;
overflow-x:hidden;
}

.hero{
position:relative;
height:260px;
background:url("../images/skyline.jpg") center 10px;
background-size:90% auto;
background-repeat:no-repeat;
background-color:#000;
}

.header{
position:relative;
z-index:5;
max-width:1450px;
margin:auto;
height:180px;
display:flex;
justify-content:space-between;
align-items:center;
padding:45px 35px 10px;
}
.logo{
    width:250px;
    margin-left:20px;
}

.right{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:12px;
margin-top:28px;
}

.social{

display:flex;

gap:12px;

}

.social a{

width:42px;

height:42px;

border-radius:50%;

background:#111;

border:2px solid #ff0000;

display:flex;

justify-content:center;

align-items:center;

color:white;

text-decoration:none;

font-size:18px;

transition:.3s;

}

.social a:hover{

background:#ff0000;

transform:translateY(-4px);

}

.station{

background:#111;

border-radius:12px;

padding:18px 28px;

border:1px solid #444;

box-shadow:0 0 18px rgba(0,0,0,.7);

text-align:center;

font-size:22px;

font-weight:800;

}

.station span{

display:block;

font-size:18px;

margin-top:4px;

font-weight:500;

}

.phone{

margin-top:8px;

font-size:26px;

font-weight:800;

color:#ff2b2b;

}

nav{

position:absolute;

bottom:-40px;

left:0;

width:100%;

height:60px;

display:flex;

justify-content:center;

align-items:center;

gap:40px;

background:rgba(0,0,0,.80);

backdrop-filter:blur(10px);

z-index:20;

}

nav a{

color:#fff;

text-decoration:none;

font-weight:700;

letter-spacing:1px;

font-size:16px;

position:relative;

cursor:pointer;

}

nav a.active::after{

content:"";

position:absolute;

bottom:-20px;

left:0;

width:100%;

height:4px;

background:#ff0000;

}

.cards{
    max-width:1400px;
    margin:55px auto 40px;
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:25px;
    padding:0 30px;
}

.card{

background:#101010;

border-radius:20px;

border:2px solid #ff0000;

padding:30px;

min-height:340px;

box-shadow:0 0 25px rgba(255,0,0,.25);

}

.card h2{

font-size:28px;

margin-bottom:25px;

}

.center{

text-align:center;

}

#playButton{

width:170px;

height:170px;

border-radius:50%;

background:#ff0000;

border:none;

color:white;

font-size:70px;

cursor:pointer;

box-shadow:0 0 40px red;

margin-top:25px;

}

.apps{

display:flex;

flex-direction:column;

gap:20px;

font-size:22px;

}

@media(max-width:1000px){

.header{

flex-direction:column;

height:auto;

align-items:center;

text-align:center;

}

.right{
    margin-top:25px;
}

.cards{

grid-template-columns:1fr;

}

nav{

gap:15px;

font-size:14px;

flex-wrap:wrap;

height:auto;

padding:15px;

position:relative;

}

.social-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin:30px 0;
}

.social-grid a{
height:80px;
display:flex;
justify-content:center;
align-items:center;
background:#151515;
border:2px solid #ff0000;
border-radius:15px;
color:#fff;
font-size:38px;
text-decoration:none;
transition:.3s;
}

.social-grid a:hover{
background:#ff0000;
transform:translateY(-5px);
box-shadow:0 0 20px rgba(255,0,0,.8);
}

.app-title{
text-align:center;
margin:35px 0 20px;
font-size:22px;
}

.store-buttons{
display:flex;
flex-direction:column;
gap:18px;
align-items:center;
}

.store-buttons img{
width:190px;
max-width:100%;
}

}