:root {
    --main-color: #252424;
    --extra-color: #73b147;
    --bg-color: #f1f2f4;
    --bg-color-sec: #a7a5a5;
    --bg-hover: #14171b;
    --box-shadow-color: rgba(0, 0, 0, 0.2);
    --border-one: #56585a;
    --border-two: #0e0e0e;
    --text-lower: #d1d1d1;
    --main-width:1200px;
  }

*, *:after, *:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


html, 
body {
    height: 100%;
    background:var(--bg-color);
    color:var(--main-color);
    padding: 0; 
    margin:0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}


/** LINKS **/
a {
    color:var(--main-color);
    text-decoration:none;
}

a:hover {
    color:var(--extra-color);
}

/** H **/


/** IMPORT ELEMENTS **/

/** HEADER **/
header {
    width:100%;
    display:flex;
    position:fixed;
    background:var(--bg-color);
    border-color:var(--bg-color);
    z-index:100;
    border-bottom: 0;
    transition: border-bottom 0.3s;
}
  
header.scroll {
    border-bottom: 0px solid var(--bg-color-sec);
    box-shadow: 0px 4px 10px var(--box-shadow-color);
    z-index:1000;
    background:#fff;
}

.logo {
    max-width:150px;
}

.logo img {
    max-width:100%;
    height:auto;
}

.menu-container {
    display:flex;
    flex-direction: row;
    max-width:var(--main-width);
    width:100%;
    margin:0 auto;
    align-items:center;
    justify-content: space-between;
}

.menu-container ul {
    display:flex;
    flex-direction: row;
}

.menu-container ul li {
    list-style:none;
    padding:10px 15px 10px 15px;
    text-transform: uppercase;
    font-weight:600;
}

/** HAMBURGER MENU **/
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    z-index: 9999;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 25px;
    background: #6b1d69;
    margin-bottom: 5px;
    transition: transform 0.3s, opacity 0.3s;
    position: relative;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: var(--bg-color);
    width:100%;
    padding: 10px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.menu ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}

.menu ul li {
    list-style:none;
}

.menu.all {
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.menu a {
    display: block;
    padding: 5px 0;
    color: var(--main-color);
    text-decoration: none;
}

.menu a:hover {
    color:var(--extra-color);
}

.socials {
    display:flex;
    flex-direction: row;
}

.socials ul {
    display:flex;
    flex-direction: row;
    padding-inline-start: 0px;
}

.play a {
    background:var(--extra-color);
    padding:15px 20px 15px 20px;
    border:0px;
    font-weight:bold;
    border-radius:6px;
    color:var(--bg-color);
}

/** SCHEME COMMON **/

#games img {
    height: auto;
    width:100%;
}

.flex {
    display:flex;
}

.column {
    flex-direction: column;
}
.sa {
    justify-content: space-around;
}

.sb {
    justify-content: space-between;
}

p {
    margin-top:0px;
    margin-bottom:10px;
}

