html {
    cursor: url("wimages/ELDEN\ RING\ CURSOR.cur"), auto;
}

body {
    background-color: #060606;
    font-family: "Jersey 10", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

#enter {
    background-color: #000;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url("wimages/ELDEN\ RING\ CURSOR.cur"), auto;
    z-index: 5;
    position: absolute;
    transition: .3s ease-in;
    
}

#enter p {
    display: inline-block;
    overflow: hidden; 
    white-space: nowrap;
    font-size: 24px; 
    color: #fff;
    margin: 0; 
    font-size: 34px;
}


.landing {
    text-align: center;
    position: relative;
    display: none;
}

.landing .ascii-art {
    color: #c689ff;
    white-space: pre-wrap; 
    font-size: 12px; 
    margin-left: -105px; 
    margin-top: -100px;
}

.datetime-container {
    display: none;
    justify-content: space-between; 
    align-items: center; 
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 10; 
    margin-bottom: 200px;
}

.clock {
    color: #B17BE3;
    font-size: 30px;
    letter-spacing: 6px;

}

.date {
    color: #B17BE3;
    font-size: 30px;
    letter-spacing: 6px;
}

.socials p {
    color: #dddddd;
    font-size: 35px;
    text-decoration: none;
    cursor: url("wimages/ELDEN\ RING\ CURSOR.cur"), auto;
}

.socials p:hover {
color: #B17BE3;
transition-duration: 400ms;
}

.socials a {
    text-decoration: none;
}

.socials hr {
    width: 65px;
    top: 8px;
    left: -1px;
    position: relative;
}

.crypto {
    word-spacing: 10px;
    position: relative;
    font-size: 35px;
    margin-top: 50px;
}



#copy-btn-text {
    color: #F7D0A0;
}

#copy-btn-text-eth {
    color: #B6C1F8;
}

#copy-btn-text-sol {
    background: linear-gradient(135deg, #8C1EFF, #4A00E0, #00FFA3); 
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)
}

/* Container to hold cursor particles */
.cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Style for the stars */
.cursor-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: transparent;
    z-index: 999;
    visibility: hidden;
}

.cursor-star div {
    position: absolute;
    background-color: #da8ee7; /* Purple color */
}

.cursor-star .bar-horizontal {
    width: 5px;
    height: 1px;
    top: 2px;
    left: 0;
}

.cursor-star .bar-vertical {
    width: 1px;
    height: 5px;
    top: 0;
    left: 2px;
}

/* Style for the tiny dots */
.cursor-tiny {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #da8ee7; /* Purple color */
    visibility: hidden;
    z-index: 999;
}

/* Keyframes for moving stars up */
@keyframes move-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh); /* Moves the star up through the entire viewport height */
    }
}

/* Keyframes for moving stars down */
@keyframes move-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh); /* Moves the star down through the entire viewport height */
    }
}

/* Styles for small stars moving up */
.small-star[data-direction='up'] {
    animation: move-up 180s linear infinite; /* Slow movement */
}

/* Styles for small stars moving down */
.small-star[data-direction='down'] {
    animation: move-down 60s linear infinite; /* Much faster movement */
}

/* Styles for large stars moving up */
.large-star[data-direction='up'] {
    animation: move-up 360s linear infinite; /* Even slower movement */
}

/* Styles for large stars moving down */
.large-star[data-direction='down'] {
    animation: move-down 180s linear infinite; /* Faster movement */
}

#stars {
    z-index: -1;
}

#popup-container {
    position: absolute;
    top: 20%; 
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none; 
}

#popup-text {
    display: none;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-family: 'Jersey 10', sans-serif;
    position: relative;
    max-width: 300px;
    text-align: center;
    word-wrap: break-word; 
    white-space: normal;   
    overflow: hidden;      

}

#popup-text::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

@media (max-width: 1000px) {
   

    .datetime-container {
        display: none;
        flex-direction: column; 
        align-items: center; 
        position: fixed; 
        top: 8%; 
        left: 0;
        right: 0;
        padding: 10px; 
        z-index: 10;
        
    }

    .clock, .date {
        display: block; 
        font-size: 24px; 
        letter-spacing: 4px; 
        color: #B17BE3; 
        margin: 0; 
    }

    .landing {
        margin-top: 80px; 
        text-align: center; 
    }

    .ascii-art {
        font-size: 10px; 
        margin: 0; 
        padding: 0; 
    }
}


  
  .play_contain {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 110%;
    left: 50%;
    
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  
  .play_btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    cursor: pointer;
  
    -o-transition:.25s;
    -ms-transition:.25s;
    -moz-transition:.25s;
    -webkit-transition:.25s;
    transition:.25s;
  }
  
  .play_btn span {
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
  
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  
    -o-transition:.25s;
    -ms-transition:.25s;
    -moz-transition:.25s;
    -webkit-transition:.25s;
    transition:.25s;
  }
  
  .play_btn span:nth-child(1) {
    top: 25%;
    left: 50%;
  
    transform: rotate(30deg)translate(-50%, -50%);
    -webkit-transform: rotate(30deg)translate(-50%, -50%);
  
    transition-timing-function: cubic-bezier(.75,0,.9,1);
    -webkit-transition-timing-function: cubic-bezier(.75,0,.9,1);
  }
  
  .trigger .play_btn span:nth-child(1) {
    top: 50% !important;
    left: 70% !important;
  
    transform: rotate(-90deg)translate(-50%, -50%) !important;
    -webkit-transform: rotate(-90deg)translate(-50%, -50%) !important;
  }
  
  .play_btn span:nth-child(2) {
    top: 50%;
    left: 5%;
  
    transform: rotate(90deg)translate(-50%, -50%);
    -webkit-transform: rotate(90deg)translate(-50%, -50%);
  
    transition-timing-function: cubic-bezier(0.5,0.5,0.25,1.5);
    -webkit-transition-timing-function: cubic-bezier(0.5,0.5,0.25,1.5);
  }
  
  .trigger .play_btn span:nth-child(2) {
    top: 50% !important;
    left: 30% !important;
  
    transform: rotate(90deg)translate(-50%, -50%) !important;
    -webkit-transform: rotate(90deg)translate(-50%, -50%) !important;
  
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
  }
  
  .play_btn span:nth-child(3) {
    top: 75%;
    left: 50%;
  
    transform: rotate(-30deg)translate(-50%, -50%);
    -webkit-transform: rotate(-30deg)translate(-50%, -50%);
  
    transition-timing-function: cubic-bezier(.75,0,.9,1);
    -webkit-transition-timing-function: cubic-bezier(.75,0,.9,1);
  }
  
  .trigger .play_btn span:nth-child(3) {
    top: 50% !important;
    left: 70% !important;
  
    transform: rotate(90deg)translate(-50%, -50%) !important;
    -webkit-transform: rotate(90deg)translate(-50%, -50%) !important;
  
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
  }
