/* General Layout */
body, html {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Enable vertical scrolling */
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden; /* Start hidden */
    animation: fadeIn 1.5s ease-in-out 2s forwards; /* Fade in after overlay */
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a2d50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1.5s ease-in-out 1.5s forwards;
}

.loading-text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

/* Animations */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Token Image */
.token-image {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    margin: 40px 0 20px; /* Add spacing below the image */
    object-fit: contain;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

/* Social Icons */
.social-icon .icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icon .icon:hover {
    transform: scale(1.2);
}

/* Buy Button */
.buy-button {
    background-color: #ffcc00;
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #ffa500;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

#countdown div {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
}

/* Tokenomics */
.tokenomics {
    margin: 40px 0;
}

.tokenomics-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.token-card {
    text-align: center;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e90ff, #00c4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
}

/* Roadmap */
.roadmap-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.roadmap-step {
    max-width: 200px;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #1a2d50;
    color: white;
    font-size: 0.9rem;
    width: 100%;
}

.footer-links a {
    color: #00c4ff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