/** SECTION COMMON **/
section {
    display:flex;
    padding-top:50px;
    padding-bottom:50px;
    width:100%;
    position:relative;
    background-image: linear-gradient(to right, rgb(75, 75, 75) 33%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 30px 1px;
    background-repeat: repeat-x;
}

section .container {
    display:flex;
    max-width:var(--main-width);
    width:100%;
    margin:0 auto;
}

.section-title h2 {
    font-size:3em;
    margin-block-start: 0em;
    margin-block-end: 0.5em;
}

.container-inner {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

.container-inner .container-l {
    flex-basis:60%;
}

.container-inner .container-r {
    flex-basis:40%;
}

/** game SECTION **/

.games .container-inner {
    flex-wrap:wrap;
}

.game-box {
    position: relative;
    display: flex;
    flex-direction:column;
    gap:40px;
}

.game-box .steam-embed {
    display: flex;
    justify-content: center;
}

.game-link {
    transition: transform 0.2s;
    display: flex;
    flex-direction:row;
    gap:20px;
}

.game-link:hover {
    color:#000 !important;
}

.game-link div:first-child {
    flex-basis:40%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.game-link div:last-child {
    flex-basis:60%;
    display:flex;
    flex-direction: column;
    justify-content:center;
}
  
.game-link:hover {
    transform: translateY(-10px);
}  

.game-box img {
    border-radius:6px;
}

.game-box .game-logo {
    border:2px dashed var(--border-one);
    border-radius:6px;
    padding:10px;
    display:flex;
    transition: all 0.3s ease;
    position:relative;
}

.game-box .game-logo:after {
    content:'';
    position:absolute;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    border-radius:6px;
}

.game-box:hover .game-logo {
    border-color: var(--extra-color);
    transition: all 0.3s ease;
}

.game-box .game-title {
    transition: all 0.3s ease;
}

.game-box:hover .game-title {
    color:var(--extra-color);
    transition: all 0.3s ease;
}


/** USER INFOS **/

.user-box {
    position: relative;
    transition: transform 0.2s;
    text-align:center;
}
  
.user-box:hover {
    transform: translateY(-10px);
}  

.user-box img {
    border-radius:6px;
}

.user-box .avatar {
    border:2px dashed var(--border-one);
    border-radius:6px;
    padding:10px;
    display:flex;
    transition: all 0.3s ease;
    position:relative;
    gap:10px;
}

.user-box .avatar:after {
    content:'';
}

.user-box:hover .avatar {
    border-color: var(--extra-color);
    transition: all 0.3s ease;
}

.user-box .user-title {
    text-align:left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.user-title h3 {
    margin-bottom:0px;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.user-title span {
    color:#73b147;
    font-weight:bold;
}

.user-title p {
    font-size:12px;
}

.user-box:hover .user-title {
    transition: all 0.3s ease;
}



/** STARTER SECTION **/

#starter {
    height:600px;
    position:relative;
    z-index:1;
}

#starter:after {
    content:'';
    background:url('../img/main_bg.webp');
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
    opacity:0.4;
}


#starter .welcome {
    align-self: center;
}

#starter .welcome-img {
    position:relative;
}

#starter .welcome h2 {
    margin-block-start: 0em;
    margin-block-end: 0.3em;
    font-size:2em;
}

#starter .welcome span:first-child {
    color:var(--extra-color);
}

#starter .welcome span:last-child {
    color: var(--text-lower);
}

/** onas **/

#onas {
    background:#6b1d69;
    color:#fff;
}

#onas .container-l {
    padding-right:20px;
}

#onas .container-inner {
    gap:30px;
}

#onas .container-r iframe {
    border-radius:12px;
}

#onas p {
    font-size:20px;
}

#onas .container-inner .container-l{
    display:flex;
    align-items:center;
}

#onas .server {
    display:flex;
    flex-direction: row;
    align-items: center;
    border: 2px dashed var(--border-one);
    border-radius:6px;
    margin-bottom:15px;
    justify-content: space-around;
    padding:10px;
    transition: all 0.3s ease;
}

#onas .server:after {
    content:'';
    position:absolute;
    border: 1px dashed var(--border-two);
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    border-radius:6px;
}

#onas .server:hover {
    border-color:var(--extra-color);
    transition: all 0.3s ease;
    background: var(--bg-hover);
}

#games .screenshots {
    display:flex;
    justify-content: space-around;
    flex-wrap:wrap;
    gap:1%;
}


#games .screenshots a {
    display:flex;
    flex-basis:30%;
    padding-bottom:1%;
    padding-top:1%;
}


.server {
    position: relative;
    transition: transform 0.2s;
}
  
.server:hover {
    transform: translateX(-10px);
    cursor: pointer;
}

#onas .server-logo {
    flex-basis:20%;
    text-align:center;
    display:flex;
    justify-content: center;
}

#onas .server-details {
    flex-basis:70%;
}

#onas .server h3 {
    margin-block-start: 0em;
    margin-block-end: 0em;
    color:var(--extra-color);
    position:relative;
}

#onas .promo {
    text-align:center;
}

.promo img {
    max-width:460px;
}

