@font-face {
    font-family: 'MINIMAL';
    src: url('../../abysscoregames/font/MINIMAL.OTF') format('opentype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'MINIMAL', Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'MINIMAL', Arial, Helvetica, sans-serif;
    color: #ffffff;
    min-height: 100vh;
}

.container {
    height: 100%;
    margin: 0 auto;
    padding: 0 0.4rem;
}

/* Fixed header */
.header {
    position: fixed;
    top: 0.1rem;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 15.53rem;
    height: 1rem;
    margin: 0 auto;
    padding: 0.25rem 0;
    background: url('../imgs/heaer-bg.png') center center / cover no-repeat;
}

.home-woeve{
    /* height: 22.29rem; */
    /* background: url('../imgs/home-woeve.png') center center / cover no-repeat; */
}
.home-games{
    height: 34.93rem;
    /* background: url('../imgs/home-games.png') center center / cover no-repeat; */
}
.home-download{
    position:absolute;
    top: 9rem;
    left: 2.5rem;
    right: 0;
    margin: 0 auto;
    display: flex;
  
    gap: 0.14rem;
}
.home-download img{
    width: 3.65rem;
    height: 1.09rem;
    object-fit: contain;
}
.site-footer{
    width: 100%;
    position: absolute;
    bottom: 0;
  background-size: contain;
    background: url('../imgs/footer-bg.png') center bottom / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-content{ 
    width: 100%;

    padding: 4.2rem 0.4rem 0 ;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-auto-rows: auto;
    row-gap: 0.6rem;

}
.footer-address{
    display: flex;

    align-items: flex-start;
    justify-content: flex-start;
}
.footer-info-container{
    width: 100%;

    padding: 0 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-info{ 
    color:#ffffff; 
    font-size: 0.38rem; 
    line-height: 1.3; 
    max-width: 11rem; 
    grid-column: 1 / 2;
}
.download-buttons{ 
    display: flex; 
    gap: 0.60rem; 
    justify-content: center; 
    align-items: center; 
    margin: 0.6rem 0 0.2rem; 
    grid-column: 1 / 3; /* span full width on top row */
}
.store-btn img{ 
    height: 1.09rem; 
    width: auto; 
}
.footer-legal-links{ 
    display: flex; 
    gap: 0.80rem; 
    justify-content: flex-end; 
    align-items: flex-end;
    grid-column: 2 / 3;
}
.footer-legal-links a{ 
    color: #ffffff; 
    text-decoration: underline; 
    font-size: 0.38rem;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand { height: 0.46rem; display: flex; align-items: center; }
.logo { height: 0.40rem; width: auto; object-fit: contain; }

.nav-menu { height: 100%; flex: 1; display: flex; justify-content: center; align-items: center; }
.nav-list { display: flex; list-style: none; gap: 0.60rem; align-items: center; height: 100%; }
.nav-item { height: 100%; display: flex; align-items: center; }


.nav-link {
    color: #d7e9ff;
    font-size: 0.36rem;
    line-height: 1;
    position: relative;
    transition: color 0.2s ease, transform 0.15s ease;
    padding: 0.18rem 0.46rem; 
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    border-radius: 0.30rem; 
}

.nav-link:hover { color: #ffffff; text-decoration: underline; }


.nav-link.active {
    color: #ffffff;
    text-decoration: none;
    /* width: 221px;
    height: 54px; */
    height: 0.54rem;
    background: url('../imgs/tag-active.png') no-repeat center center / cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}


.nav-link::after { content: none; }


.nav-legal { display: flex; gap: 0.40rem; align-items: center; height: 100%; }
.legal-link { color: #d7e9ff; font-size: 0.32rem; padding: 0.05rem 0.10rem; text-decoration: underline; }
.legal-link:hover { color: #ffffff; }


.main-content {
height: 87.46rem;
    background: url('../imgs/home-bg.png') no-repeat center center;
    background-size: contain;
}
