

html {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body {
    /*font-family: "Oxanium", sans-serif;*/
    font-family: "Fira Sans", serif;
    font-weight: 400;
    font-style: normal;
    /* background: linear-gradient(135deg, #0a0a0a, #1a1a1a); */
    background: #000; /* Solid black background for a sleek, modern look */
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column; /* Allows stacking of containers */
    align-items: center; /* Center items horizontally */
    min-height: 100vh; /* Ensures body takes full height */
}

/* snow */
.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* countdown */
  #countdown {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: #00ffcc;
    background-color: #000;
    padding: 20px 30px;
    border: 2px solid #00ffcc;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    letter-spacing: 2px;
    box-shadow: 0 0 12px #00ffcc, 0 0 6px #00ffcc inset;
    margin: 20px auto;
  }

@@keyframes glow {
  0%, 100% { text-shadow: 0 0 2px #00ffcc, 0 0 4px #00ffcc; }
  50% { text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc; }
}

#countdown {
  animation: glow 1.5s ease-in-out infinite;
}

/* Navbar */
.navbar {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s;
}

.navbar a:hover {
    color: cyan;
}

.main-container {
    display: flex; /* Enables flexbox layout for the containers */
    justify-content: center; /* Space between containers */
    gap: 20px; /* Space between containers */
    flex-wrap: wrap; /* Allows wrapping to new line if needed */
    max-width: 1100px; /* Limit width for larger screens */
    width: 100%; /* Full width */
    margin: 10px; /* Adds space around the main container */
    box-sizing: border-box; /* Ensures padding and border are included in width/height */
    padding: 0 10px; /* Small padding to avoid sticking on small screens */
}

.container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 153, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; /* Allows containers to grow equally */
    min-width: 260px; /* Minimum width for smaller screens */
    display: flex; /* Enable flexbox for internal alignment */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
}

.container:hover {
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6); /* Enhanced shadow */
}

.containerC {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; /* Allows containers to grow equally */
    min-width: 260px; /* Minimum width for smaller screens */
    display: flex; /* Enable flexbox for internal alignment */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
}

.containerC:hover {
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6); /* Enhanced shadow */
}

.rounded-box {
    border: 1px solid #333;      /* Border of the box */
    border-radius: 5px;          /* Rounded corners */
    padding: 5px;                /* Space between text and box edges */
    background-color: transparent;/* Transparent background */
    color: #fff;                  /* Text color */
    width: fit-content;           /* Adjust width to fit content */
    margin: 10px auto;            /* Center alignment */
}

/* Style for the event container */
    .event-container {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
    }

    /* Toggle button style */
    .toggle-button {
      padding: 10px;
      cursor: pointer;
      text-align: center;
      font-weight: bold;
    }

    /* Hidden content */
    
    .content-container, .content-container1 {
      display: none;
      padding: 10px;
      border: 0px solid #ccc;
      margin-top: 10px;
    }

h1 {
    color: #00FF99;
    margin-bottom: 10px;
    font-size: 2.2em;
    text-shadow: 0 0 2px #00FF99, 0 0 30px #00FF99;
}

.cyan {
    color: cyan;
    margin-bottom: 10px;
    font-size: 2.2em;
    text-shadow: 0 0 2px cyan, 0 0 30px cyan;
}

h2 {
    color: #00FF99;
    margin-bottom: 10px;
    font-size: 1.8em;
    text-shadow: 0 0 2px #00FF99, 0 0 20px #00FF99;
}

