body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero {
    display: flex;
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 5rem;
    text-align: center;
}

.title {
    font-family: "Montserrat";
    width: 100%;
}

.title h1 {
    color: #FFF;
    font-weight: 100;
    font-size: 5rem;
    margin: 0;
    line-height: 5rem;
    text-shadow: 0 0 10px #ff006c, 0 0 20px #ff006c, 0 0 30px #ff006c, 0 0 40px #ff417d, 0 0 70px #ff417d, 0 0 80px #ff417d, 0 0 100px #ff417d, 0 0 150px #ff417d;
}

.title h3 {
    font-weight: 200;
    font-size: 20px;
    margin: 0;
    line-height: 2rem;
    color: #FFF;
    letter-spacing: 2px;
}

.floating-nav {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: #333;
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

.nav-button {
    background-color: #555;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #777;
}

.nav-right {
    display: flex;
    align-items: center;
}

.translate-button {
    background-color: #555;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.translate-button svg {
    width: 1.5rem;
}

.translate-button:hover {
    background-color: #777;
}