body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

.app-container {
    background-color: #fff;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    height: 95vh; /* Adjust height to ensure content is visible */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    margin: 20px;
    border: 1px solid #FF00FF;
}

.header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.logo {
    text-align: center;
    padding: 20px;
    background-color: #333;
}

.logo h1 {
    color: #fff;
}

.container {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #fafafa;
}

.card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out; /* Smooth transition for highlighting */
}

.card h2 {
    margin-top: 0;
}

.card p {
    margin-bottom: 10px;
}

.footer {
    background-color: #cc397b;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.footer nav {
    display: flex;
    justify-content: space-around;
}

.footer nav a {
    color: #fff;
    text-decoration: none;
}

.error {
    color: red;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="password"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

/* Style for rectangular button */
button[type="submit"],
input[type="submit"] {
    width: 120px; /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    background-color: #333; /* Background color */
    color: white; /* Text color */
    border: 2px solid #fff; /* White border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
    font-size: 16px; /* Font size */
    outline: none; /* Remove outline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Box shadow for depth */
    display: flex; /* Flexbox for centering content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0 auto; /* Center horizontally */
}

/* Hover effect */
button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: #cc397b; /* Darker background color on hover */
}

/* Active effect */
button[type="submit"]:active,
input[type="submit"]:active {
    background-color: #cc397b; /* Darker background color on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Adjust shadow on click */
}

.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

/* Style for paused state */
.paused {
    background-color: gray;
    color: white;
    border: 2px solid #ccc;
    cursor: not-allowed;
}

/* Style for active card */
.active-card {
    border: 3px solid #cc397b;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
    transform: scale(1.05); /* Slightly larger */
}

/* Styles for the plane animation */
.plane-container {
    position: relative;
    width: 100%;
    height: fit-content;
    background: url('/app1984/assets/images/slider4.webp') no-repeat center center/cover;
    overflow: hidden;
    margin-top: 10px;
}

.plane {
    position: absolute;
    bottom: 0; /* Start from the bottom-left corner */
    left: -100px; /* Start slightly off-screen */
    width: 100px;
    height: auto;
    transition: transform 60s linear; /* Duration to make the plane fly slower */
}

.plane-fly {
    transform: translate(120vw, -80vh); /* Move the plane off the screen diagonally */
}


/* Styles for the animated logo */
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.animated-logo {
    font-family: Arial, sans-serif;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.pilot {
    color: #FF5733; /* Color for 'Pilot' */
    animation: pilotAnimation 2s infinite;
}

.leak {
    color: #33C3FF; /* Color for 'Leak' */
    animation: leakAnimation 2s infinite;
}

@keyframes pilotAnimation {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(-10deg) scale(1.2);
    }
}

@keyframes leakAnimation {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.2);
    }
}


.error-message {
    background-color: #f8d7da; /* Light red */
    color: #721c24; /* Dark red text */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #f5c6cb; /* Red border */
}

.success-message {
    background-color: #d4edda; /* Light green */
    color: #155724; /* Dark green text */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #c3e6cb; /* Green border */
}


 /* Center the container and style it */
 .multiplier-container {
        display: flex;
        justify-content: center;
        padding: 10px;
    }

    /* Style the multiplier display div */
    #multiplierDisplay {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap on small screens */
        gap: 10px;
        justify-content: center;
        max-width: 100%; /* Restrict width to prevent overflow */
    }

    /* Multiplier items styling */
    .multiplier {
        padding: 5px 10px;
        color: white;
        border-radius: 4px;
        text-align: center;
        font-size:10px;
    }

    /* Background color styles */
    .low { background-color: blue; }
    .medium { background-color: green; }
    .high { background-color: purple; }
    .very-high { background-color: red; }