/* New rainbow title style */
.rainbow-title {
    font-size: 1.6em; /* Adjust size as needed */
    font-weight: bold;
    background: linear-gradient(270deg, #ff0000, #ff7300, #ffeb00, #47ff00, #00ffee, #2a65ff, #8000ff);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowMove 3s ease infinite;
}

/* Keyframes for moving the gradient */
@keyframes rainbowMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.stats {
    font-size: 1.2em;
    margin: 15px 0;
}

.stats2 {
    font-size: 0.9em;
    margin: 15px 0;
    color: #00FF99;
}

.stats3 {
    font-size: 1em;
    margin: 15px 0;
    color: #00FF99;
}

.stats2c {
    font-size: 0.8em;
    margin: 15px 0;
    color: cyan;
}

.stats3c {
    font-size: 1em;
    margin: 15px 0;
    color: cyan;
}

.progress-bar {
    width: 100%;
    background-color: #555555;
    border-radius: 10px;
    margin-top: 15px;
    position: relative;
    height: 35px;
    overflow: hidden;
    transition: 0.4s linear;  
    transition-property: width, background-color;
}

.progress {
    background-color: #00FF99;
    height: 100%;
    border-radius: 0px;
    width: 0%;
    transition: width 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 400;
    font-size: 0.90em;
}

.progressCyan {
    background-color: cyan;
    height: 100%;
    border-radius: 0px;
    width: 0%;
    transition: width 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 400;
    font-size: 0.95em;
}

#charts {
    width: 95%; /* Take full width of the container */
    height: 95%; /* Adjust height dynamically */
    flex: 1; /* Let the chart grow within the container */
    min-height: 300px; /* Set a minimum height for usability */
}

p {
    margin: 10px 0;
}

.link-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three columns */
    gap: 10px; /* Space between items */
    align-items: center; /* Center children horizontally */
}

.link-item {
    margin: 0;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the logos */
}

.footer-logo {
    width: 120px; /* Set the size of each logo */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Optional: Add a hover effect */
}

.spaced-dotted-line {
    width: 100%;
    height: 2px;
    background-image: radial-gradient(circle, #00FF99 1px, transparent 1px);
    background-size: 15px 2px; /* Adjust spacing between dots */
    margin: 20px 0; /* Space around the line */
}

.spaced-dotted-line2 {
    width: 100%;
    height: 2px;
    background-image: radial-gradient(circle, cyan 1px, transparent 1px);
    background-size: 15px 2px; /* Adjust spacing between dots */
    margin: 20px 0; /* Space around the line */
}

footer {
    margin-top: 0px;
    text-align: center;
    font-size: 0.9em;
    border-top: 0px solid rgba(255, 255, 255, 0.2);
    padding-top: 0px;
}

footer a {
    color: #00FF99;
    text-decoration: none;
    margin: 0 0px;
    transition: color 0.3s;
}

footer a:hover {
    color: #00BFFF;
}

.event {
    font-size: 0.9em;
}

.event a {
    color: #00FF99;
    text-decoration: none;
    transition: color 0.3s;
}

.event a:hover {
    color: #00BFFF;
}

.logo {
    max-width: 120px;
    margin-bottom: 0px;
    /*animation: float 3s ease-in-out infinite;*/
}

.white-text {
    color: #ffffff;
}

.whitexs-text {
    color: #ffffff;
    font-size: 0.8em;
}

.green-text {
    color: #00FF99;
}

.cyan-text {
    color: cyan;
}

.red-text {
    color: red;
}

/* Styling button */
button {
    background: linear-gradient(135deg, #00FF99, #0075F6);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background: linear-gradient(135deg, #0075F6, #00FF99);
    transform: translateY(-2px);
}

/* Styling input elements */
input {
    background: linear-gradient(135deg, #444444, #222222);
    color: #cccccc;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    transition: background 0.3s, transform 0.3s;
    width: 50%; /* Adjust width as needed */
    box-sizing: border-box;
}

input:focus {
    outline: none;
    color: #ffffff;
    background: linear-gradient(135deg, #000000, #444444);
    transform: translateY(-2px);
}

/* Styling for comparison text */
#comparison {
    font-size: 1.2em;
    color: #00FF99;
}

/* Styling for price text */
#price {
    font-size: 1.4em;
    color: #FFFFFF;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .main-container {
        flex-direction: column; /* Stack containers vertically */
        align-items: stretch; /* Stretch containers to full width */
        justify-content: space-between;
    }

    .container {
        width: 100%; /* Full width on small screens */
        margin: 10px 0; /* Vertical spacing */
        padding: 15px; /* Reduce padding */
        min-width: 100%; /* Full width on small screens */
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    .window-controls {
        position: absolute;
        top: 10px;
        left: 10px;
        transform: translate3d(0, 0, 0);
    }
}
