/* ==================================================
   HYPERSONIC MUSIC
   MASTER STYLESHEET

   Version : 2.2.0
Last Updated : July 2026

Version History

v2.0.0
• Initial Master Stylesheet

v2.2.0
• Added Song Details
• Added Purchase Pages
• Added Store Homepage
• Added Audio Player
• Added Related Songs
• Added Mobile Layout
• Added Universal Section Utility
• Added Download Page styles
• Added Purchase Confirmation
• Added Download Instructions
• Added Related Music
• Added Back Links
• Added responsive Download Page layout
================================================== */

/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    text-align: center;
}

header {
    background: #000;
    padding: 15px;
}

/* ==================================================
   GLOBAL LAYOUT
================================================== */

/* ===========================
   TOP NAVIGATION
=========================== */

.top-nav{
    background:#111827;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,.25);
}

.top-nav .nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 20px;
}

.logo{
    color:#ffffff;
    font-size:24px;
    font-weight:bold;
    text-decoration:none;
}

.logo span{
    color:#22c55e;
}

.nav-links{
    display:flex;
    gap:22px;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#22c55e;
}

.nav-links a.active{
    color:#22c55e;
}

@media(max-width:768px){

    .top-nav .nav-container{
        flex-direction:column;
    }

    .nav-links{
        margin-top:12px;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }
}

/* ===========================
   HERO SECTION
=========================== */

