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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #181818, #121212);
    color: #eaeaea;
    line-height: 1.6;
    overflow-x: hidden;
    margin-bottom: 50px;
}

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

header {
    background: #212121;
    padding: 30px 0;
    position: relative;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.5);
}

header .logo h1 {
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff4e50;
    transform: scale(1.05);
}

main {
    padding: 60px 0;
}

.section {
    margin-bottom: 80px;
    text-align: center;
}

.section h2 {
    font-size: 45px;
    color: #eaeaea;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff4e50;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.uniqueness-level {
    font-size: 18px;
    font-weight: 600;
    color: #ff4e50;
    margin-bottom: 30px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    width: 300px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px) rotateY(8deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.product-card .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-info {
    padding: 25px;
    text-align: center;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.price {
    font-size: 22px;
    color: #ff4e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.media {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
}

.buy-button {
    background: linear-gradient(45deg, #ff4e50, #ff726f);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 79, 80, 0.3);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(45deg, #ff726f, #ff4e50);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 79, 80, 0.4);
}

.buy-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(255, 79, 80, 0.2);
}

footer {
    background: #212121;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}
