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

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:#f5f7fb;

color:#222;

line-height:1.6;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

header{

background:#0f172a;

padding:15px 0;

text-align:center;

}

.sale{

display:inline-block;

background:#16a34a;

color:white;

padding:10px 24px;

border-radius:30px;

font-weight:700;

font-size:18px;

}

.hero{

padding:70px 0;

}

.hero .container{

display:flex;

align-items:center;

justify-content:space-between;

gap:50px;

flex-wrap:wrap;

}

.left{

flex:1;

min-width:320px;

}

.right{

flex:1;

text-align:center;

}

.right img{

width:100%;

max-width:470px;

border-radius:30px;

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

transition:.4s;

}

.right img:hover{

transform:scale(1.03);

}

h1{

font-size:52px;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

}

h1 span{

color:#2563eb;

}

.hero p{

font-size:20px;

color:#555;

margin-bottom:35px;

max-width:550px;

}

.price{

display:flex;

align-items:center;

gap:20px;

margin-bottom:35px;

}

.old{

font-size:28px;

text-decoration:line-through;

color:#999;

}

.new{

font-size:46px;

font-weight:800;

color:#16a34a;

}

.btn{

display:inline-block;

background:#16a34a;

color:#fff;

padding:18px 42px;

border-radius:16px;

font-size:20px;

font-weight:700;

text-decoration:none;

transition:.3s;

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

}

.btn:hover{

transform:translateY(-4px);

background:#15803d;

}
.features{

padding:80px 0;

}

.features h2,
.box h2,
.specs h2,
.reviews h2,
.cta h2{

text-align:center;

font-size:38px;

margin-bottom:45px;

}

.cards{

display:grid;

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

gap:25px;

}

.card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

margin-bottom:15px;

font-size:22px;

}

.box,
.specs,
.reviews,
.cta{

padding:80px 0;

}

.box ul,
.specs ul{

list-style:none;

max-width:700px;

margin:auto;

}

.box li,
.specs li{

background:#fff;

margin-bottom:18px;

padding:20px;

border-radius:15px;

font-size:20px;

box-shadow:0 5px 20px rgba(0,0,0,.07);

}

.review{

background:#fff;

padding:25px;

border-radius:20px;

margin-bottom:20px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.review strong{

display:block;

font-size:20px;

margin-bottom:10px;

}

.cta{

text-align:center;

background:#0f172a;

color:white;

}

.cta .btn{

margin-top:25px;

}

@media(max-width:900px){

.hero .container{

flex-direction:column-reverse;

text-align:center;

}

.hero p{

margin:auto auto 30px;

}

.price{

justify-content:center;

}

h1{

font-size:38px;

}

.new{

font-size:38px;

}

.hero{

padding:50px 0;

}

.features,
.box,
.specs,
.reviews,
.cta{

padding:60px 0;

}

}

.telegram-text{
    max-width:600px;
    margin:20px auto;
    font-size:18px;
    opacity:.9;
}

.cta{
    border-radius:30px;
    margin:30px;
}

.gallery {
    padding: 40px 20px;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


.timer {
    text-align: center;
    padding: 35px 20px;
    background: #f8f8f8;
    margin: 30px 0;
    border-radius: 15px;
}

#countdown {
    font-size: 32px;
    font-weight: bold;
    color: #e53935;
    margin-top: 10px;
}
.slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    min-width: 100%;
    border-radius: 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
}