#onas .server p {
    margin-block-start: 0em;
    margin-block-end: 0em;
}


#founders {
    margin-top:-250px;
}

#founders .container-inner {
    flex-direction: row;
    justify-content:left;
    flex-wrap:wrap;
    gap:5%;
}

#founders .user-box {
    flex-basis:45%;
}

#founders .user-title {
    text-align:center;
}

#founders .avatar {
    display:flex;
    flex-direction:column;
    text-align:center;
    align-items:center;
}


#team {
}

#team .container-inner {
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: left;
    gap:5%;
}

#team .user-box {
    padding-bottom:30px;
    flex-basis:30%;
}


#twitch-embed {
    max-width:900px;
    width:100%;
    height:510px;
    border:2px solid var(--extra-color);
}

.streamer .section-title h2 {
    text-align:center;
}

.streamer .container-inner {
    justify-content: center;
}

.streamer iframe {
    width:100%;
    height:100%;
}



/** CREDITS **/
#workwithus .container {
    max-width:1000px;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    text-align: center;
    padding-top:30px;
    padding-bottom:30px;
    border-radius:12px;
}

.buttons-list {
    display:flex;
    flex-direction: row;
    gap:15px;
}

#workwithus .section-title h2 {
    color:var(--extra-color);
    margin-bottom:0px;
    text-transform:uppercase;
    font-size:30px;
}

#workwithus {
    background:unset;
}

.buttons-list a {
    background:var(--extra-color);
    padding:15px 20px 15px 20px;
    border:0px;
    font-weight:bold;
    border-radius:6px;
    font-size:14px;
    letter-spacing:1px;
    color:var(--bg-color);
    border:2px solid transparent;
    z-index:100;
}

.buttons-list a:hover {
    background:#fff;
    cursor: pointer;
    color:var(--main-color);
    border:2px solid var(--extra-color);
}


@keyframes pulsate {
    0% {
      transform: scale(0.5);
      opacity: 0.7;
    }
    50% {
      transform: scale(1);
      opacity: 1;
      border:6px solid var(--extra-color);
      background:#1d2127;
    }
    100% {
      transform: scale(0.5);
      opacity: 0.7;
    }
  }

.pulsating-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px solid var(--extra-color);
    position: absolute;
    animation: pulsate 5s infinite;
    top:30px;
    right:40px;
    z-index:10;
}

.welcome img {
    height:auto;
    width:100%;
}

.welcome-img img {
    z-index:20;
    position:relative;
}




/** BOX LIST LONG (HARMONOGRAM) **/

.box-list-long h3 {
    margin-top:0px;
    margin-bottom:0px;
}

.box-list-long .box-details p {
    margin-bottom: 0px;
    white-space: pre-line;
}

/** BOX LIST ITEM **/

.box-list-item {
    display:flex;
    flex-direction: row;
    align-items: center;
    border: 2px dashed var(--border-one);
    border-radius:6px;
    margin-bottom:15px;
    justify-content: space-around;
    padding:10px;
    padding-top:20px;
    padding-bottom:20px;
    transition: all 0.3s ease;
}

.box-list-item:after {
    content:'';
    position:absolute;
    border: 1px dashed var(--border-two);
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    border-radius:6px;
}

.box-list-item:hover {
    border-color:var(--extra-color);
    transition: all 0.3s ease;
    background: var(--bg-hover);
}

.box-list-item {
    position: relative;
    transition: transform 0.2s;
}
  
.box-list-item:hover {
    transform: translateX(-10px);
    cursor: pointer;
}

.box-img {
    flex-basis:10%;
    text-align:center;
    display:flex;
    justify-content: center;
}

.box-details {
    flex-basis:50%;
}

.box-extras {
    display:flex;
    justify-content: center;
    flex-basis:30%;
}

.box-details h2 {
    margin-block-start: 0em;
    margin-block-end: 0em;
    color:var(--extra-color);
    position:relative;
}

.box-details p {
    margin-bottom:0px;
}

.gfx-box-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100px;
    height:100px;
    border-radius:6px;
    border:2px solid var(--extra-color);
}

