/* ==========================================================
   DIGITAL MUSIC ROMANIA
   BLOCKCHAIN MUSIC REGISTRY
========================================================== */

/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",Arial,sans-serif;

    background:#090909;

    color:#fff;

    overflow-x:hidden;

}

/* ==========================================================
   BACKGROUND
========================================================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,#1d1d1d 0%,transparent 60%),
    radial-gradient(circle at bottom,#101010 0%,transparent 70%),
    #090909;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    inset:0;

    background:
    linear-gradient(
        rgba(255,255,255,.02),
        rgba(255,255,255,.01)
    );

    z-index:-1;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:rgba(8,8,8,.88);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.logo{

    display:flex;

    align-items:center;

    gap:16px;

}

.logo-icon{

    font-size:42px;

}

.logo h1{

    color:#FFD700;

    font-size:24px;

}

.logo p{

    color:#8b8b8b;

    font-size:13px;

    margin-top:3px;

}

nav{

    display:flex;

    gap:32px;

}

nav a{

    font-weight:600;

    transition:.25s;

}

nav a:hover{

    color:#FFD700;

}

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:#fff;

    font-size:32px;

    cursor:pointer;

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:12px;

    background:#FFD700;

    color:#000;

    font-weight:700;

    transition:.30s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(255,215,0,.25);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    transition:.30s;

}

.btn-secondary:hover{

    background:#1a1a1a;

}

/* ==========================================================
   BADGE
========================================================== */

.badge{

    display:inline-block;

    padding:9px 18px;

    border-radius:999px;

    background:#1aa957;

    color:#fff;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    min-height:92vh;

    display:flex;

    align-items:center;

    padding:90px 8%;

}

.hero-content{

    width:100%;

    display:grid;

    grid-template-columns:1fr 430px;

    gap:80px;

    align-items:center;

}

.hero-left h2{

    font-size:64px;

    line-height:1.08;

    margin-bottom:24px;

}

.hero-left p{

    max-width:650px;

    color:#bdbdbd;

    line-height:1.9;

    font-size:19px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:38px;

    flex-wrap:wrap;

}

/* ==========================================================
   HERO CARD
========================================================== */

.hero-showcase{

    background:#151515;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 70px rgba(0,0,0,.45);

}

.hero-showcase img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    display:block;

    transition:.35s;

}

.showcase-info{

    padding:28px;

}

.showcase-label{

    display:inline-block;

    color:#FFD700;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:12px;

}

.showcase-info h3{

    font-size:28px;

    margin-bottom:8px;

}

.showcase-info p{

    color:#bdbdbd;

    margin-bottom:20px;

}

.showcase-status{

    display:inline-block;

    background:#1aa957;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

}

/* ==========================================================
   LATEST RELEASE
========================================================== */

.latest-release{

    padding:100px 8%;

}

.latest-content{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

/* COVER */

.latest-cover{

    overflow:hidden;

    border-radius:24px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    transition:.35s;

}

.latest-cover:hover{

    transform:translateY(-6px);

    box-shadow:0 35px 80px rgba(0,0,0,.55);

}

.latest-cover img{

    width:100%;

    display:block;

    aspect-ratio:1;

    object-fit:cover;

}

/* INFO */

.latest-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.latest-info h2{

    font-size:56px;

    line-height:1.1;

    margin:20px 0 10px;

}

#latest-artist{

    color:#FFD700;

    font-size:22px;

    margin-bottom:25px;

}

.latest-description{

    max-width:720px;

    color:#bdbdbd;

    font-size:18px;

    line-height:1.9;

}

.latest-info .hero-buttons{

    margin-top:40px;

}

/* ==========================================================
   AVAILABLE ON
========================================================== */

.available-on{

    margin-top:30px;

}

.available-title{

    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#777;

    margin-bottom:16px;

    font-weight:600;

}

