* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
    color: white;
    scrollbar-width: thin;
    scrollbar-color: #6800ad rgba(0, 0, 0);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader video {
    max-width: 180px;
    width: 80%;
    height: auto;
    mix-blend-mode: screen;
}
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
body.loading-active {
    overflow: hidden;
}
::-webkit-scrollbar-thumb {
    width: 1%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 25%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    left: -500px;
    animation: rgb-cycle 5s linear infinite;
}
@keyframes rgb-cycle {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid #111;
}
header {
    display: flex;
    padding-left: 15px;
    align-items: center;
    justify-content: flex-start;
}

.logo-link img {
    height: 60px;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    color: #6800ad;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
}
nav ul li a:hover {
    color: #a846ff;
    transform: scale(1.1);
    text-shadow: 0 0 10px #a846ff, 0 0 20px #6800ad;
}
ul#nav-menu {
    padding-right: 25px;
}

.hamburger {
    display: none;
    width: 59px;
    height: 33px;
    padding-right: 50px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}
.hamburger div {
    background-color: #6800ad;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
    transform: scale(1.1);
}
.hamburger:active {
    transform: scale(1.0);
}
.hamburger:hover div {
    background-color: #3f0068;
    border-radius: 2px;
}
.shp1 {
    width: 15px; height: 26px; left: 0; top: 0; }
.shp2 {
    width: 15px; height: 8px; left: 18px; top: 3px; }
.shp3 {
    width: 22px; height: 8px; right: 1px; top: 6px; }
.shp4 {
    width: 35px; height: 12px; right: 6px; bottom: 3px; }
.hamburger.active .shp1 {
    width: 27px; height: 14px; top: 0; left: 0; }
.hamburger.active .shp2 {
    width: 15px; left: 30px; top: 3px; }
.hamburger.active .shp3 {
    width: 11px; height: 22px; right: 0; top: 6px; }
.hamburger.active .shp4 {
    width: 40px; height: 12px; right: 14px; bottom: 3px; }

main {
    background-color: #6800ad;
    margin-top: 80px;
    min-height: auto;
    position: relative;
    flex: 1;
}
.main-section {
    height: auto;
    padding-block: 40px;
    padding-inline: 25px;
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    gap: 15px;
}

.title {
    display: inline-block;
    width: auto;
    position: relative;
}
.main-title {
    height: auto;
    width: auto;
    padding-block: 30px;
    padding-inline: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: black;
    border-radius: 8px;
    transition: all 0.5s ease;
}
.title:hover .main-title {
    transform: scale(1.03);
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px #3f0068;
}

h1 {
     font-size: 36px; font-weight: 250; }
p {
    font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.5; }
.author-title {
    position: absolute; right: 15px; bottom: 10px; }
.info {
    font-size: 22px;
}
.order_button {
    display: inline-block;
    padding: 7px 43px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 37px;
    background-color: #640092;
    font-size: 27px;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
}
.order_button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #3f0068;
}
.order_button:active {
    transform: scale(0.9);
}
footer {
    background-color: #000;
    height: 110px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    z-index: 100;
}
footer div { color: #6800ad; }
.footer-center { text-align: center; }
.footer-right { text-align: right; line-height: 1.4; }
.footer-right a { color: inherit; text-decoration: none; display: block; transition: all 0.3s ease; }
.footer-right a:hover { 
    color: #a846ff; 
    transform: scale(1.05);
    text-shadow: 0 0 10px #a846ff, 0 0 20px #6800ad;
}

@media (max-width: 768px) {
.navbar-container {
    padding: 0;
    border-bottom: none;
    display: block;
}

header {
    width: 100%;
    height: 80px;
    padding-left: 15px;
    padding-right: 25px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    border-bottom: 1px solid #111;
}

ul#nav-menu { padding-right: 0; }
.hamburger { display: flex;}

nav ul {
    position: fixed;
    top: -100%; 
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);        
    flex-direction: column;
    align-items: center;
    padding: 110px 0 50px 0; 
    gap: 30px;
    transition: 0.5s ease-in-out;
    z-index: 100;
    border-bottom: 1px solid #111;
    pointer-events: none;
    opacity: 0;
}

nav ul.active {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}
}