#onas .promo {
    text-align:center;
}

.promo img {
    max-width:460px;
}

#onas .server p {
    margin-block-start: 0em;
    margin-block-end: 0em;
}

/** OFFERS **/

.offer-container {
    display:flex;
    flex-direction: row;
    gap:20px;
}

.offer-item {
    display: flex;
    flex-direction: column;
    border: 2px dashed var(--border-one);
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    transition: transform 0.2s;
}
  
.offer-item:hover {
    transform: translateY(-10px);
    cursor: pointer;
    background: var(--bg-hover);
}

.offer-item .featured {
    position:absolute;
    top:-10px;
    right:-10px;
    background:var(--extra-color);
    padding-left:15px;
    padding-right:15px;
    padding-top:10px;
    padding-bottom:10px;
    border-radius:6px;
    color: var(--bg-color);
    font-weight: bold;
}

.offer-item hr {
    width:100%;
    border-color:var(--extra-color);
    border-style: solid;
}

.offer-item h2 {
    margin-top:0px;
}

.offer-item h2 b {
    color:var(--extra-color);
}


.offer-list ul li {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
}

.offer-list ul li:after {
    content: "\f058";
    color:var(--extra-color);
    position: absolute;
    left: -24px;
    font-family: "Font Awesome 6 Free";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.offer-price div:first-child span {
    font-size: 4em;
    font-weight: bold;
    line-height: 1em;
}

.offer-price div:first-child span:nth-child(2) {
    font-size: 2em;
    font-weight: bold;
    vertical-align: top;
    line-height: 1.2em;
}

.offer-elements {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

.offer-elements div:nth-child(2) {
    font-weight: bold;
}

/** COOKIE SETTINGS **/
.cookiealert {
    display:flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #1d2127;
    background: var(--bg-color);
    padding-top:13px;
    padding-bottom:13px;
    border-top:1px solid var(--border-two);
    gap:10px;
}

.cookiealert button {
    background:var(--extra-color);
    border:0px;
    color:var(--bg-color); 
    padding-left:10px;
    padding-top:3px;
    padding-bottom:3px;
    padding-right:10px;
    border-radius:6px;
    cursor: pointer;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

button {
    background:transparent;
    border:0px;    
}


/** FOOTER **/
footer {
    display:flex;
    flex-direction: column;
    background:#6b1d69;
    padding-bottom:20px;
    position:relative;
    margin-top:-100px;
    z-index:100;

}

.footer-menus {
    display:flex;
    flex-direction: row;
    max-width:var(--main-width);
    width:100%;
    margin:0 auto;
    padding-top:30px;
    padding-bottom:30px;
}

.copy {
    max-width:var(--main-width);
    width:100%;
    margin:0 auto;
    text-align:center;
    font-size:12px;
    padding-top:20px;
    color:#fff;
}

.fsvg {
    margin-top:-60px;
}

.fsvg svg {
    margin-bottom:-10px;
}

.copy a {
    color:#e0e0e0;
}

.copy div:first-child a {
    color:var(--extra-color);
}

.footer-logo img {
    max-width:150px;
    height:auto;
}

.footer-menus div:first-child {
    flex-basis:40%;
}

.footer-menus div:first-child div {
    max-width:360px;
    width:100%;
}

.footer-menus div:nth-child(2) {
    display:flex;
    flex-direction: row;
    flex-basis:60%;
}

.footer-menus div:nth-child(2) div {
    display:flex;
    flex-direction: column;
    flex-basis:33%;
}

.footer-menus div:nth-child(2) div ul { 
    padding-inline-start:0px;
}

.footer-menus div:nth-child(2) div ul li {
    list-style:none;
    padding-top:5px;
    padding-bottom:5px;
}

.footer-menus div:nth-child(2) div h2 {
    margin-bottom:0px;
    margin-top:0px;
    color:var(--extra-color);
}

/** PARTICLES **/
#particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
  
.particle {
    width: 4px;
    height: 4px;
    position: absolute;
    background-color: var(--extra-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/** FONTS **/
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  }
