* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .4s;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px; 
    padding-top: 2rem;
}

.logo {
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.logo-text {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.logo-text .highlight {
    color: #ff3333;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
}

footer .highlight {
    color: #ff3333;
    font-weight: 700;
}

.home-container {
    width: 80%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    width: 100%;
}

.home-button {
    background: linear-gradient(135deg, #ff3333, #990000);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.home-button:hover::before {
    opacity: 1;
}

.home-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff6666, #cc0000);
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .home-button, .go-back-button {
        font-size: 1.2rem;
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 0.5rem;
    border-radius: 0.5rem;
    background-color: #fff;
}

::-webkit-scrollbar-track {
    border-radius: 1.5rem;
}

::-webkit-scrollbar-thumb {
    background-color: #990000;
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #fff700;
}

.neonText {
    color: #ffbebe;
    text-shadow:
        0 0 2px #ff3333,
        0 0 7px #ff3333,
        0 0 15px #ff3333,
        0 0 26px #ff3333,
        0 0 36px #ff3333,
        0 0 47px #ff3333,
        0 0 68px #ff3333,
        0 0 70px #ff3333;
}

.neonShadow {
    box-shadow:
        0 0 2px #ff333346,
        0 0 7px #ff333346,
        0 0 15px #ff333346,
        0 0 26px #ff333346,
        0 0 36px #ff333346,
        0 0 47px #ff333346,
        0 0 68px #ff333346,
        0 0 70px #ff333346;
}