/* Import gaming-styled cursor */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    overflow: scroll;
    color: #FFD700; /* Gold theme */
}

/* Ensure body takes full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Cursor Follow */
.cursor-follow {
    position: absolute;
    width: 80px; /* Adjust size as needed */
    height: 80px;
    pointer-events: none; /* Prevent interaction */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
}

/* Circle Design */
.cursor-follow .circle {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Center Dot */
.cursor-follow .circle::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
}

/* Fix Cursor Alignment */
.cursor-follow {
    transform: translate(-40px, -40px); /* Ensures the cursor points at the center dot */
}

/* Hide cursor-follow on mobile */
@media (max-width: 768px) {
    .cursor-follow {
        display: none !important;
    }
}

/* Video background styling */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it's behind content */
}

/* Hide all videos initially */
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide by default */
}

/* Language Selector */
.language-selector {
    position: fixed; /* Keep it fixed on screen */
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ff0000;
    z-index: 9999; /* Ensure it stays in front */
}

.language-selector label, .language-selector select {
    color: #FFD700;
    font-size: 14px;
}

/* Style the select dropdown with flags */
.language-selector select {
    color: #FFD700;
    font-size: 14px;
    background-color: transparent;
    border: none;
    appearance: none;
    padding-left: 30px; /* Space for the flag */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px; /* Adjust flag size */
}

/* Optional: Hide default dropdown arrow */
.language-selector select::-ms-expand {
    display: none;
}

