          :root {
                --header-image: url('https://valkyrias-hideout-art.neocities.org/eventos/machina-heroica_XZ/Logo.png');
                --body-bg-image: url('https://valkyrias-hideout-art.neocities.org/eventos/machina-heroica_XZ/Blue%20Frutiger%20Tech%20Wallpaper.png');

                /* colors */
                --content: #43256E;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

   
    @font-face {
    font-family: Frutiger;

         src: url('https://valkyrias-hideout-art.neocities.org/font-faces/frutiger/Frutiger.ttf') format('truetype');
              font-weight: normal;
              font-style: normal;
            }
    
    @font-face {
                font-family: Frutiger;
                src: url('https://valkyrias-hideout-art.neocities.org/font-faces/frutiger/Frutiger_bold.ttf') format('truetype');
                font-weight: bold;
                font-style: bold;
            }
    
   @font-face {
    font-family: Gigantic FS;

         src: url('https://valkyrias-hideout-art.neocities.org/font-faces/GiganticFs-d9doR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
   }
  
@font-face {
    font-family: Lexend Giga;

         src: url('https://valkyrias-hideout-art.neocities.org/font-faces/LexendGiga-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
   }
  
@font-face {
    font-family: Digital-7;

         src: url('https://valkyrias-hideout-art.neocities.org/font-faces/digital-7-font/Digital7-rg1mL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
   }

            body {
                font-family: Frutiger, sans-serif;
                text-shadow: 1pt 0 #398f6d, 0 1pt #a83951, 1pt 0 #a83951, 0 1pt #398f6d, 0 0;
                text-align: center;
                margin: 0;
                background-color: #63B4FF;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 100% cover;
                background-position: center;
                color: #000000;
                background-image: var(--body-bg-image);
                cursor: url(https://valkyrias-hideout-art.neocities.org/eventos/machina-heroica_XZ/Z-saber.gif), auto;
}

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
              
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
                animation-name: floating; 
                animation-duration: 3s; 
                animation-iteration-count: infinite; 
                animation-timing-function: ease-in-out;
            }

@keyframes floating { 
0% { 
transform: translate(0,  0px); 
} 

50%  { 
transform: translate(0, 15px); 
} 

100%   {
transform: translate(0, -0px); 
} 
}     

    



            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #ED64F5;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            .glass-card {
                position: relative;
                overflow: hidden;
                background: linear-gradient(180deg,rgba(27, 33, 222, 0.75) 0%, rgba(179, 219, 255, 0.75) 55%, rgba(27, 33, 222, 0.75) 100%);
                flex: 1;
                padding: 20px;
                order: 2;
                border-radius: 25px;
                border: 1px solid #552fd4;
                backdrop-filter: blur(10px);
               
  
            }
            
         .glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.sub-title {
  font-family: Gigantic FS, sans-serif;
}

.date span {
  font-weight: bold;
}

.countdown-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 675px;
  height: 100px;
  margin-left: 5px;
  gap: 1rem;
      align-items: center;
      justify-content: center;
  overflow-wrap: break-word; /* Ajusta palabras largas */
    word-break: break-word;
  background: linear-gradient(180deg,rgba(197, 211, 224, 0.25) 0%, rgba(29, 29, 64, 0.25) 100%);
  border-radius: 15px;
  border: 1px solid #552fd4;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.countdown-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.countdown {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      width: 675px;
      height: 100px; 
      border-radius: 15px;
      gap: 1rem;
      align-items: center;
      justify-content: center;
}

@keyframes flicker {
0% {
opacity: 0.27861;
}
5% {
opacity: 0.34769;
}
10% {
opacity: 0.23604;
}
15% {
opacity: 0.90626;
}
20% {
opacity: 0.18128;
}
25% {
opacity: 0.83891;
}
30% {
opacity: 0.65583;
}
35% {
opacity: 0.67807;
}
40% {
opacity: 0.26559;
}
45% {
opacity: 0.84693;
}
50% {
opacity: 0.96019;
}
55% {
opacity: 0.08594;
}
60% {
opacity: 0.20313;
}
65% {
opacity: 0.71988;
}
70% {
opacity: 0.53455;
}
75% {
opacity: 0.37288;
}
80% {
opacity: 0.71428;
}
85% {
opacity: 0.70419;
}
90% {
opacity: 0.7003;
}
95% {
opacity: 0.36108;
}
100% {
opacity: 0.24387;
}
}
 
#wrapper::after {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(18, 16, 16, 0.1);
opacity: 0;
z-index: 2;
pointer-events: none;
animation: flicker 0.15s infinite;
}
#wrapper::before{
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
z-index: 2;
background-size: 100% 3px, 4px 100%;
pointer-events: none;
}



.big {
       font-family: "Doto", sans-serif;
       font-size: 3rem;
       margin-left: 1.3px;
       animation: glow-animation 1s infinite alternate;
}

@keyframes glow-animation {
  0% {
    text-shadow: 0 0 5px #5595D8, 0 0 5px #61E7FF, 0 0 10px #139AE8, 0 0 17px #5595D8;
  }
  50% {
    text-shadow: 0 0 10px #5595D8, 0 0 10px #61E7FF, 0 0 15px #139AE8, 0 0 20px #5595D8;
  }
  100% {
    text-shadow: 0 0 5px #5595D8, 0 0 5px #61E7FF, 0 0 10px #139AE8, 0 0 17px #5595D8;
  }
}
        
button:hover {
  background-image: -webkit-linear-gradient(top, #dce0df, #87b096);
  background-image: -moz-linear-gradient(top, #d4d4d4, #87b096);
  background-image: -ms-linear-gradient(top, #dce0df, #87b096);
  background-image: -o-linear-gradient(top, #dce0df, #87b096);
  background-image: linear-gradient(to bottom, #dce0df, #87b096);
  cursor: url(https://valkyrias-hideout-art.neocities.org/eventos/machina-heroica_XZ/Z-saber.gif), pointer;
}

button {
  background-color: #dce0df;
  color: #000000;
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(238, 238, 238, 0.008) 100%
  );
  display: inline-block;
  width: auto;
  text-decoration: none;
  padding: 5px;
  line-height: 1;
  border: 1px solid #878787;
  border-radius: 0.5em 0.5em 0.5em 0.5em;
  box-shadow: inset 0px 0px 6px -10px rgb(66 66 66 / 56%),
    inset -13px 0px 6px -10px rgb(66 66 66 / 56%),
    inset 0px 13px 6px -10px #ffffff,
    inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
}



            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            .glass-footer {
                position: relative;
                overflow: hidden;
                background: linear-gradient(180deg,rgba(27, 33, 222, 0.75) 0%, rgba(179, 219, 255, 0.75) 35%, rgba(27, 33, 222, 0.75) 100%);
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                border-radius: 25px;
                text-align: center;
                border: 1px solid #552fd4;
                backdrop-filter: blur(10px);
                /* this centers the footer text */
            }

.glass-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}



            h1,
            h2,
            h3 {
                color: #000000;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #000000;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
      
       #header {
    background-repeat: no-repeat;
    flex-direction: column; /* Stacks items vertically on mobile */
    width: 100%;
  }
      
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
                

  .contdown-box, .countdown {
    flex-direction: column; /* Stacks items vertically on mobile */
    width: 100%;
  }
            }