header {
    background-color: #333;
    display: flex;
    flex-direction: row;
    padding: 1rem;
}

.hat-section {
    width: 12dvw;
    display: flex;
    justify-content: center;
}

.hat {
    width: 10dvw;
    max-width: 80px;
    cursor: pointer;
}

.icon-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    width: 76dvw;
}

.icon-container {
    text-align: center;
    position: relative;
}

.icon {
    width: 10dvw;
    max-width: 75px;
    cursor: pointer;
    border-radius: 25%;
    transition: opacity 0.3s ease;
}

.icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

.icon:hover {
    opacity: 1;
}

.icon-text {
    opacity: 0;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.2); 
    color: rgb(255, 255, 255);
    font-size: 1.6em;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-container:hover .icon-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.play-section {
    width: 12dvw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play {
    width: 12dvw;
    max-width: 160px;
    cursor: pointer;
}

body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    /* background-color: yellow; */
    /* all browser no selection */
    user-select:  none;
    -webkit-user-drag: none;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 

}

/* * {
  outline: 1px solid red;
} */

.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.witch {
    position: relative;
    top: -16dvh;
    height: 90dvh;
    z-index: -1;
}

.tagline {
    position: absolute;
    top: 64%;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: red;
}

.numeral {
    position: absolute;
    overflow: hidden;
    font-size: 2rem;
    color: limegreen;
    opacity: 1;
    animation: fadeOut 4s ease forwards; 
}

.footer-container {
    display: flex;
    flex-direction: column;
    min-height: 10dvh;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.social {
    justify-content: center;
    display: flex;
    height: 5dvh;
    width: 100dvw;
    min-height: 20px;
}

.social-container {
    display: flex;
    /* gap: 80px; */
    gap: 10dvw;
    width: fit-content;
}

.social-item img {
    height: 4dvh;
    padding-bottom: 12%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* #social1 { padding-top: 4px;} */
/* #social2 { width: 3.25dvw; padding-bottom: 12%; } */
/* #social3 { width: 2.5dvw; padding-top: 12%;  } */
/* #social4 { padding-top: 4px;} */

.social-item img:hover {
    transform: scale(1.2);
}

.carousel {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-container {
    display: flex;
    gap: 200px;
    width: fit-content;
    animation: scrollCarousel 60s linear infinite;
}

.carousel-item img {
    padding-top: 4px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#icon1 { width: 5dvh;}
#icon2 { width: 8dvh; padding-top: 2.5dvh;}
#icon3 { width: 6dvh; padding-top: 1dvh;}
#icon4 { width: 5dvh; padding-top: 1dvh;}
#icon5 { width: 10dvh; padding-top: 2.5dvh;}
#icon6 { width: 5.5dvh; padding-top: 1dvh;}
#icon7 { width: 5dvh; padding-top: 1dvh;}
#icon8 { width: 10dvh; padding-top: 2dvh;}
#icon9 { width: 5dvh; padding-top: 1dvh;}
#icon10 { width: 6dvh; padding-top: 1dvh;}
#icon11 { width: 5dvh; padding-top: 1dvh;}

.carousel-item img:hover {
    transform: scale(1.2);
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.carousel-container:hover {
    animation-play-state: paused;
}

.site-links{
    display: flex;
    width: 100dvw;
    padding-top: 20px; 
    min-height: 10px;
    justify-content: center;
}

footer {
    position: fixed;
    bottom: 0;
    background-color: #333;
    padding-top: 10px;
    text-align: center;
    /* margin-top: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 10dvh; */
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    color: white;
    display: inline;
    margin: 0 15px;
    
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

.copywright {
    color: white;
    font-size: 0.8em;
    display: flex;
    width: 100dvw;
    justify-content: center;
}