.platform-icons{

    display:flex;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.platform-icons a{

    color:#B8860B;

    font-size:28px;

    transition:all .25s ease;

}

.platform-icons a:hover{

    color:#FFD700;

    transform:translateY(-3px) scale(1.12);

    filter:drop-shadow(0 0 10px rgba(255,215,0,.45));

}

/* dacă vrei iconițe puțin mai mari */

.platform-icons i{

    font-size:30px;

}

/* ==========================================================
   ABOUT
========================================================== */

.about-section{

    padding:110px 8%;

}

.about-content{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-content h2{

    font-size:56px;

    line-height:1.15;

    margin:20px 0;

}

.about-content p{

    color:#bdbdbd;

    font-size:18px;

    line-height:2;

}

/* ==========================================================
   STATS
========================================================== */

.stats{

    padding:90px 8%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:42px 30px;

    text-align:center;

    transition:.30s;

}

.stat:hover{

    transform:translateY(-8px);

    border-color:#FFD700;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.stat h3{

    color:#FFD700;

    font-size:44px;

    margin-bottom:10px;

}

.stat p{

    color:#9b9b9b;

}

/* ==========================================================
   SECTION TITLES
========================================================== */

.section-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:40px;

}

/* ==========================================================
   RECOMMENDED
========================================================== */

.recommended{

    padding:100px 8%;

}

.carousel{

    display:flex;

    gap:24px;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding-bottom:12px;

}

.carousel::-webkit-scrollbar{

    display:none;

}

.carousel-card{

    min-width:300px;

    background:#151515;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.carousel-card:hover{

    transform:translateY(-8px);

    border-color:#FFD700;

}

.carousel-cover{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

}

.carousel-info{

    padding:24px;

}

.carousel-info h3{

    font-size:22px;

    margin-bottom:8px;

}

.carousel-info p{

    color:#bdbdbd;

    margin-bottom:10px;

}

.carousel-info span{

    display:block;

    color:#FFD700;

    font-family:monospace;

    font-size:13px;

    margin-bottom:20px;

}

.carousel-buttons{

    display:flex;

    gap:10px;

}

.carousel-btn{

    flex:1;

    padding:12px;

    border-radius:10px;

    text-align:center;

    font-weight:700;

    transition:.25s;

}

.carousel-btn.gold{

    background:#FFD700;

    color:#000;

}

.carousel-btn.dark{

    background:#222;

    color:#fff;

}

.carousel-btn:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   SEARCH
========================================================== */

.search-section{

    padding:100px 8% 50px;

}

.search-section h2{

    font-size:38px;

    margin-bottom:24px;

}

#searchBox{

    width:100%;

    padding:20px 24px;

    border-radius:16px;

    border:1px solid #2c2c2c;

    background:#121212;

    color:#fff;

    font-size:18px;

    outline:none;

    transition:.30s;

}

#searchBox:focus{

    border-color:#FFD700;

    box-shadow:0 0 18px rgba(255,215,0,.15);

}

/* ==========================================================
   CATALOG
========================================================== */

.catalog{

    padding:40px 8% 100px;

}

.catalog h2{

    font-size:40px;

    margin-bottom:40px;

}

#songs-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

/* ==========================================================
   REGISTRY CARD
========================================================== */

.registry-card{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:22px;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.registry-card:hover{

    transform:translateY(-8px);

    border-color:#FFD700;

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.registry-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #9b6d00,
        #FFD700,
        #9b6d00
    );

}

.registry-cover{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    display:block;

}

.registry-status{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 14px;

    background:#18b45b;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

.registry-content{

    padding:28px;

}

.registry-content h3{

    font-size:28px;

    text-align:center;

    margin-bottom:10px;

}

.registry-artist{

    text-align:center;

    color:#bdbdbd;

    margin-bottom:24px;

}

.registry-isrc{

    background:#1d1d1d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:18px;

    margin-bottom:26px;

    text-align:center;

}

.registry-isrc span{

    display:block;

    color:#888;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

}

.registry-isrc strong{

    display:block;

    margin-top:10px;

    font-family:monospace;

    font-size:18px;

    color:#fff;

}

.registry-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:22px;

}

.registry-network{

    color:#888;

    font-size:13px;

}

.registry-open{

    color:#FFD700;

    font-weight:700;

    transition:.25s;

}

.registry-card:hover .registry-open{

    transform:translateX(5px);

}

/* ==========================================================
   SINGLE RESULT
========================================================== */

