*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Sora',sans-serif;
}

html,body{
width:100%;
overflow-x:hidden;
background:#000;
color:#fff;
}

a{
text-decoration:none;
color:inherit;
}

.container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* HEADER */

.header{padding:20px 0;}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-weight:700;
font-size:18px;
white-space:nowrap;
}

.gold{
background:linear-gradient(135deg,#d4af37,#b8902e);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.header-buttons{display:flex;gap:10px;}

.buy-header,.telegram-btn{
padding:8px 14px;
border-radius:6px;
font-weight:600;
white-space:nowrap;
transition:.3s;
}

.buy-header{
background:linear-gradient(135deg,#d4af37,#b8902e);
color:#000;
}

.telegram-btn{
background:#1da1f2;
color:#fff;
}

.buy-header:hover,
.telegram-btn:hover{
transform:translateY(-2px);
}

/* HERO */

.hero{
text-align:center;
padding:60px 0 40px;
}

.hero h1{
font-size:clamp(28px,5vw,42px);
margin-bottom:10px;
}

.hero p{
color:#aaa;
}

/* PRODUCTS */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
padding-bottom:60px;
}

.card{
background:#111;
border-radius:20px;
overflow:hidden;
transition:.3s;
display:flex;
flex-direction:column;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.card-image{
width:100%;
aspect-ratio:16/9;
overflow:hidden;
}

.card-image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.card-content{
padding:20px;
}

.card-content h3{
margin-bottom:10px;
font-size:18px;
}

.card-content p{
color:#aaa;
font-size:14px;
}

/* PRODUCT PAGE */

.product-container{
padding:80px 0;
}

.video-wrapper{
max-width:900px;
margin:0 auto 40px;
}

.product-head{
display:flex;
align-items:center;
gap:25px;
margin-bottom:15px;
}

.product-title{
font-size:32px;
font-weight:700;
text-align:left;
}

.title-line{
width:100%;
height:2px;
margin-bottom:30px;
background:linear-gradient(to right,transparent,#5865F2,transparent);
}

.back-btn{
width:70px;
height:70px;
background:#5a6cff;
border-radius:22px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 0 35px rgba(90,108,255,0.8);
transition:.3s;
}

.back-btn svg{
width:26px;
height:26px;
stroke:white;
stroke-width:2.8;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}

.back-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 45px rgba(90,108,255,1);
}

.video-box{
width:100%;
aspect-ratio:16/9;
position:relative;
}

.video-box video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:contain;
border-radius:16px;
}

/* PRICE */

.price-block{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.price{
font-size:24px;
font-weight:600;
}

.description{
max-width:800px;
margin:0 auto;
text-align:center;
}

/* MOBILE */

@media(max-width:420px){
.logo{font-size:14px;}
.buy-header,.telegram-btn{
padding:6px 10px;
font-size:12px;
}
.back-btn{
width:55px;
height:55px;
}
.product-title{
font-size:22px;
}
}