/* Logo */
.logo {
    text-align: center;
    margin: 40px 0;
    margin-bottom: -20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Box behind the logo */
.logo::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 300px;
    height: 50px;
    padding: 20px;
    background: linear-gradient(45deg, #00AEEF, #FFFFFF, #001F3F, #00AEEF);
    background-size: 400% 400%;
    animation: shinyBackground 6s infinite linear, borderAnimation 2s infinite ease-in-out;
    border-radius: 10px;
    z-index: -1;
    border: 4px solid transparent;
}

/* Logo Image */
.logo img {
    width: 430px;
    filter: drop-shadow(0 0 10px #00d9ff);
    position: relative;
    z-index: 1;
}

/* Smooth moving gradient background animation */
@keyframes shinyBackground {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

/* Smooth white border animation */
@keyframes borderAnimation {
    0% { border-color: rgba(255, 255, 255, 0.3); }
    50% { border-color: rgba(255, 255, 255, 1); }
    100% { border-color: rgba(255, 255, 255, 0.3); }
}

/* Input Sections */
.input-section {
    text-align: center;
    margin: 15px 0;
}

.input-section input {
    max-width: 600px;
    padding: 12px;
    font-size: 16px;
    text-align: center;
    border: 2px solid #ff0000;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    transition: all 0.3s ease;
}

.input-section input:focus {
    outline: none;
    box-shadow: 0px 0px 10px #ff0000;
    transform: scale(1.05);
}

.input-section input::placeholder {
    color: #FFFFFF; /* White color for placeholder */
    opacity: 1; /* Ensure full opacity */
}

/* Verification Button */
#verify-btn {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

#verify-btn:hover {
    background: linear-gradient(90deg, #FFA500, #FFD700);
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 1);
    transform: scale(1.1);
}

/* Loading Popup Styling */
#loading-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-container {
    background: linear-gradient(135deg, #ff0000, #ff6600, #ffd700);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    animation: glowEffect 1.5s infinite alternate;
}

@keyframes glowEffect {
    from {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-container p {
    font-size: 18px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Success Popup Styling */
#success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Success Container Style */
.success-container {
    background: linear-gradient(135deg, #00ff00, #00cc00, #009900);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    animation: glowEffectSuccess 1.5s infinite alternate;
}

@keyframes glowEffectSuccess {
    from {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.9);
    }
}

/* Check Mark Style */
.checkmark {
    width: 80px;
    height: 80px;
    background: none;
    border-radius: 50%;
    border: 5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 15px;
}

/* Checkmark SVG */
.checkmark svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmarkDraw 0.5s ease-in-out forwards;
}

/* Checkmark Draw Animation */
@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
    }
}

.success-container p {
    font-size: 18px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Information Text */
.info-text {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: -10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 5px;
    max-width: 600px;  /* Set maximum width */
    margin-left: auto; /* Automatically adjust left margin */
    margin-right: auto; /* Automatically adjust right margin */
}

.member-count {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid red;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.member-count::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.member-count:hover::before {
    left: 100%;
}

/* Jackpot List */
.jackpot-list {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px #ff0000;
    overflow: hidden;
}

.jackpot-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 10px #FFD700;
}

.jackpot-list ul {
    list-style: none;
    padding: 0;
}

.jackpot-list li {
    font-size: 14px;
    margin: 5px 0;
    color: white;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    position: relative;
}

/* Real User Indicator */
.jackpot-list li.real-user {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

/* Generated User Styling */
.jackpot-list li.generated-user {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
}

.jackpot-list li:hover {
    background: rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}

.jackpot-list li::after {
    content: attr(data-timestamp);
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 5px;
    border-radius: 3px;
}

.jackpot-list li.real-user::after {
    display: none;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.2); }
}

.jackpot-list.updating {
    animation: pulseGlow 1.5s infinite;
    position: relative;
}

.jackpot-list.updating::after {
    content: "Updating...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
}

.pagination-container button {
    padding: 5px 12px;
    font-size: 12px;
    min-width: 35px;
    height: 30px;
    background: linear-gradient(90deg, #ff0000, #ff3c00);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Keep other existing properties */
}

/* Add this new rule */
.pagination-container button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(90deg, #5a5a5a, #3a3a3a);
}

/* Hover Effect */
.pagination-container button:hover {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    box-shadow: 0px 0px 15px rgb(255, 0, 0);
    transform: scale(1.1);
}

/* Active Page (Current Page Number) */
.pagination-container button.active {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    color: white;
    border: 2px solid white;
    box-shadow: 0px 0px 20px rgb(255, 50, 50);
    transform: scale(1.1);
}

/* Previous and Next Page Buttons */
#prev-page-btn, #next-page-btn {
    display: block;
    margin: 10px auto;
    margin-bottom: 0px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #ff0000, #ff3c00);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

#prev-page-btn:hover, #next-page-btn:hover {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    box-shadow: 0px 0px 15px rgb(255, 0, 0);
    transform: scale(1.1);
}

.text-centertitle {
    text-align: center; /* Center the title */
    font-size: 20px;
    margin-bottom: 10px;
    color: #FFD700;
    text-shadow: 0 0 15px #FFD700;
    letter-spacing: 1.5px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px; /* Add some space between the text and the box */
    border-radius: 5px; /* Optional: Round the corners of the box */
    max-width: 600px; /* Limit the width to 600px */
    margin-left: auto; /* Center the box horizontally */
    margin-right: auto; /* Center the box horizontally */
}

.withdraw-members {
    max-width: 600px; /* Set max width */
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: black;
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px #ff0000;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto;
}

.item-trans {
    background: #7a0000;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    border: 2px solid rgb(255, 0, 0);
    animation: fadeInUp 1s ease-in-out;
}

.avatar-wrapper {
    display: flex;
    align-items: center;
}

.avatar-trans {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.rupiah-trans {
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Section */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid #ff0000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Footer Section */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 3px solid #ff0000;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    position: relative;
}

/* Footer Title */
footer h4 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #FFD700;
    text-shadow: 0 0 15px #FFD700;
    letter-spacing: 1.5px;
}

/* Provider List */
.provider-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Provider Items */
.provider-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    padding: 20px;
    width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(0);
}

/* Alternate entry directions */
.provider-list li:nth-child(odd) {
    transform: translateX(-120%);
}

.provider-list li:nth-child(even) {
    transform: translateX(120%);
}

/* Animated State */
.provider-list li.in-view {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Hover Effects */
.provider-list li:hover {
    background: rgba(255, 0, 0, 0.7);
    transform: translateX(0) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
    z-index: 1;
}

/* Provider Images */
.provider-list img {
    width: 500px;
    height: auto;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

/* Provider Names */
.provider-list span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Improved Mobile Styles */
@media (max-width: 768px) {
    /* Ensure proper spacing and alignment */
    .provider-list li {
        width: 95%;
        padding: 20px;
        margin: 15px auto;
    }

    .provider-list img {
        width: 100%;
        max-width: 300px;
    }

    footer h4 {
        font-size: 24px;
    }

    /* Adjust entry directions for better mobile UX */
    .provider-list li:nth-child(odd),
    .provider-list li:nth-child(even) {
        transform: translateY(10px);
    }

    .provider-list li.in-view {
        transform: translateY(0%) scale(1);
    }

/* Jackpot List */
.jackpot-list {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px #ff0000;
    overflow: hidden;
}

.jackpot-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 10px #FFD700;
}

.jackpot-list ul {
    list-style: none;
    padding: 0;
}

.jackpot-list li {
    font-size: 14px;
    margin: 5px 0;
    color: white;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    position: relative;
}

/* Real User Indicator */
.jackpot-list li.real-user {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

/* Generated User Styling */
.jackpot-list li.generated-user {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
}

.jackpot-list li:hover {
    background: rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.2); }
}

.jackpot-list.updating {
    animation: pulseGlow 1.5s infinite;
    position: relative;
}

.jackpot-list.updating::after {
    content: "Updating...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

/* Information Text */
.info-text {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 5px;
    max-width: 600px;  /* Set maximum width */
    margin-left: auto; /* Automatically adjust left margin */
    margin-right: auto; /* Automatically adjust right margin */
}

.member-count {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid red;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.member-count::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.member-count:hover::before {
    left: 100%;
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
}

.pagination-container button {
    padding: 5px 12px;
    font-size: 12px;
    min-width: 35px;
    height: 30px;
    background: linear-gradient(90deg, #ff0000, #ff3c00);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Keep other existing properties */
}

/* Add this new rule */
.pagination-container button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(90deg, #5a5a5a, #3a3a3a);
}

/* Hover Effect */
.pagination-container button:hover {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    box-shadow: 0px 0px 15px rgb(255, 0, 0);
    transform: scale(1.1);
}

/* Active Page (Current Page Number) */
.pagination-container button.active {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    color: white;
    border: 2px solid white;
    box-shadow: 0px 0px 20px rgb(255, 50, 50);
    transform: scale(1.1);
}

/* Previous and Next Page Buttons */
#prev-page-btn, #next-page-btn {
    display: block;
    margin: 10px auto;
    margin-bottom: 0px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #ff0000, #ff3c00);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

#prev-page-btn:hover, #next-page-btn:hover {
    background: linear-gradient(90deg, #ff3c00, #ff0000);
    box-shadow: 0px 0px 15px rgb(255, 0, 0);
    transform: scale(1.1);
}
}

/* Language Selector */
.language-selector {
    position: fixed; /* Keep it fixed on screen */
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ff0000;
    z-index: 9999; /* Ensure it stays in front */
}

.language-selector label, .language-selector select {
    color: #FFD700;
    font-size: 14px;
}

/* Style the select dropdown with flags */
.language-selector select {
    color: #FFD700;
    font-size: 14px;
    background-color: transparent;
    border: none;
    appearance: none;
    padding-left: 30px; /* Space for the flag */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px; /* Adjust flag size */
}

/* Optional: Hide default dropdown arrow */
.language-selector select::-ms-expand {
    display: none;
}

/* Responsive Centering */
@media (max-width: 768px) {
    .logo {
        margin: 50px 0;
        margin-bottom: -30px;
    }
    /* Box behind the logo */
.logo::before {
    content: "";
    position: absolute;
    max-width: 300px;
    height: 50px;
    padding: 20px;
    background: linear-gradient(45deg, #00AEEF, #FFFFFF, #001F3F, #00AEEF);
    background-size: 400% 400%;
    animation: shinyBackground 6s infinite linear, borderAnimation 2s infinite ease-in-out;
    border-radius: 10px;
    z-index: -1;
    border: 4px solid transparent;
}
    .logo img {
        width: 430px; /* Adjust size for mobile */
    }
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}