#songs-container.single-result{

    display:flex;
    justify-content:center;
    align-items:flex-start;

}

.registry-single{

    width:100%;
    max-width:560px;

}

/* ==========================================================
   NO RESULTS
========================================================== */

.no-results{

    width:100%;
    text-align:center;
    padding:90px 20px;

}

.no-results h2{

    font-size:34px;
    margin-bottom:15px;

}

.no-results p{

    color:#888;
    font-size:18px;

}

/* ==========================================================
   LOADER
========================================================== */

.loader{

    position:fixed;
    inset:0;

    display:none;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    gap:20px;

    background:rgba(9,9,9,.94);

    backdrop-filter:blur(8px);

    z-index:9999;

}

.spinner{

    width:70px;
    height:70px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.10);

    border-top-color:#FFD700;

    animation:spin 1s linear infinite;

}

.loader p{

    color:#ccc;
    font-size:18px;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    margin-top:100px;

    padding:80px 8%;

    background:#070707;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-content{

    max-width:900px;
    margin:auto;

}

.footer-content h3{

    color:#FFD700;

    font-size:32px;

    margin-bottom:15px;

}

.footer-content p{

    color:#9a9a9a;

    line-height:1.8;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:30px;

    margin:40px 0;

}

.footer-links a{

    color:#fff;

    transition:.25s;

}

.footer-links a:hover{

    color:#FFD700;

}

.copyright{

    color:#777;
    font-size:14px;
    letter-spacing:1px;

}

.footer-streaming{

    margin-top:35px;
    margin-bottom:35px;

    display:flex;
    flex-direction:column;
    align-items:center;

}
/* ==========================================================
   FADE ANIMATION
========================================================== */

