* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Ensure both pages are hidden by default */
#homepage, #emailPage {
    display: none;  /* Both hidden initially */
}

/* Show homepage initially (optional, if no hash is present) */
body:has(#homepage:target), body:has(#emailPage:target) {
    display: block;
}

body {
    background-color: white;
    overflow: hidden; /* No body scroll, only skull area scrolls */
    font-family: Arial, sans-serif;
}

/* Fixed header with logo and music icon */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    pointer-events: none;
}

.logo {

    position: fixed; /* This locks it to the top left, even if you scroll */
    display: block;
    pointer-events: auto;
    top: -20px;
    left: 70px;
    width: 250px; /* Adjust size to what you want */
    height: auto;
   cursor: pointer;
}

.music-icon {
    
    position: fixed; /* Keeps it at the top even when scrolling */
    top: 20px;  /* Distance from the top */
    right: 20px; /* Distance from the right */
    width: 40px; /* Adjust size if needed */
    height: auto;
    z-index: 100; /* Makes sure it's on top of other elements */
    cursor: pointer; /* Makes it clickable */

}

@keyframes shake {
    0% { transform: rotate(0); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0); }
}

.shake {
    animation: shake 0.5s ease;
}

/* Skull scroll container (only thing scrollable) */
.container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skull-scroll {
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox - hide scrollbar */
    -ms-overflow-style: none; /* IE - hide scrollbar */
    scroll-behavior: smooth;
    width: 300px;
}

.skull-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari - hide scrollbar */
}

.skull-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
}

.skull-column img {
    width: 150px; 
    height: 150px;
    margin: 15px 0;
}


/* Coming Soon button (fixed) */
.coming-soon-btn {
    position: fixed;
    bottom: 0;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding:15px 60px;
    font-size: 24px;
    font-weight: bold;
    margin: 10px;
    text-transform: uppercase;
    border: 2px solid red;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}
/* Mobile Optimization */
@media (max-width: 768px) {
    .coming-soon-btn {
        padding: 15px 60px; /* Smaller padding for mobile */
        font-size: 24px; /* Adjust font size for smaller screens */
        bottom: 15px; /* Slightly less bottom margin on smaller screens */
    }
}

.red-btn {
    background-color: red;
    color: white;
}

.transparent-btn {
    background-color: transparent;
    color: red;
}


/* Centered Email Box */
.email-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}
/* New container that wraps both text and email box */
.email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between text and box */
}

.signup-text {
    position: fixed;
    top: 10%; /* Default for desktop */
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
    font-family: Arial, sans-serif;
}

/* Special positioning for phones */
@media (max-width: 768px) {
    .signup-text {
        top: 17%; /* Move it down a bit on smaller screens */
        font-size: 18px;
    }
}


.email-box {
    position: fixed;
    width: 370px;
    height: 370px;
    border-radius: 20px;
    border: 3px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    overflow: hidden; /* To contain background image */
}

/* Background Image inside the black border only */
.email-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('your-background-image.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Adjust transparency as needed */
    z-index: 1;
}

/* Form on top of the background */
.email-form {
    position: relative;
    z-index: 2;
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Email Input */
.email-input {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid red;
    outline: none;
    background-color: transparent;
    color: black;
    font-weight: bold;
}

/* Flickering Send Button */
.send-btn {
    padding: 15px 0;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 20px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.red-btn {
    background-color: red;
    color: white;
}

.transparent-btn {
    background-color: transparent;
    color: red;
    border: 2px solid red;
}

/* Logo & Music Icon (carry over from home page styles) */
.logo {
    cursor: pointer;
    position: fixed;
    top: -20px;
    left: -55px;
    width: 250px;
    pointer-events: auto;
}

.music-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
}
/* Style the "thank you" message */
.thank-you-message {
    background-color: #000;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    bottom: -40px;  /* Initially hidden below the form */
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Slide up the "thank you" message */
.thank-you-message.slide-up {
    bottom: 0;
    opacity: 1;
}
#thankYouMessage {
    position: fixed;
    left: 50%;
    bottom: -100px; /* Starts offscreen */
    transform: translateX(-50%);
    font-weight: bold;
    background-color: transparent;
    color: black;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    transition: bottom 0.5s ease;
    z-index: 9999;
}

#thankYouMessage.show {
    bottom: 20px; /* Slides into view */
}