.hero{
    position:relative;
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;

    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("/images/music/heroes/hero-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:850px;
    padding:40px 20px;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hero h2{
    font-size:28px;
    font-weight:300;
    margin-bottom:30px;
    color:#d1d5db;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    color:#f3f4f6;
}

.hero-button{

    display:inline-block;

    margin-top:40px;

    padding:18px 40px;

    background:#22c55e;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:20px;

    font-weight:bold;

    transition:.35s;
}

.hero-button:hover{

    background:#16a34a;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(34,197,94,.35);

}

@media (max-width:768px){

    .hero{
        min-height:480px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:22px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-button{
        padding:15px 30px;
        font-size:18px;
    }

}

/* ===========================
   FEATURED RELEASE
=========================== */

.featured-release{

    background:#18181b;

    padding:70px 20px;

}

.featured-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:380px 1fr;

    gap:50px;

    align-items:center;

}

.featured-cover img{

    width:100%;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.featured-info h2{

    font-size:46px;

    margin-bottom:10px;

}

.featured-label{

    color:#22c55e;

    font-size:18px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.featured-description{

    margin:30px 0;

    font-size:20px;

    line-height:1.8;

    color:#d1d5db;

}

.song-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.song-buttons a{

    padding:15px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.listen-btn{

    background:#22c55e;

    color:white;

}

.lyrics-btn{

    background:#2563eb;

    color:white;

}

.video-btn{

    background:#dc2626;

    color:white;

}

.buy-btn{

    background:#f59e0b;

    color:#111;

}

/* Music Action Buttons */

.lyrics-btn,
.video-btn,
.buy-btn{

    display:inline-block;

    padding:14px 28px;

    margin:8px 6px;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

    transition:transform 0.2s ease,
               opacity 0.2s ease;

}

.lyrics-btn:hover,
.video-btn:hover,
.buy-btn:hover{

    transform:translateY(-2px);

    opacity:0.9;

}

.song-buttons a:hover{

    transform:translateY(-3px);

}

/* ===========================
   LATEST SINGLES
=========================== */

.latest-releases{

    background:#111827;

    padding:80px 20px;

}

.latest-releases h2{

    font-size:42px;

    margin-bottom:15px;

}

.latest-releases > p{

    color:#d1d5db;

    font-size:18px;

    margin-bottom:50px;

}

.music-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:30px;
    justify-items:center;
}

.music-card{
    width:100%;
    max-width:360px;

}

.music-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.45);

}

.music-card img{

    width:100%;

    display:block;

}

.music-card{
    display:flex;
    flex-direction:column;
}

.music-card h3{
    min-height:72px;
}

.music-card .song-buttons{
    margin-top:auto;

}

.music-card img{

    transition:.4s;

}

.music-card:hover img{

    transform:scale(1.05);

}

/* ===========================
   UPCOMING ALBUMS
=========================== */

.upcoming-albums{

    background:#0f172a;

    padding:90px 20px;

}

.albums-container{

    max-width:1200px;

    margin:auto;

}

.upcoming-albums h2{

    font-size:42px;

    margin-bottom:20px;

}

.albums-intro{

    color:#d1d5db;

    font-size:19px;

    margin-bottom:50px;

}

.album-card{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:40px;

    background:#1e293b;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.album-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.album-info{

    padding:40px;

    text-align:left;

}

.album-info h3{

    font-size:36px;

    margin-bottom:20px;

}

.album-info p{

    color:#d1d5db;

    line-height:1.8;

}

.album-info ul{

    margin:30px 0;

    padding-left:20px;

}

.album-info li{

    margin-bottom:12px;

}

.album-button{

    display:inline-block;

    margin-top:20px;

    background:#22c55e;

    color:white;

    padding:15px 30px;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

    transition:.3s;

}

.album-button:hover{

    background:#16a34a;

}

/* ==================================================
   SONG DETAILS PAGE
================================================== */

.song-info{
    background:#18181b;
    padding:80px 20px;
}

.song-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:center;
}

.album-cover img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.song-details{
    text-align:left;
}

.song-details h2{
    font-size:42px;
    margin-bottom:25px;
}

.song-details p{
    font-size:18px;
    line-height:1.8;
    color:#d1d5db;
}

.song-description{
    max-width:900px;
    margin:50px auto;
    padding:0 20px;
    font-size:20px;
    line-height:1.9;
    color:#e5e7eb;
}

/* ==================================================
   PURCHASE PAGE
================================================== */

.price{
    background:#111827;
    padding:60px 20px;
}

.price h2{
    font-size:42px;
}

.price p{
    font-size:34px;
    font-weight:bold;
    color:#22c55e;
}

.buy-button{
    display:inline-block;
    margin-top:25px;
    padding:18px 40px;
    background:#f59e0b;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-size:22px;
    font-weight:bold;
    transition:.3s;
}

.buy-button:hover{
    transform:translateY(-3px);
    background:#fbbf24;
}

.secure-digital-checkout{
    background:#18181b;
    padding:50px 20px;
}

.secure-digital-checkout h2{
    color:#22c55e;
}

.what-included{
    background:#0f172a;
    padding:70px 20px;
}

.what-included ul{
    max-width:600px;
    margin:auto;
    text-align:left;
}

.what-included li{
    margin-bottom:15px;
    font-size:18px;
}

.licence{
    max-width:900px;
    margin:auto;
    padding:60px 20px;
    line-height:1.8;
    color:#d1d5db;
}

.back-to-store{
    padding:40px;
}

/* ==================================================
   AUDIO PLAYER
================================================== */

.audio-player{
    padding:70px 20px;
    background:#18181b;
}

.audio-player h2{
    margin-bottom:25px;
}

.audio-player audio{
    width:100%;
    max-width:700px;
}

/* ==================================================
   RELATED SONGS
================================================== */

.related-songs{
    background:#111827;
    padding:80px 20px;
}

.related-song{
    max-width:700px;
    margin:25px auto;
    padding:25px;
    background:#1f2937;
    border-radius:15px;
}

.related-song h3{
    margin-bottom:20px;
}

.related-song a{
    display:inline-block;
    padding:12px 28px;
    background:#f59e0b;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

/* ==================================================
   STORE HOMEPAGE
================================================== */

.featured-ep{
    background:#18181b;
    padding:80px 20px;
}

.track-list{
    background:#111827;
    padding:70px 20px;
}

.track-list ol{
    max-width:650px;
    margin:auto;
    text-align:left;
    line-height:2;
}

.download-info{
    background:#0f172a;
    padding:70px 20px;
}

.download-info ul{
    max-width:600px;
    margin:auto;
    text-align:left;
}

.download-info li{
    margin-bottom:15px;
}

.saving-note{
    color:#22c55e;
    font-size:18px;
    font-weight:bold;
}

/* ===========================
   COMING SOON
=========================== */

.coming-soon{

    background:#18181b;

    padding:80px 20px;

}

.coming-container{

    max-width:850px;

    margin:auto;

    background:#27272a;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.coming-container h2{

    font-size:40px;

    margin-bottom:25px;

}

.coming-container p{

    color:#d1d5db;

    line-height:1.8;

    font-size:19px;

}

/* ===========================
   ABOUT
=========================== */

.about-music{

    background:#111;

    padding:80px 20px;

}

.about-container{

    max-width:900px;

    margin:auto;

}

.about-container h2{

    font-size:42px;

    margin-bottom:30px;

}

.about-container p{

    color:#d1d5db;

    line-height:1.9;

    font-size:19px;

    margin-bottom:25px;

}

.catalogue-number{
    color:#22c55e;
    font-weight:bold;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;

}

/* ==================================================
   Universal Section Rule
================================================== */

.section{
    padding:80px 20px;
}

/* ==================================================
   MOBILE RULE
================================================== */

@media (max-width:768px){

    .song-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .song-details{
        text-align:center;
    }

}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:768px){

    /* Navigation */

    /* Hero */

    /* Song Details */

    /* Album */

    /* Purchase */

}

/* ==================================================
   DOWNLOAD CENTRE
================================================== */

.download-hero{

    background:#18181b;

    padding:90px 20px;

}

.downloads{

    background:#111827;

    padding:80px 20px;

}

.download-card{

    max-width:700px;

    margin:30px auto;

    padding:30px;

    background:#1f2937;

    border-radius:18px;

}

.download-button{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:#22c55e;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:bold;

}

.download-button:hover{

    background:#16a34a;

}

.support{

    background:#18181b;

    padding:80px 20px;

}

.purchase-confirmation{
    background:#18181b;
    padding:70px 20px;
    text-align:center;
}

.purchase-confirmation h2{
    color:#22c55e;
    margin-bottom:20px;
}

.purchase-confirmation p{
    max-width:700px;
    margin:10px auto;
    line-height:1.8;
    color:#d1d5db;
}

.song-information{
    background:#111827;
    padding:80px 20px;
}

.song-information{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    max-width:1200px;
    margin:auto;
    align-items:center;
}

.song-information img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.4);
}

