/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Comic Neue', 'Noto Sans', sans-serif;
    height: 100%;
    background: #0f0f0f;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: max-content;
    min-height: 100vh;
    position: relative;
    background: url('https://www.cyberpowerpc.com/blog/w/wp-content/uploads/2021/09/genshin-impact-raiden-shogun.jpg') no-repeat center center/cover;
    background-size: cover;
    width: 100%;
}

/* Overlay Section */
.overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background for better contrast */
    height: max-content;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Text Styles */
.glow {
    font-size: 4rem;
    color: rgb(111, 0, 255); /* Purple glow text */
    text-shadow: 0 0 10px rgb(111, 0, 255), 0 0 20px rgb(111, 0, 255), 0 0 30px rgb(111, 0, 255);
    margin: 0.2em;
}

.subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #fff;
    text-shadow: 0 0 5px rgb(111, 0, 255);
}

.cta {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgb(111, 0, 255); /* Bright purple background */
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
}

/* CTA Button Hover Effect */
.cta:hover {
    background: rgb(85, 0, 200); /* Slightly darker purple on hover */
    transform: scale(1.1);
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.6); /* Darker background for navbar */
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px); /* Blurred background effect */
}

/* Navbar Link Styling */
.navbar a {
    text-decoration: none;
    color: rgb(111, 0, 255); /* Purple links */
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}

/* Navbar Link Hover Effect */
.navbar a:hover {
    color: #fff; /* White on hover */
    transform: scale(1.1);
}

/* Remove default text decoration for all links */
a {
    text-decoration: none;
}
