html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: #000 url('/assets/images/bg.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    overflow-x: hidden;
    color: #ffffff;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: -1;
    opacity: 1 !important;
}

#container01 .wrapper>.inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 90vh !important;
    padding: 2rem 0 !important;
}

#text02 {
    font-family: 'Dela Gothic One', cursive !important;
    font-size: 4.5rem !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2rem !important;
    margin-top: 15vh !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8) !important;
}

#text14 {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.25rem !important;
    color: #ffffff !important;
    letter-spacing: 0.5rem !important;
    text-transform: uppercase !important;
    margin-bottom: auto !important;
}


.buttons-component {
    margin-top: 2rem !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
}

.buttons-component li {
    width: 100%;
    max-width: 250px;
    /* Reduced from 300px */
    margin-bottom: 0.75rem;
}

.buttons-component a {
    display: block !important;
    padding: 0.75rem 1rem !important;
    /* Reduced padding */
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    /* Subtler border */
    text-decoration: none !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 50px !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buttons-component a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px); 
}
.icons-component {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.icons-component svg {
    width: 35px;
    height: 35px;
    fill: #ffffff !important;
    margin: 10px;
}

@media (max-width: 736px) {
    #text02 {
        font-size: 1.6rem !important;
        /* Smallest version */
        letter-spacing: 0.1rem !important;
        margin-top: 12vh !important;
    }

    #text14 {
        font-size: 0.65rem !important;
        letter-spacing: 0.2rem !important;
    }

    #container01 .wrapper>.inner {
        min-height: 80vh !important;
        justify-content: center !important;
    }

    .buttons-component li {
        max-width: 180px !important;
    }

    .buttons-component a {
        padding: 0.4rem !important;
        font-size: 0.7rem !important;
    }
}