.download-file{
    background:#18181b;
    padding:80px 20px;
    text-align:center;
}

.download-file h2{
    margin-bottom:30px;
}

.download-instructions{
    background:#111827;
    padding:80px 20px;
}

.download-instructions ul{
    max-width:650px;
    margin:auto;
    text-align:left;
    line-height:2;
}

.related-music{
    background:#18181b;
    padding:80px 20px;
    text-align:center;
}

.related-music h2,
.related-music h3{
    margin-bottom:20px;
}

.related-music p{
    margin:8px 0;
}

.back-links{
    background:#111827;
    padding:60px 20px;
    text-align:center;
}

.back-links a{
    color:#22c55e;
    text-decoration:none;
    font-weight:bold;
}

.back-links a:hover{
    text-decoration:underline;
}

@media (max-width:768px){

    .song-information{
        grid-template-columns:1fr;
        text-align:center;
    }

    .song-details{
        text-align:center;
    }

}

/* ==================================================
   PAYMENT SUCCESS
================================================== */

.payment-success-hero{

    background:#14532d;

    padding:100px 20px;

    text-align:center;

}

.payment-success-hero h1{

    color:#ffffff;

    font-size:52px;

}

.payment-success-hero p{

    color:#dcfce7;

    font-size:20px;

    margin-top:15px;

}

.thank-you{

    background:#18181b;

    padding:80px 20px;

    text-align:center;

}

.next-steps{

    background:#111827;

    padding:80px 20px;

}

.next-steps ul{

    max-width:700px;

    margin:auto;

    line-height:2;

}

.download-action{

    background:#18181b;

    padding:70px 20px;

    text-align:center;

}

.continue-shopping{

    background:#111827;

    padding:70px 20px;

    text-align:center;

}

/* ==================================================
   PAYMENT CANCELLED
================================================== */

.payment-cancelled-hero{

    background:#7f1d1d;

    padding:100px 20px;

    text-align:center;

}

.payment-cancelled-hero h1{

    color:#ffffff;

    font-size:52px;

}

.payment-cancelled-hero p{

    color:#fecaca;

    font-size:20px;

    margin-top:15px;

}

.cancel-message{

    background:#18181b;

    padding:80px 20px;

    text-align:center;

}

.next-action{

    background:#111827;

    padding:80px 20px;

    text-align:center;

}

.return-store{

    background:#18181b;

    padding:70px 20px;

    text-align:center;

}

/* ==================================================
   PAYPAL CHECKOUT
================================================== */

.paypal-checkout{

    background:#18181b;
    padding:80px 20px;
    text-align:center;

}

.paypal-checkout h2{

    margin-bottom:15px;

}

.paypal-checkout p{

    max-width:650px;
    margin:0 auto 30px;
    color:#d1d5db;
    line-height:1.8;

}

/* ==================================================
   ALBUM / EP INFORMATION
================================================== */

.album-info{
    background:#111113;
    padding:70px 20px;
    text-align:center;
}

.album-info-container{
    max-width:850px;
    margin:0 auto;
}

.album-info-label{
    color:#22c55e;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:12px;
}

.album-info h2{
    margin-bottom:25px;
}

.album-info-description{
    max-width:750px;
    margin:0 auto 25px;
    line-height:1.8;
    color:#d1d5db;
}

.album-info-meta{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:30px;
    color:#d1d5db;
}

.album-info-meta span{
    font-size:15px;
}

.album-button{
    display:inline-block;
    padding:14px 28px;
    border-radius:30px;
    background:#f59e0b;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:transform 0.2s ease, opacity 0.2s ease;
}

.album-button:hover{
    transform:translateY(-2px);
    opacity:0.9;
}

/* ==================================================
   RELATED RELEASES
================================================== */

