.media-bar{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 30px;
margin:30px auto 10px;
background: linear-gradient(145deg, #0e171e, #0f2622);
border:1px solid rgba(212,175,55,0.25);
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
backdrop-filter:blur(8px);
margin-bottom: 45px;
} .media-bar__left span{
color:#d4af37;
font:veight:700;
font-size:32px;
letter-spacing:1px;
text-transform:uppercase;
} .media-bar__right{
display:flex;
gap:14px;
flex-wrap:wrap;
justify-content:flex-end;
flex:1;
margin: 20px 0 0 0;
} .media-btn{
display:flex;
align-items:center;
gap:10px;
padding:10px 16px;
border-radius:999px;
text-decoration:none;
font-size:14px;
color:#fff;
border:2px solid rgba(255,255,255,0.08);
transition:all .25s ease;
} .media-btn .icon{
width:120px;
height:auto;
display:block;             
object-fit:contain;  
border-radius:0;
padding:6px;
box-sizing:border-box;          
} .media-btn:hover{
transform:translateY(-2px);
box-shadow:0 0 18px rgba(212,175,55,0.25);
} @media(max-width:768px){
.media-bar{
flex-direction:column;
gap:0;
text-align:center;
}
.media-bar__right{
justify-content:center;
}
} .cd-box{
display:flex;
align-items:center;
gap:50px;
background: linear-gradient(145deg, #0e171e, #0f2622);
padding:45px 55px;
margin-bottom:45px;
border-radius:22px;
border:1px solid rgba(212,175,55,.25);
border-left:6px solid #d4af37;
box-shadow:
0 8px 35px rgba(0,0,0,.55),
0 0 20px rgba(212,175,55,.08);
transition: all .35s ease;
}
.cd-box:hover{
transform:translateY(-4px);
box-shadow:
0 16px 45px rgba(0,0,0,.7),
0 0 35px rgba(212,175,55,.12);
} .cd-year{
min-width:180px;
font-size:76px;
font-weight:700;
line-height:1;
letter-spacing:4px;
color:#d4af37;
text-shadow:
0 0 10px rgba(212,175,55,.35),
0 0 25px rgba(212,175,55,.15);
} .cd-cover img{
display:block;
width:230px;
border-radius:16px;
box-shadow:
0 15px 35px rgba(0,0,0,.6),
0 0 18px rgba(212,175,55,.15);
transition:.4s ease;
}
.cd-box:hover .cd-cover img{
transform:scale(1.05) rotate(-2deg);
} .cd-content{
flex:1;
}
.cd-content h3{
margin:0 0 18px;
font-size:38px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#fff;
}
.cd-content p{
margin:0;
max-width:700px;
font-size:19px;
line-height:1.75;
color:#d3d3d3;
} .btn-order{
width:240px;
height:72px;
display:flex;
justify-content:center;
padding:0;
margin:0;
box-sizing:border-box;
font-family:inherit;
font-size:22px;
font-weight:700;
letter-spacing:1px;
line-height:1;
text-decoration:none !important;
color:#111;
border-radius:60px;
border:2px solid #f2d67a;
background:linear-gradient(180deg,#f6e089 0%,#e3c45d 55%,#c89d22 100%);
cursor:pointer;
position:relative;
overflow:hidden;
transition: all .35s ease;
} .btn-order::before{
content:"";
position:absolute;
top:0;
left:-130%;
width:70%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
transform:skewX(-25deg);
transition:.7s ease;
}
.btn-order:hover::before{
left:150%;
} .btn-order:hover{
transform:translateY(-3px) scale(1.04);
background:linear-gradient(180deg,#ffefad,#eccb63,#d4af37);
box-shadow:
0 14px 35px rgba(212,175,55,.55),
0 0 22px rgba(212,175,55,.35);
} .btn-order:active{
transform:scale(.98);
} .btn-order:focus-visible{
outline:3px solid rgba(212,175,55,.6);
outline-offset:4px;
} .audio-player-wrap{
display:flex;
justify-content:center;
align-items:center;
margin:0px 0px 20px 0px;
min-width:130px;
}
.play-circle{
width:80px;
height:80px;
border:none;
border-radius:50%;
background:linear-gradient(145deg,#e5c95a,#c79c1c);
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
line-height:1;
position:relative;     
overflow:visible;
font-size:32px;
color:#111;
font-family:inherit;
text-align:center;
box-shadow:
0 0 20px rgba(224,190,70,.4),
0 0 50px rgba(224,190,70,.25);
transition:.3s;
}
.play-circle::before {
content: "▶";
}
.play-circle.playing::before {
content: "■";
}
.play-circle:hover{
transform:scale(1.08);
box-shadow:
0 0 30px rgba(224,190,70,.6),
0 0 60px rgba(224,190,70,.35);
} @media(max-width:980px){
.cd-box{
flex-direction:column;
text-align:center;
padding:40px 30px;
gap:30px;
}
.cd-year{
font-size:62px;
}
.cd-cover img{
width:220px;
}
.cd-content h3{
font-size:30px;
}
.btn-order{
width:100%;
max-width:320px;
height:64px;
font-size:20px;
}
}