html, body { margin: 0; padding: 0; background-image: url(../images/cwJ65nCMLngT.jpg); background-size: cover; background-position: center; background-repeat: no-repeat; min-height: 100vh; overflow: hidden; font-family: Arial, Helvetica, sans-serif; } /** DESKTOP **/ a { text-decoration: none; } .desktop { display: flex; flex-direction: column; width: 4%; height: 700px; justify-content: space-evenly; align-items: center; } .desktop-ico { width: 60px; height: 80px; color: white; font-size: 12px; text-align: center; display: flex; flex-direction: column; justify-content: space-around; align-items: center; margin: 0px; } .desktop-ico img { width: 45px; height: 45px; transition: transform 0.3s ease, opacity 0.3s ease; } .desktop-ico:hover img { transform: scale(1.1); opacity: 0.8; } /** MENU TASKBAR **/ ul { list-style: none; padding: 0; } .container-menu { width: 250px; height: 450px; background-color: #C6C6C6; border: 1.5px outset white; display: flex; position: absolute; bottom: 30px; z-index: 100; display: none; } .bar-menu { width: 15%; height: 100%; background-color: rgb(7, 7, 139); } .menu { width: 95%; height: 95%; font-size: 6px; display: flex; flex-direction: column; align-items: flex-start; margin: 0; } .menu hr { margin: 0; padding: 0; width: 95%; margin-left: 2px; } .menu li { width: 90%; display: flex; align-items: center; justify-content: space-between; margin-left: 3px; padding: 7px; } .space-ico { display: flex; align-items: center; justify-content: flex-start; } .menu li:hover { color: white; background-color: rgb(7, 7, 139); } li span { margin-left: 10px; font-size: 15px; } .ico-menu { width: 30px; height: 30px; } .sort-right { width: 10px; height: 10px; } /** FOOTER, BUTTON TASKBAR, NOTIFICATION AREA **/ footer { background-color: #C6C6C6; height: 30px; width: 100%; display: flex; justify-content: space-between; align-items: center; border: 1px solid white; bottom: 0; position: fixed; padding: 0; margin: 0; } .border-none { width: 95%; height: 23px; display: flex; justify-content: center; align-items: center; } .border-dotted { width: 95%; height: 23px; display: flex; justify-content: center; align-items: center; border: 1px dotted #000000; } .start { background-color: #C6C6C6; width: 180px; height: 28px; font-size: 10px; margin: 1px; display: flex; align-items: center; justify-content: space-evenly; padding: 0; border: 1.5px outset white; font-weight: 600; } .start-toggle { background-color: #C6C6C6; width: 60px; height: 28px; font-size: 12px; margin: 1px; display: flex; align-items: center; justify-content: space-evenly; padding: 0; border: 1.5px inset white; font-weight: 600; } .ico-win { width: 16px; height: 16px; } .notification-area { background-color: #C6C6C6; width: 90px; height: 25px; display: flex; align-items: center; justify-content: space-around; font-size: 12px; font-weight: normal; padding-right: 2px; border: 1.5px inset white; margin-right: 3px; } /** QUERY **/ @media screen and (max-width: 1700px) { .desktop { width: 6%; height: 700px; } .desktop-ico { font-size: 12px; } } @media screen and (max-width: 1200px) { .desktop { width: 5%; height: 650px; margin-left: 22px; } } @media screen and (max-width: 700px) { .desktop { height: 600px; margin-left: 22px; } .desktop-ico { font-size: 8px; } .desktop-ico img { width: 40px; height: 40px; } .container-menu { width: 220px; height: 435px; } .menu li { padding: 6px; } li span { font-size: 12px; } .ico-menu { width: 30px; height: 30px; } } @media screen and (max-width: 330px) { .desktop { height: 500px; margin-left: 22px; } .desktop-ico { font-size: 8px; } .desktop-ico img { width: 35px; height: 35px; } .container-menu { width: 160px; height: 290px; } .menu li { padding: 4px; } li span { font-size: 6px; } .ico-menu { width: 20px; height: 20px; } } .centered-dialog { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 200; width: 380px; height: 200px; border: 1px solid #A9A9A9; border-radius: 5px; background: linear-gradient(to bottom, #E7ECEF, #FFFFFF); box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); font-family: Arial, sans-serif; } .dialog-header { height: 30px; background: linear-gradient(to bottom, #D4E4EC, #E7ECEF); border-bottom: 1px solid #A9A9A9; border-top-left-radius: 5px; border-top-right-radius: 5px; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: #333; cursor: move; } .close-button { width: 20px; height: 20px; background-color: #F46D6D; border: 1px solid #D4D4D4; border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-right: 5px; } .close-button:hover { background-color: #E04848; } .dialog-content { height: calc(100% - 30px); padding: 10px; font-size: 14px; color: #333; } .dialog-window { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 380px; background-color: #C0C0C0; border: 2px solid #00008B; padding: 10px; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); z-index: 200; cursor: move; } @media (max-width: 600px) { .dialog-window { width: 95%; max-width: none; } } .title-bar { background-color: #00008B; color: white; padding: 5px; display: flex; justify-content: space-between; align-items: center; font-weight: bold; font-size: 14px; cursor: move; } .close-button { width: 20px; height: 20px; background-color: #F46D6D; border: 1px solid #D4D4D4; border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-right: 5px; } .close-button:hover { background-color: #E04848; } .content { background-color: #E0E0E0; padding: 10px; margin-top: 10px; position: relative; } .tabs { margin-bottom: 10px; } .tabs button { background-color: #E0E0E0; border: 2px solid #00008B; padding: 2px 10px; font-size: 14px; font-weight: bold; margin-right: 5px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease; } .tabs button:hover { background-color: #00008B; color: #FFFFFF; border-color: #E0E0E0; } .content-section { display: none; } .content-section.active { display: block; } .checkbox { margin-top: 10px; } .checkbox input { margin-right: 5px; } .buy-button { position: absolute; bottom: 10px; right: 10px; background-color: #E0E0E0; border: 2px solid #00008B; padding: 5px 10px; font-weight: bold; cursor: pointer; display: flex; align-items: center; } .buy-button img { margin-right: 5px; } /* Preloader styling */ #preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; display: flex; justify-content: center; align-items: center; z-index: 9999; overflow: hidden; } #preloader-video { width: 100%; height: 100%; object-fit: cover; } #preloader-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); } .links-icons { display: flex; justify-content: left; gap: 10px; flex-wrap: wrap; margin-top: 10px; } .icon-link img { width: 40px; height: auto; display: block; transition: opacity 0.3s; } .icon-link:hover img { opacity: 0.7;x }