.related-songs{
    background:#111827;
    padding:80px 20px;
    text-align:center;
}

.related-songs h2{
    font-size:42px;
    margin-bottom:15px;
}

.related-intro{
    color:#d1d5db;
    font-size:18px;
    margin-bottom:45px;
}

/* Related song cards */

.related-song-grid{
    width:100%;
    max-width:1100px;
    margin:0 auto;

    display:grid !important;

    grid-template-columns:repeat(4, 250px) !important;

    justify-content:center !important;

    gap:22px;
}

.related-song-card{
    width:100%;
    min-width:0;

    background:#1f2937;
    border-radius:16px;
    overflow:hidden;

    box-shadow:0 12px 25px rgba(0,0,0,.28);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.related-song-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 32px rgba(0,0,0,.38);
}

/* Artwork */

.related-song-card img{
    display:block !important;

    width:250px !important;
    height:250px !important;

    object-fit:cover !important;
}

/* Card information */

.related-song-content{
    padding:18px 14px 22px;
}

.related-song-content h3{
    margin:0 0 8px;

    font-size:18px;
    line-height:1.35;
}

.related-song-content h3 span{
    display:block;

    font-size:15px;
    color:#d1d5db;
    font-weight:normal;

    margin-top:3px;
}

.related-song-content p{
    color:#9ca3af;
    margin:0 0 16px;
    font-size:15px;
}

/* Listen button */

.related-listen-btn{
    display:inline-block;

    padding:11px 22px;

    background:#22c55e;
    color:white;

    text-decoration:none;

    border-radius:30px;
    font-weight:bold;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.related-listen-btn:hover{
    transform:translateY(-2px);
    opacity:.9;
}


/* ==================================================
   RELATED RELEASES — TABLET
================================================== */

@media (max-width:900px){

    .related-song-grid{
        grid-template-columns:repeat(2, 250px) !important;
        max-width:550px;
    }

}

@media (max-width:600px){

    .related-song-grid{
        grid-template-columns:250px !important;
        max-width:250px;
    }

    .related-song-card{
        width:250px !important;
        min-width:250px !important;
        max-width:250px !important;
    }

    .related-song-card img{
        width:250px !important;
        height:250px !important;
    }

}

/* ==================================================
   YOU MAY ALSO LIKE — FINAL CARD SIZE
================================================== */

.related-songs {
    background: #111827;
    padding: 80px 20px;
    text-align: center;
}

.related-songs h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.related-intro {
    color: #d1d5db;
    font-size: 18px;
    margin: 0 auto 45px;
}

/* CARD GRID */

.related-grid {
    width: 100%;
    max-width: 1000px !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 20px !important;
    align-items: start;
}

/* INDIVIDUAL CARD */

.related-card {
    width: 100% !important;
    max-width: 235px !important;
    min-width: 0 !important;

    margin: 0 auto !important;

    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 15px 30px rgba(0,0,0,.3);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

/* ALBUM ARTWORK */

.related-card img {
    display: block !important;

    width: 100% !important;
    height: 235px !important;

    max-width: 235px !important;

    object-fit: cover !important;
}

/* CARD CONTENT */

.related-card-content {
    padding: 18px 14px 22px !important;
}

.related-card-content h3 {
    margin: 0 0 8px;

    font-size: 18px;
    line-height: 1.35;
}

.related-card-content h3 span {
    display: block;

    font-size: 15px;
    color: #d1d5db;
    font-weight: normal;

    margin-top: 3px;
}

.related-card-content p {
    color: #9ca3af;
    margin: 0 0 16px;
}

/* LISTEN BUTTON */

.listen-btn {
    display: inline-block;

    padding: 10px 20px;

    background: #22c55e;
    color: white;

    text-decoration: none;

    border-radius: 30px;
    font-weight: bold;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.listen-btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 520px !important;
    }

    .related-card {
        max-width: 235px !important;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .related-songs {
        padding: 60px 15px;
    }

    .related-songs h2 {
        font-size: 32px;
    }

    .related-intro {
        font-size: 16px;
    }

    .related-grid {
        grid-template-columns: 1fr !important;
        max-width: 235px !important;
    }

    .related-card {
        max-width: 235px !important;
    }

}

/* ==================================================
   VIDEO EMBEDS
================================================== */

/* ==================================================
   LYRICS
================================================== */

/* ==================================================
   SEARCH BAR
================================================== */

/* ==================================================
   PAGINATION
================================================== */

/* ==================================================
   BADGES
================================================== */

footer{
    background:#000;
    padding:30px 20px;
    text-align:center;
}

footer a{
    color:#d1d5db;
    text-decoration:none;
    margin:0 10px;
}

footer a:hover{
    color:#22c55e;

}