.fade{

    opacity:0;

    transform:translateY(30px);

    transition:.7s;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================================
   CARD ANIMATION
========================================================== */

.registry-card,
.carousel-card,
.latest-cover,
.hero-showcase,
.stat{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:950px){

.hero-content,
.latest-content,
.about-content{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.latest-info{

    align-items:center;

}

.platform-icons{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:22px;

    flex-wrap:wrap;

    width:100%;

}

.stats{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:900px){

.menu-toggle{

    display:block;

}

nav{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    display:none;

    flex-direction:column;

    background:#111;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

nav.active{

    display:flex;

}

nav a{

    padding:14px 0;

    font-size:18px;

}

}

@media(max-width:768px){

.navbar{

    padding:18px 6%;

}

.hero{

    padding:70px 6%;

}

.hero-left h2{

    font-size:42px;

}

.hero-left p{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.latest-info h2{

    font-size:42px;

}

.about-content h2{

    font-size:40px;

}

.section-title{

    font-size:30px;

}

.stats{

    grid-template-columns:1fr;

}

#songs-container{

    grid-template-columns:1fr;

}

.registry-footer{

    flex-direction:column;

    gap:12px;

    text-align:center;

}

.footer-links{

    flex-direction:column;

    gap:15px;

}

.platform-icons{

    gap:18px;

}

.platform-icons a{

    font-size:26px;

}

}

/* ==========================================================
   COMPLETE REGISTRY BUTTON
========================================================== */

.registry-more{

    display:flex;
    justify-content:center;
    margin-top:50px;

}

.registry-more-btn{

    display:inline-block;

    padding:16px 38px;

    border:2px solid #B8860B;
    border-radius:50px;

    color:#FFD700;
    text-decoration:none;

    font-weight:700;
    font-size:16px;

    transition:.3s ease;

}

.registry-more-btn:hover{

    background:#B8860B;
    color:#111;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(255,215,0,.25);

}

/* ==========================================================
   REGISTRY PREVIEW
========================================================== */

.catalog-subtitle{

    color:#999;
    margin-bottom:35px;
    text-align:center;
    font-size:15px;

}

.registry-link{

    display:flex;
    justify-content:center;
    margin-top:50px;

}

.registry-button{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    border:1px solid rgba(184,134,11,.35);

    border-radius:50px;

    color:#FFD700;
    text-decoration:none;

    font-weight:600;
    letter-spacing:.5px;

    transition:.3s;

    background:rgba(255,255,255,.03);

}

.registry-button:hover{

    background:#B8860B;
    color:#111;

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(184,134,11,.35);

}

.registry-button span{

    transition:.3s;

}

.registry-button:hover span{

    transform:translateX(6px);

}

/* ==========================================================
   REGISTRY SEARCH
========================================================== */

.registry-search{

    display:flex;
    justify-content:center;
    margin:35px 0 45px;

}

.registry-search input{

    width:100%;
    max-width:700px;

    padding:16px 24px;

    border-radius:50px;

    border:1px solid rgba(184,134,11,.25);

    background:#161616;

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.registry-search input:focus{

    border-color:#FFD700;

    box-shadow:0 0 20px rgba(255,215,0,.2);

}

.registry-search input::placeholder{

    color:#888;

}

/* ==========================================================
   REGISTRY STATS
========================================================== */

.registry-stats{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin:35px 0;

}

.stat-box{

    min-width:170px;
    padding:20px;

    text-align:center;

    background:#181818;

    border:1px solid rgba(255,215,0,.12);

    border-radius:14px;

}

.stat-box span{

    display:block;

    font-size:34px;

    font-weight:700;

    color:#FFD700;

}

.stat-box small{

    color:#888;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:11px;

}

/* ==========================================================
   REGISTRY HEADER
========================================================== */

.registry-header{

    position:sticky;
    top:0;
    z-index:100;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

    padding:25px 8%;

    background:rgba(10,10,10,.95);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,215,0,.08);

}

.registry-home{

    color:#FFD700;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.registry-home:hover{

    opacity:.8;

}

.registry-title{

    text-align:right;

}

.registry-title h1{

    margin:0;
    font-size:34px;

}

.registry-title p{

    margin-top:6px;
    color:#999;
    font-size:14px;

}

/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top{

    position:fixed;

    right:30px;
    bottom:30px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#B8860B;
    color:#111;

    font-size:26px;
    font-weight:bold;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    z-index:999;

}

.back-to-top:hover{

    transform:translateY(-4px);

    background:#FFD700;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}

/* ==========================================================
   REGISTRY TOOLBAR
========================================================== */

.registry-toolbar{

    display:flex;
    justify-content:flex-end;
    align-items:center;

    margin:30px 0 20px;

}

.registry-sort{

    display:flex;
    align-items:center;
    gap:12px;

}

.registry-sort label{

    color:#999;
    font-size:14px;

}

.registry-sort select{

    background:#181818;
    color:#fff;

    border:1px solid rgba(255,215,0,.15);

    border-radius:10px;

    padding:12px 16px;

    cursor:pointer;

    outline:none;

}

.registry-sort select:focus{

    border-color:#FFD700;

}

.certificate-modal {
    position: fixed;
    inset: 0;
    background:rgba(0,0,0,.55);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.certificate-modal.show {
    display: flex;
}

.certificate-window{

    width:min(920px,92vw);

    max-height:90vh;

    overflow-y:auto;

    padding:35px;
    background:#111;

    border-radius:18px;

    padding:30px;

    color:white;

    position:relative;

}

.certificate-close{

position:absolute;
top:18px;
right:18px;

width:44px;
height:44px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:#181818;

border:1px solid rgba(184,134,11,.35);

color:#fff;

font-size:22px;

cursor:pointer;

transition:.25s;
}

.certificate-close:hover{

background:#B8860B;

color:#111;

transform:rotate(90deg) scale(1.08);

box-shadow:0 0 18px rgba(184,134,11,.35);

}

.preview-card{
    text-align:center;
}

.preview-cover{
    width:260px;
    max-width:100%;
    border-radius:14px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    transition:transform .3s ease;
}

.preview-info{
    text-align:left;
    margin-top:25px;
}

.preview-info p{
    margin:10px 0;
}

.preview-layout{
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:40px;
    align-items:start;
}

.preview-cover{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

.preview-cover:hover{

    transform:scale(1.03);

}

.preview-right h2{

    margin:0;
    font-size:30px;

}

.preview-right h3{

    margin:8px 0 30px;
    color:#bbb;
    font-weight:400;

}

.preview-meta{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.preview-meta div{

    background:#1d1d1d;

    padding:14px 18px;

    border-radius:12px;

}

.preview-meta span{

    display:block;

    color:#999;

    font-size:.85rem;

    margin-bottom:6px;

}

.preview-meta strong{

    font-size:1rem;

}

@media (max-width:768px){

    .preview-layout{

        grid-template-columns:1fr;

    }

    .preview-cover{

        max-width:280px;
        margin:auto;
        display:block;

    }

}

.preview-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    margin-top:30px;
}

.preview-actions button{
    width:100%;
    min-height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:14px;

    background:#181818;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.25s;
}

.preview-actions button:hover{
    background:#B8860B;
    color:#111;
    transform:translateY(-2px);
}

.preview-actions button i{

    margin-right:8px;

    font-size:15px;

}

.preview-actions button:active{
    transform:scale(.98);
}
.meta-row{

    display:grid;
    grid-template-columns:140px 1fr;

    align-items:center;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.meta-row span{

    color:#9d9d9d;

}

.meta-row strong{

    text-align:right;

    word-break:break-all;

}

.status-ok{

    color:#49d17d;

}

.preview-header{

    margin-bottom:25px;

}

.preview-badge{

    display:inline-block;

    background:#1db954;

    color:white;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;

    padding:6px 12px;

    border-radius:999px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.certificate-window{

    transform:scale(.95);

    opacity:0;

    transition:.25s ease;

}

.certificate-modal.show .certificate-window{

    transform:scale(1);

    opacity:1;

}

.preview-section{

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:18px;

    margin-top:22px;

}

.preview-section h4{

    margin:0 0 15px;

    padding-bottom:8px;

    border-bottom:1px solid rgba(255,255,255,.12);

    font-size:1rem;

    color:#f5c542;

    letter-spacing:.5px;

}

.preview-subtitle{

    color:#9a9a9a;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.75rem;

    margin-top:6px;

}

#view-blockchain{

    background:#1db954;
    color:white;

}

#view-blockchain:hover{

    background:#19a54b;

}

.tx-link{

    color:#4da3ff;
    text-decoration:none;

}

.tx-link:hover{

    text-decoration:underline;

}

/*==================================
LISTEN EVERYWHERE
==================================*/

.listen-section{

    padding:90px 20px;

    text-align:center;

}

.listen-section h2{

    font-size:34px;

    margin-bottom:15px;

    color:#fff;

}

.listen-subtitle{

    color:#9d9d9d;

    max-width:650px;

    margin:0 auto 45px;

    line-height:1.8;

}

.listen-platforms{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:30px;

}

.listen-platforms a{

    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    color:#B8860B;

    font-size:34px;

    text-decoration:none;

    transition:.30s ease;

}

.listen-platforms a:hover{

    transform:translateY(-6px);

    background:#B8860B;

    color:#111;

    box-shadow:0 15px 35px rgba(184,134,11,.30);

}

@media(max-width:768px){

.listen-platforms{

    gap:18px;

}

.listen-platforms a{

    width:60px;
    height:60px;

    font-size:28px;

}

}

/* ==========================================
   404 PAGE
========================================== */

/* ==========================================
   404 PAGE
========================================== */

.error-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.error-card{

    width:100%;
    max-width:700px;

    padding:60px 45px;

    text-align:center;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.error-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-bottom:35px;

    color:#B8860B;

    font-size:22px;

    font-weight:600;

}

.error-logo i{

    font-size:32px;

}

.error-card h1{

    font-size:120px;

    color:#B8860B;

    margin:0;

    line-height:1;

}

.error-card h2{

    margin:18px 0;

    font-size:34px;

}

.error-card p{

    max-width:500px;

    margin:0 auto 40px;

    color:#bdbdbd;

    line-height:1.8;

}

.error-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.error-buttons a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    background:#B8860B;

    transition:.25s;

}

.error-buttons a:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(184,134,11,.35);

}

@media(max-width:768px){

.error-card{

    padding:40px 25px;

}

.error-card h1{

    font-size:90px;

}

.error-card h2{

    font-size:28px;

}

.error-buttons{

    flex-direction:column;

}

.error-buttons a{

    justify-content:center;

}

}