/* General Styles */
body {
    text-align: center;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef7d1, #fce194);
    margin: 0;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Title with Enhanced Contrast */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: #8a6500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* User Info Box - Increased Contrast */
#userInfo {
    margin-top: 10px;
    font-size: 17px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    color: #6b4e00;
}

/* Info Box with More Contrast */
.info-box {
    width: 96%;
    max-width: 400px;
    background: rgba(255, 240, 180, 0.85);
    padding: 20px;
    border-radius: 14px;
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 200, 0, 0.7);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.info-box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.info-box p {
    margin: 8px 0;
    font-size: 15px;
    color: #5b3d00;
}

.info-box strong {
    font-size: 18px;
    color: #b67200;
    font-weight: bold;
}

/* Buttons with Better Contrast */
button {
    padding: 12px 18px;
    font-size: 17px;
    margin-top: 18px;
    background: linear-gradient(135deg, #ffcc00, #ff9d00);
    border: none;
    cursor: pointer;
    border-radius: 12px;
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-weight: 600;
    color: #4a2f00;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

button:hover {
    background: linear-gradient(135deg, #ffbb00, #ff7a00);
    box-shadow: 5px 5px 14px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

button:active {
    transform: translateY(1px);
}

/* Improved Select Box */
select {
    padding: 10px;
    font-size: 15px;
    border-radius: 10px;
    border: 1.5px solid #ff8c00;
    background: rgba(255, 255, 255, 0.8);
    color: #5a3e00;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

select:hover {
    background: rgba(255, 255, 255, 1);
}

/* Modern Bottom Menu with More Depth */
/*.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 200, 0, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0px -3px 12px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.menu-item {
    padding: 14px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #4a2f00;
    transition: transform 0.2s ease-in-out, background 0.3s;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}
*/
.menu-item:hover {
    background: #ff9d00;
    transform: scale(1.05);
}

/* Smooth Page Load Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeIn 0.6s ease-in-out;
}

/* Box layout */
.box-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 96%;
    margin-top: 20px;
}

.box {
    flex: 1;
    margin: 10px;
    background: rgba(255, 240, 180, 0.85);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 200, 0, 0.7);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Center Claim Your SEE Button */
#claimButton {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    margin: 4px auto;
}

/* For the star selector buttons */
.star-button {
    width: 60px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #FFD700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out;
}

.star-button:hover {
    background-color: #FFC107;
}
