Загрузка данных


<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>CS2 Market</title>
<style>
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f1115;
    color: white;
}

/* Верхнее меню */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #1a1d23;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #f7c948;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
}

.nav a:hover {
    opacity: 1;
}

/* Контейнер */
.container {
    display: flex;
}

/* Фильтры */
.sidebar {
    width: 250px;
    background: #1a1d23;
    padding: 20px;
}

.filter {
    margin-bottom: 15px;
}

.filter h4 {
    margin: 5px 0;
}

/* Карточки */
.content {
    flex: 1;
    padding: 20px;
}

.title {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.card {
    background: #1f232b;
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.card h3 {
    font-size: 14px;
    margin: 10px 0 5px;
}

.price {
    color: #f7c948;
}
</style>
</head>

<body>

<div class="header">
    <div class="logo">avanmarket</div>
    <div class="nav">
        <a href="#">SELL</a>
        <a href="#">MARKET</a>
        <a href="#">AFFILIATE</a>
    </div>
    <button style="background:#f7c948;border:none;padding:8px 15px;border-radius:5px;">
        Login via Steam
    </button>
</div>

<div class="container">

    <div class="sidebar">
        <div class="filter">
            <h4>Price</h4>
            <input type="range">
        </div>
        <div class="filter">
            <h4>Quality</h4>
        </div>
        <div class="filter">
            <h4>Float</h4>
        </div>
        <div class="filter">
            <h4>Rarity</h4>
        </div>
    </div>

    <div class="content">
        <div class="title">Buy CS2 skins</div>

        <div class="grid">

            <div class="card">
                <img src="https://via.placeholder.com/200x120">
                <h3>AWP Dragon Lore</h3>
                <div class="price">$13,428</div>
            </div>

            <div class="card">
                <img src="https://via.placeholder.com/200x120">
                <h3>AK-47 Wild Lotus</h3>
                <div class="price">$12,403</div>
            </div>

            <div class="card">
                <img src="https://via.placeholder.com/200x120">
                <h3>M4A4 Howl</h3>
                <div class="price">$15,674</div>
            </div>

        </div>
    </div>

</div>

</body>
</html>