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

header {
    background: #0e0d0d00;
    color: white;
    padding: 5px;
    text-align: left;
    font-size: 20px;
    margin-bottom: 0px;
    height: 100px;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: auto;


}

body,
html {
    width: 100%;
    height: 100%;
}

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

.video-container a {
    text-decoration: none;
    color: inherit;
}

.video-container h1 {

    border-radius: 10px;
    padding: 10px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80vh;
}

.left-section,
.right-section {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Fixed Divider */
.divider {
    width: 4px;
    height: 0;
    background-color: white;
    position: relative;
    animation: growDivider 1s ease-in-out forwards;
    align-self: center;
    border-radius: 10px;
}

@keyframes growDivider {
    from {
        height: 0;
    }

    to {
        height: 40%;
    }
}

/* Pop-up Comment */
.heading-container {
    position: relative;
    display: inline-block;
}

.popup-comment {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
    pointer-events: none;
}

.heading-container:hover .popup-comment {
    opacity: 1;
    top: 130%;
}

/*********************/

.footer-container {

    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;

    padding-top: 15px;
    width: 80%;
    justify-self: center;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;

    width: 30px;
    height: 30px;
}

.icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
}

.label {
    font-weight: bold;
    color: #ff33cc;
}

.info {
    color: white;
    font-weight: bold;
}

.info a {
    text-decoration: none;
    color: #ffcc00;
}

.info a:hover {
    text-decoration: underline;
    color: #ff6699;
}

.footer-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*******************************/
@keyframes bobbing {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.animated-heading {
    display: inline-block;
    animation: bobbing 1.5s infinite ease-in-out;
}

/************************************/

.btn {
    font-size: 30px;
    background: transparent;
    border: none;
    padding: 1em 1.5em;
    color: #faf9f8;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ffc506;
    transition: 0.5s ease;
}

.btn:hover {
    color: #1e1e2b;
    transition-delay: 0.5s;
}

.btn:hover::before {
    width: 100%;
}

.btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #ffc506;
    transition: 0.4s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
    transition-delay: 0.4s;
    color: aliceblue;
}

/**************/
.icon-stack {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.308);
    border-radius: 10px;
}

.left-edge {
    left: 10px;
}

.right-edge {
    right: 10px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    
}

.icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.icon-divider {
    height: 2px;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.glass {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 10px;
}