.afacad-flux-normal {
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', sans-serif;
}


.main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.shapes-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.shape-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: auto;
    z-index: 2;
}

.shape-bottom-left img {
    width: 100%;
    height: auto;
    display: block;
}

.shape-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: auto;
    z-index: 2;
}

.shape-bottom-right img {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    gap: 2rem;
}

.logo-top {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.logo-top img {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.content h1 {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.home-button {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    background-clip: padding-box;
    display: inline-block;
    text-decoration: none;
}

.home-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg, #DAA520, #FFD27F, #FFEAAB);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.home-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #333;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .logo-top {
        top: 20px;
        left: 20px;
    }

    .logo-top img {
        width: 80px;
    }

    .home-button {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.3rem;
    }

    .logo-top {
        top: 15px;
        left: 15px;
    }

    .logo-top img {
        width: 60px;
    }

    .home-button {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}