body{
background:#1e1e1e;
font-family:Arial,sans-serif;
color:#fff;
}

.ams-user-wrap{
display:flex;
justify-content:flex-end;
margin-bottom:25px;
}

.ams-filter-tabs{
display:flex;
gap:12px;
margin-bottom:30px;
flex-wrap:wrap;
}

.ams-filter-tab{
padding:12px 22px;
border-radius:40px;
background:#2b2b2b;
color:#fff;
cursor:pointer;
font-weight:700;
border:1px solid #333;
}

.ams-filter-tab.active{
background:#d4a018;
color:#1e1e1e;
}

.ams-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:24px;
}

.ams-card{
background:#262626;
border-radius:24px;
padding:18px;
position:relative;
overflow:hidden;
transition:.3s;
border:1px solid #333;
}

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

.ams-card img{
width:100%;
height:230px;
object-fit:cover;
border-radius:18px;
}

.ams-lock{
position:absolute;
top:20px;
right:20px;
background:#d4a018;
color:#1e1e1e;
padding:8px 14px;
border-radius:30px;
font-size:12px;
font-weight:700;
}

.ams-card h3{
font-size:24px;
margin:18px 0;
}

.ams-buy-btn{
display:block;
width:100%;
padding:15px;
border-radius:16px;
background:#d4a018;
color:#1e1e1e;
text-align:center;
font-weight:700;
text-decoration:none;
border:none;
cursor:pointer;
}

audio{
width:100%;
margin-top:12px;
}

.ams-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.8);
backdrop-filter:blur(10px);
z-index:9999;
}

.ams-modal-box{
background:#262626;
width:450px;
max-width:94%;
margin:80px auto;
padding:35px;
border-radius:30px;
position:relative;
border:1px solid #3b3b3b;
}

.ams-modal-box h2{
font-size:32px;
margin-bottom:25px;
}

.ams-tabs{
display:flex;
gap:10px;
margin-bottom:25px;
}

.ams-tab{
flex:1;
padding:14px;
border:none;
border-radius:14px;
background:#1e1e1e;
color:#fff;
cursor:pointer;
font-weight:700;
}

.ams-tab.active{
background:#d4a018;
color:#1e1e1e;
}

.ams-content{
display:none;
}

.ams-content.active{
display:block;
}

.ams-content input{
width:100%;
padding:16px;
margin-bottom:14px;
border-radius:14px;
background:#1e1e1e;
border:1px solid #444;
color:#fff;
}

.ams-content button{
width:100%;
padding:16px;
background:#d4a018;
border:none;
border-radius:14px;
font-weight:700;
color:#1e1e1e;
cursor:pointer;
}

.ams-close{
position:absolute;
top:14px;
right:20px;
font-size:30px;
cursor:pointer;
}

.ams-loader{
display:none;
width:45px;
height:45px;
border:4px solid #444;
border-top:4px solid #d4a018;
border-radius:50%;
margin:18px auto 0;
animation:spin 1s linear infinite;
}

@keyframes spin{
100%{transform:rotate(360deg);}
}

.ams-user{
position:relative;
background:#d4a018;
padding:12px 18px;
border-radius:50px;
color:#1e1e1e;
font-weight:700;
display:inline-block;
}

.ams-dropdown{
display:none;
position:absolute;
right:0;
top:55px;
background:#262626;
border-radius:18px;
overflow:hidden;
width:200px;
border:1px solid #444;
}

.ams-user:hover .ams-dropdown{
display:block;
}

.ams-dropdown a{
display:block;
padding:14px 16px;
color:#fff;
text-decoration:none;
border-bottom:1px solid #333;
}
