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

body {
    background: linear-gradient(#111,#222);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(1, 60, 30);
    position: absolute;
    z-index: -1;
    clip-path: circle(40% at right 70%);
}


.container {
    background-color: rgba(0, 0, 0, 0.6);  
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 50px;
    backdrop-filter: blur(8px);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: auto;
    padding: 25px 0;
}

nav .logo {
    color: white;
    text-decoration: none;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
}

nav ul {
    list-style: none;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00ff88;
}


.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 85%;
    margin: 50px auto 0 auto;
}


.content .shoes {
    flex: 1 1 300px;
    height: 260px;
    background: linear-gradient(135deg, #00ff88, #00994d);
    border-radius: 20px;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .shoes:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}


.content .shoes img {
    width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: 0.4s;
}

.content .shoes:hover img {
    transform: scale(1.1) rotate(-5deg);
}



@media (max-width: 950px) {

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .content {
        width: 95%;
    }

    body::after {
        clip-path: circle(60% at bottom);
    }
}