body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #d7d7d7;
    background-color: #010214;
    min-height: 100vh;
    overflow-x: hidden;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: blur(40px);
    pointer-events: none;
}

#lightning-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(10px);
    pointer-events: none;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

nav a{
    border: 3px solid #070b97;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 15px #030764;
    transition: all 0.3s ease;
    height: 80px;
}

nav a:hover {
    border-color: #d7d7d7;
    box-shadow: 0 0 15px #d7d7d7;
}

nav ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    opacity: 0.80;
}


nav ul li a{
    padding: 12px 18px;
    border: 3px solid #070b97;
    background-color: #030764;
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 15px #030764;
    transition: all 0.5s ease;
}

nav ul li a:hover {
    background-color: #070b97;
    border-color: #d7d7d7;
    box-shadow: 0 0 8px #d7d7d7;
}

nav ul li a svg {
    vertical-align: text-bottom;
    margin-right: 8px;
}

nav img {
    height: 80px;
}

.Main-controls {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.User-controls {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.product-section {
    margin: 60vh 20px 80px;
    text-align: center;
    opacity: 0.9;
}

.product-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header-desc {
    font-size: 20px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.product-section hr {
    width: 36vw;
    border: 1px solid #070b97;
    margin: 0 auto 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin: 0 7%;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.product {
    background-color: #02032e;
    border: 2px solid #070b97;
    border-radius: 15px;
    box-shadow: 0 0 25px #030764;
    padding: 20px 20px 40px;
    margin: 15px 20px 10px;
    transition: all 0.3s ease;
}

.product:hover {
    box-shadow: 0 0 10px #d7d7d7;
    border-color: #d7d7d7;
    transform: translateY(-10px);
}

.product img {
    margin: 0px 80px;
    border-radius: 10px;
}

.product p {
    font-size: 18px;
    margin: 20px 0 40px;
}

.view-button {
    text-decoration: none;
    color: #d7d7d7;
    border: 3px solid #070b97;
    padding: 12px 18px;
    border-radius: 20px;
    background-color: #030764;
    box-shadow: 0 0 15px #030764;
    transition: all 0.5s ease;
}

.view-button:hover {
    background-color: #070b97;
    border-color: #d7d7d7;
    box-shadow: 0 0 8px #d7d7d7;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

form{
    background-color: #02032e;
    border: 2px solid #070b97;
    border-radius: 15px;
    box-shadow: 0 0 25px #030764;
    padding: 20px 20px 40px;
    margin: 60px auto;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 40%;
    padding: 10px;
    margin: 10px 0 10px;
    border: 2px solid #070b97;
    border-radius: 10px;
    background-color: #010214;
    color: #d7d7d7;
    font-size: 18px;
    box-shadow: 0 0 10px #030764;
    transition: all 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus {
    border-color: #d7d7d7;
    box-shadow: 0 0 10px #d7d7d7;
    outline: none;
}

form button {
    border: 3px solid #070b97;
    background-color: #030764;
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 0 15px #030764;
    padding: 12px 18px;
    opacity: 0.80;
    transition: all 0.5s ease;
    cursor: pointer;
    margin-top: 20px;
}

form button:hover {
    border-color: #d7d7d7;
    box-shadow: 0 0 10px #d7d7d7;
}

footer{
    text-align: center;
    padding: 20px;
    background-color: #010214;
    border-top: 1px solid #070b97;
    color: #a0a0a0;
    font-size: 16px;
}

footer hr {
    border: 1px solid #070b97;
    margin: -10px auto 20px;
    width: 10vw;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 10px 0 0 0;
}

footer ul li a {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 16px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer ul li a:hover {
    color: #d7d7d7;
    text-shadow: 0 0 5px #d7d7d7;
}