/* Global Styles */ 
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #10002b, #3c096c);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Add space between text elements */
h1, h2, p {
    margin-bottom: 45px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #10002b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Scrolling Ticker */
#ticker-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #3c096c;
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-size: 18px;
    font-weight: bold;
}

#ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 8s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ff8c00;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Maintenance Message for Desktop */
#desktop-message {
    display: none;
    width: 100%;
    height: 100vh;
    background: #3c096c;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

/* Show Maintenance Message Only on Desktop */
@media screen and (min-width: 1024px) {
    #desktop-message {
        display: flex;
    }
    #main-content {
        display: none;
    }
}

/* Main Content */
.hidden {
    display: none;
}

/* Header */
.header {
    padding: 20px;
}

.logo {
    width: 284px;
}

/* Claim Button */
.animated-button {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border: none;
    padding: 15px;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.animated-button:hover {
    transform: scale(1.1);
}

/* Pop-up */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: black;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    display: none;
    text-align: center;
}

/* Pop-up Content */
.popup-content h2 {
    font-size: 24px;
    font-weight: bold;
}

/* Enlarged Input Field */
.popup-content textarea {
    width: 90%;
    height: 250px;
    padding: 12px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    resize: none;
}

/* Buttons */
.popup-content button {
    background: #3c096c;
    color: white;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #6a0dad;
}

/* Description Text */
.description {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

/* App Store Links */
.app-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.store-btn {
    width: 140px;
}

.store-btn .store-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.store-btn .store-img:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
    .popup {
        width: 95%;
    }
    .store-btn {
        width: 120px;
    }
}