* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    qbackground: linear-gradient(
            rgba(0, 25, 35, .45),
            rgba(0, 0, 0, .8)
    ),
    url("https://gtfinstrumental.com/streams/images/palms.jpg");
    background: url("https://gtfinstrumental.com/images/palms.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.container {
    max-width: 1000px;
    margin: auto;
    padding: 10px 10px 10px;
}

.block {
    margin:15px auto;
}


/* TOP IMAGE */
.hero {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .6);
}

.hero img {
    display: block;
    width: 100%;
}

/* PLAYER */
.player {
    max-width: 100%;
    padding: 35px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(
            145deg,
            rgba(5, 50, 65, .9),
            rgba(0, 0, 0, .75)
    );
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .7),
    inset 0 0 40px rgba(0, 180, 220, .15);
}

.station {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffb35c;
    font-size: 14px;
    letter-spacing: 4px;
}

.dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #ff5428;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff5428;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% {
        opacity: .3;
    }
}

h1 {
    font-size: 38px;
    letter-spacing: 5px;
    margin: 15px 0 5px;
    text-shadow: 0 3px 10px black;
}

.subtitle {
    color: #bfe2e8;
}

/* BUTTON */
.play {
    margin: 25px 0;
    padding: 22px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    color: white;

    background: linear-gradient(
            135deg,
            #ffbd55,
            #ff6338
    );

    box-shadow: 0 10px 30px rgba(255, 100, 50, .5);
    transition: .25s;
}

.play:hover {
    transform: scale(1.07);
}

/* CUSTOM PLAYER */
.player-box {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
}

.wave {
    height: 35px;
    border-radius: 20px;
    background: repeating-linear-gradient(
            90deg,
            #19c7dc 0px,
            #19c7dc 3px,
            transparent 3px,
            transparent 9px
    );
    opacity: .8;
}

.info {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #b5dbe0;
    font-size: 14px;
}

/* LINKS */
.cards {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.card {
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    color: white;

    background: rgba(0, 0, 0, .55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    transition: .25s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card div {
    padding: 18px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
}

/* FOOTER */
footer {
    margin-top: 50px;
    text-align: center;
    opacity: .7;
}


