@keyframes flash {
    0% { color: neon green; }
    25% { color: yellow; }
    50% { color: cyan; }
    75% { color: blue; }
    100% { color: neon green; }
}

body, html {
    height: 100%;
    margin: 0;
    background-image: url('https://media1.tenor.com/images/MJBei1tg0M4AAAAC/lonely-lil.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: url('et-finger.png'), auto; /* Custom cursor */
}

.container {
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsive-iframe {
    width: 100%;
    max-width: 1440px;
    height: 600px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.responsive-video {
    width: 100%;
    max-width: 1440px;
    height: 600px;
    border: 10px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .responsive-iframe,
    .responsive-video {
        width: 23%; /* Adjusted to fit four iframes side by side */
        height: 800px;
    }
}

@media (max-width: 1024px) {
    .responsive-iframe,
    .responsive-video {
        width: 100%;
        height: auto;
    }
}

.buttons {
    margin-top: 20px;
    text-align: center;
}

.button {
    background-color: gray;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 50%; /* Rounded like GameBoy buttons */
    font-size: 16px;
    cursor: pointer;
}

.signature {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: white;
    margin: 10px;
}

/* Explore Link styling */
.explore-link,
.mint-link {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    z-index: 1001;
}

.explore-link:hover,
.mint-link:hover {
    background-color: rgba(255, 85, 0, 0.8);
}

/* Figma Link styling */
.figma-link {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.figma-link:hover {
    background-color: rgba(255, 85, 0, 0.8);
}

/* Flashing Text styling */
.flashing-text {
    animation: flash 1s infinite;
}

.top-left {
    position: fixed;
    top: 10px;
    left: 10px;
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
}

.bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-family: 'Times New Roman', serif;
    font-size: 24px;
}

/* Disclaimer styling */
.disclaimer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: black;
    margin: 10px;
}

.disclaimer a {
    color: yellow;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}
