
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins, Arial, Helvetica, sans-serif;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background: darkcyan;
color: white;
position: relative;
height: 80px;
}

.nav-logo {
height: auto;
width: 200px;
cursor: pointer;
padding: 5px ;
}

.nav-links {
display: flex;
gap: 20px;
align-items: center;
}

.nav-links a {
color: white;
text-decoration: none;
}

.nav-right {
display: flex;
align-items: flex-end;
}

/* HAMBURGER */
.menu-icon {
display: none;
font-size: 26px;
cursor: pointer;
}

/* HIDDEN CHECKBOX */
#menu-toggle {
display: none;
}


/* ============================================ */
.whole-body {
    background-color: #141414;
}

.nav-links-buttons a {
color: #fff;
font-size: 16px;
padding: 10px 16px;
font-weight: 600;
/* border-radius: 8px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.2); */
transition: all 0.3s ease;
}

.nav-links-buttons a:hover {
color: #ffbb00;
transform: translateY(-2px);
}


.nav-support {
text-decoration: none;
color: #000;
font-size: 15px;
font-weight: bold;
padding: 12px 22px;
border-radius: 10px;
background: linear-gradient(180deg, #ffae00e5, #ff7b00);
transition: all 0.8s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.nav-support:hover {
padding: 14px 24px;
}

/* ============================================ */
.main-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.video-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.h1-assethunts-store {
    font-size: 35px;
    font-weight: 800;
    padding: 25px;
}

/* .nav-links2 {
    display: flex;
    justify-content: space-evenly;
}

.nav-links-buttons2 a {
color: #fff;
font-size: 20px;
text-decoration: none;
padding: 100px 50px;
border-radius: 12px;
background: darkcyan;
border: 2px solid darkcyan;
transition: all 0.3s ease;
}

.nav-links-buttons2 a:hover {
background: rgb(255, 166, 0);
color: #000;
transform: translateY(-2px);
} */

.a-store-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0px 50px 0px;
    gap: 30px;
    color: aliceblue;
}

.a-store-icons-individual {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    height: 300px;
    width: 300px;
    padding: 50px;
    border: 4px solid darkcyan;
    border-radius: 20px;
    background-color: darkcyan;
}

.a-store-icons-individual:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    border: 4px solid darkcyan;
    border-radius: 20px;
    background-color: rgb(245, 201, 3);
}

.a-store-icons-individual-icon {
    display: flex;
}

.a-store-icons {

}

#unity-padding {
    height: auto;
    width: 180px;
    margin: 20px;
}

#fab-padding {
    height: auto;
    width: 150px;
    padding-bottom: 10px;
    margin: 10px;
}

#itch-padding {
    height: auto;
    width: 180px;
    padding-top: 20px;
    margin: 10px;
}

#patreon-padding {
    height: auto;
    width: 200px;
    padding-top: 20px;
    margin: 10px;
}

.a-store-icons-individual-one-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    color: darkcyan;
    padding: 10px 20px 10px 20px;
    border-radius: 25px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.a-store-icons-individual-one-button a:hover {
    color: #ffffff;
    background: darkcyan;
}
/* ========================================= */








.menu-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}















/* =============MOBILE STYLES============= */
@media (max-width: 768px) {
.menu-icon {
display: block;
}

.nav-links {
position: absolute;
top: 60px;
left: 0;
width: 100%;
background: #444;
flex-direction: column;
align-items: center;
/* animation setup */
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}

.nav-links a {
padding: 15px;
width: 100%;
text-align: center;
border-top: 1px solid #555;
}

/* WHEN CHECKED → OPEN MENU */
#menu-toggle:checked + .menu-icon + .nav-links {
max-height: 400px; /* enough to show all links */
justify-content: center;
}

.nav-buttons a {
color: #fff;
font-size: 12px;
padding: 0px,
border-radius: 0px;
background: rgba(255, 255, 255, 0.08);
border: 5px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}

.nav-buttons a:hover {
background: rgba(255, 255, 255, 0.9);
color: #000;
transform: translateY(-2px);
}

.nav-support {
text-decoration: none;
color: #000;
font-size: 15px;
font-weight: bold;
padding: 12px 22px;
background: linear-gradient(180deg, #ffae00e5, #ffc400);
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.nav-support:hover {
    border: 5px solid rgba(255, 255, 255, 0.2);
}
}
