* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#time-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(30,30,50,0.8));
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

#game-container {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(180deg, #1e2a4a 0%, #152238 100%);
    border: none;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 172, 254, 0.1);
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

#title-screen {
    text-align: center;
    padding: 60px 20px;
}

#title-screen h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 700;
}

#title-screen p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #a0aec0;
}

button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

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

button:disabled {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

#stats-panel {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.stat {
    margin: 5px 10px;
}

.stat-label {
    font-weight: 600;
    color: #4facfe;
}

#game-canvas {
    display: block;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #74b9ff 0%, #a29bfe 100%);
    border: none;
    border-radius: 16px;
    margin-bottom: 15px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.2);
}

#action-panel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

#message-log {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 0.95em;
    line-height: 1.6;
    backdrop-filter: blur(10px);
}

#message-log p {
    margin-bottom: 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #1e2a4a 0%, #152238 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

#event-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#pace-choices {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.pace-option {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
    border: 2px solid rgba(79, 172, 254, 0.4);
    border-radius: 12px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.pace-option:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.4) 0%, rgba(0, 242, 254, 0.4) 100%);
    border-color: rgba(79, 172, 254, 0.8);
    transform: translateY(-2px);
}

.pace-option small {
    display: block;
    margin-top: 5px;
    opacity: 0.7;
    font-size: 0.8em;
}

#current-pace-display {
    text-align: center;
    color: #a0aec0;
    margin-top: 15px;
}

#pace-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#game-over-screen {
    text-align: center;
    padding: 60px 20px;
}

#game-over-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

#game-over-message {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.allocation-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.allocation-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
}

.allocation-item h3 {
    color: #4facfe;
    margin-bottom: 5px;
    font-weight: 600;
}

.allocation-desc {
    font-size: 0.9em;
    color: #a0aec0;
    margin-bottom: 15px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.slider-container span {
    color: #4facfe;
    font-weight: 600;
}

.allocation-slider {
    flex: 1;
    height: 8px;
    background: linear-gradient(90deg, #2d3748 0%, #4a5568 100%);
    outline: none;
    border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
}

.allocation-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.allocation-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.allocation-value {
    font-size: 1.1em;
    color: #f4e4c1;
    font-weight: bold;
}

#setup-screen {
    text-align: center;
    padding: 20px;
    overflow-y: auto;
    max-height: 100vh;
}

.setup-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.setup-section h3 {
    margin-bottom: 10px;
    color: #f4a460;
}

.difficulty-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.difficulty-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: #3d2817;
    border: 2px solid #5a3d2b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 140px;
}

.difficulty-option:hover {
    border-color: #f4a460;
}

.difficulty-option input[type="radio"] {
    margin-bottom: 5px;
}

.difficulty-option span {
    font-weight: bold;
    color: #f4e4c1;
}

.difficulty-option small {
    font-size: 0.8em;
    color: #d4b896;
}

.difficulty-option input[type="radio"]:checked + span {
    color: #44ff44;
}

.name-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.name-input {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name-input label {
    margin-bottom: 5px;
    color: #d4b896;
}

.name-input input {
    padding: 8px;
    border: 2px solid #5a3d2b;
    border-radius: 5px;
    background: #2d1810;
    color: #f4e4c1;
    text-align: center;
    width: 100px;
}

#setup-screen h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #f4a460;
}

#setup-screen > p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#credits-remaining {
    color: #00f2fe;
    font-weight: bold;
    font-size: 1.3em;
}

/* Main Menu Styles */
#main-menu {
    text-align: center;
    padding: 40px 20px;
}

#main-menu h1 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
}

#main-menu > p {
    margin-bottom: 30px;
    color: #a0aec0;
}

.menu-corner-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.corner-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.menu-profile {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 24px;
    margin: 20px auto;
    max-width: 350px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-profile:hover {
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
}

.profile-dropdown {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.profile-dropdown.active {
    display: flex;
}

.profile-dropdown button {
    padding: 12px 16px;
    font-size: 0.95em;
    text-align: left;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#profile-name {
    font-size: 1.4em;
    color: #ffffff;
    font-weight: 700;
}

#profile-xp {
    color: #00f2fe;
    font-size: 1.2em;
    font-weight: 600;
}

.profile-level {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.xp-bar {
    flex: 1;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.profile-streak {
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,165,0,0.3);
    color: #ffa500;
    font-weight: 600;
    font-size: 0.95em;
}

#xp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

#xp-progress {
    color: #a0aec0;
    font-size: 0.85em;
}

.guest-prompt {
    margin-top: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 12px;
    border: 1px dashed rgba(79, 172, 254, 0.4);
    color: #4facfe;
    font-size: 0.9em;
    text-align: center;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 30px auto;
}

.menu-buttons button {
    padding: 16px 32px;
    font-size: 1.1em;
    border-radius: 14px;
}

.profile-modal {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 25px;
    max-width: 320px;
    margin: 20px auto;
}

.profile-modal.hidden {
    display: none;
}

.profile-modal h3 {
    margin-bottom: 15px;
    color: #4facfe;
    font-weight: 600;
}

.profile-modal input {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.profile-modal input:focus {
    outline: none;
    border-color: #667eea;
}

.show-password-label {
    display: block;
    font-size: 0.9em;
    color: #a0aec0;
    margin-bottom: 10px;
    cursor: pointer;
}

.show-password-label input {
    margin-right: 5px;
}

.profile-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.profile-modal-buttons button {
    padding: 10px 24px;
}

.stats-list {
    text-align: left;
    margin: 15px 0;
}

.stats-list p {
    margin: 12px 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: none;
}

.stats-list p strong {
    color: #4facfe;
}

/* Profile and Stats Screens */
#profile-screen, #login-screen, #manage-profile-screen, #stats-screen {
    text-align: center;
    padding: 40px 20px;
}

.auth-switch {
    margin-top: 20px;
    color: #a0aec0;
    font-size: 0.9em;
}

.auth-switch a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.google-signin-section {
    margin-bottom: 20px;
}

.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: #ffffff;
    color: #333333;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.google-btn svg {
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #a0aec0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 0.9em;
}

#profile-screen h1, #login-screen h1, #manage-profile-screen h1, #stats-screen h1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.profile-form, .stats-container {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    font-size: 1em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    transition: border-color 0.3s;
}

.profile-form input:focus {
    outline: none;
    border-color: #667eea;
}

.profile-photo-section {
    margin-bottom: 20px;
}

#profile-photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    border: 3px solid rgba(255,255,255,0.2);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(102,126,234,0.3);
}

#profile-photo-placeholder {
    font-size: 3em;
}

#profile-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#upload-photo-btn {
    padding: 8px 16px;
    font-size: 0.9em;
}

.manage-field {
    text-align: left;
    margin-bottom: 15px;
}

.manage-field label {
    display: block;
    margin-bottom: 5px;
    color: #4facfe;
    font-weight: 600;
}

.manage-field span {
    color: #a0aec0;
}

.logout-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#logout-btn {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.3);
}

#logout-btn:hover {
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    box-shadow: 0 6px 20px rgba(113, 128, 150, 0.4);
}

.delete-account-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#delete-account-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

#delete-account-btn:hover {
    background: linear-gradient(135deg, #fc5c5c 0%, #e53e3e 100%);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.delete-confirm {
    margin-top: 15px;
    padding: 20px;
    background: rgba(229, 62, 62, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.delete-confirm.hidden {
    display: none;
}

.delete-confirm p {
    margin-bottom: 15px;
    color: #fc8181;
}

#confirm-delete-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

#confirm-delete-btn:hover {
    background: linear-gradient(135deg, #fc5c5c 0%, #e53e3e 100%);
}

/* Friends Screen */
#friends-screen, #friend-profile-screen {
    text-align: center;
    padding: 40px 20px;
}

#friends-screen h1, #friend-profile-screen h1 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.friends-container, .friend-profile-container {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.friend-search-section, .friend-requests-section, .friends-list-section {
    margin-bottom: 25px;
    text-align: left;
}

.friend-search-section h3, .friend-requests-section h3, .friends-list-section h3 {
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 1em;
}

.search-input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.search-input-group button {
    padding: 12px 20px;
}

#search-results, #friend-requests-list, #friends-list {
    margin-top: 15px;
}

.empty-message {
    color: #a0aec0;
    font-style: italic;
    text-align: center;
    padding: 15px;
}

.friend-item, .search-result-item, .request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 10px;
}

.friend-item:hover, .search-result-item:hover {
    background: rgba(255,255,255,0.08);
}

.friend-info, .search-result-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.friend-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.friend-name {
    font-weight: 600;
    color: #ffffff;
}

.friend-level {
    font-size: 0.85em;
    color: #a0aec0;
}

.friend-actions button, .request-actions button {
    padding: 8px 16px;
    font-size: 0.9em;
    margin-left: 8px;
}

.accept-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3) !important;
}

.decline-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%) !important;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3) !important;
}

.friend-profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    border: 3px solid rgba(255,255,255,0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    box-shadow: 0 4px 20px rgba(102,126,234,0.3);
}

.friend-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.friend-stats-list {
    text-align: left;
    margin: 20px 0;
}

.friend-stats-list p {
    margin: 12px 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.friend-stats-list p strong {
    color: #4facfe;
}

/* Badges Modal */
.badges-modal-content {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.badge-category {
    margin-bottom: 25px;
}

.badge-category h3 {
    color: #4facfe;
    margin-bottom: 12px;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.badge-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-item.earned {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.badge-item.locked {
    opacity: 0.5;
}

.badge-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.badge-item .badge-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 8px;
}

.badge-item .badge-name {
    font-size: 0.85em;
    color: #a0aec0;
    display: block;
}

.badge-item.earned .badge-name {
    color: #fff;
}

/* Badge Notification */
.badge-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    background: linear-gradient(135deg, #1e2a4a 0%, #152238 100%);
    border: 2px solid #4facfe;
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: right 0.5s ease;
}

.badge-notification.show {
    right: 20px;
}

.badge-notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-notification .badge-icon {
    font-size: 2.5em;
}

.badge-notification .badge-info {
    text-align: left;
}

.badge-notification .badge-earned {
    color: #4facfe;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-notification .badge-name {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
}

.badge-notification .badge-desc {
    color: #a0aec0;
    font-size: 0.85em;
    margin-top: 4px;
}

/* Badge Detail Popup */
.badge-detail-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.badge-detail-content {
    background: linear-gradient(135deg, #1e2a4a 0%, #152238 100%);
    border: 2px solid rgba(79, 172, 254, 0.4);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.badge-detail-icon {
    font-size: 4em;
    display: block;
    margin-bottom: 15px;
}

.badge-detail-name {
    color: #fff;
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.badge-detail-desc {
    color: #a0aec0;
    font-size: 1em;
    margin: 0 0 15px 0;
}

.badge-detail-status {
    color: #4facfe;
    font-size: 0.95em;
    margin: 0 0 20px 0;
}

.badge-detail-close {
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.badge-detail-close:hover {
    transform: scale(1.05);
}

/* Settings Screen */
.settings-container {
    max-width: 500px;
    margin: 0 auto;
}

.settings-section {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.settings-section h3 {
    margin: 0 0 15px 0;
    color: #4facfe;
    font-size: 1.1em;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.setting-label {
    font-size: 1em;
    color: #fff;
}

.setting-desc {
    font-size: 0.8em;
    color: #a0aec0;
}

.setting-item.locked .setting-label {
    color: #666;
}

.setting-item.locked .toggle-slider {
    background: #333;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .toggle-slider {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Dark Mode Styles */
body.dark-mode {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
}

body.dark-mode .screen {
    background: rgba(0, 0, 0, 0.6);
}

body.dark-mode .settings-section,
body.dark-mode .packing-item,
body.dark-mode .badge-category {
    background: rgba(0, 0, 0, 0.4);
}

body.dark-mode #game-screen {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-mode .stat {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode button {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
}

body.dark-mode button:hover {
    background: linear-gradient(135deg, #3d3d54 0%, #2a2a3e 100%);
}

body.dark-mode .event-modal-content {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

body.dark-mode .badges-modal-content {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

body.dark-mode .badge-item {
    background: rgba(0, 0, 0, 0.4);
}

body.dark-mode .packing-summary {
    background: rgba(0, 0, 0, 0.4);
}

/* Packing Screen */
.packing-container {
    max-width: 600px;
    margin: 0 auto;
}

.trunk-space {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.trunk-space h3 {
    margin: 0 0 15px 0;
    color: #4facfe;
}

.trunk-bar {
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.trunk-fill {
    height: 100%;
    background: #10b981;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.packing-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.packing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
}

.packing-icon {
    font-size: 2em;
    width: 50px;
    text-align: center;
}

.packing-info {
    flex: 1;
}

.packing-info h4 {
    margin: 0 0 5px 0;
    color: #fff;
}

.packing-info p {
    margin: 0;
    font-size: 0.85em;
    color: #a0aec0;
}

.packing-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.packing-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.packing-btn.minus {
    background: #ef4444;
    color: white;
}

.packing-btn.plus {
    background: #10b981;
    color: white;
}

.packing-btn:hover {
    transform: scale(1.1);
}

.packing-count {
    font-size: 1.2em;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.packing-cost {
    font-size: 0.8em;
    color: #a0aec0;
    min-width: 60px;
    text-align: right;
}

.packing-summary {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.packing-summary h3 {
    margin: 0 0 15px 0;
    color: #4facfe;
}

.packing-summary p {
    margin: 5px 0;
}

.packing-buttons {
    display: flex;
    gap: 15px;
}

.packing-buttons button {
    flex: 1;
}

/* Family Screen */
.family-container {
    max-width: 500px;
    margin: 0 auto;
}

.family-description {
    text-align: center;
    color: #a0aec0;
    margin-bottom: 25px;
}

.family-member {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.family-icon {
    font-size: 2em;
    width: 50px;
    text-align: center;
}

.family-info {
    flex: 1;
}

.family-info label {
    display: block;
    font-size: 0.9em;
    color: #a0aec0;
    margin-bottom: 5px;
}

.family-info input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1em;
}

.dog-breed-section {
    border: 2px dashed rgba(79, 172, 254, 0.3);
}

.dog-breed-section.locked {
    opacity: 0.5;
    pointer-events: none;
}

.selected-breed {
    font-size: 0.85em;
    color: #4facfe;
    margin-top: 8px;
}

#save-family-btn {
    width: 100%;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Daily Challenges Screen */
.challenges-container {
    max-width: 500px;
    margin: 0 auto;
}

.challenge-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid rgba(79, 172, 254, 0.3);
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.challenge-header h3 {
    margin: 0;
    color: #4facfe;
}

.challenge-date {
    font-size: 0.85em;
    color: #a0aec0;
}

.challenge-content {
    margin-bottom: 20px;
}

.challenge-text {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.challenge-reward {
    color: #10b981;
    font-weight: bold;
}

.challenge-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.challenge-status.completed {
    background: rgba(16, 185, 129, 0.2);
}

.challenge-status.completed .status-icon {
    color: #10b981;
}

.status-icon {
    font-size: 1.5em;
}

.challenge-info {
    text-align: center;
    color: #a0aec0;
    margin-bottom: 20px;
}

.challenge-info p {
    margin: 5px 0;
}

.challenge-locked {
    text-align: center;
    padding: 40px;
    color: #a0aec0;
}

.challenge-locked .lock-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

/* Car Customization Screen */
.car-container {
    max-width: 600px;
    margin: 0 auto;
}

.car-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.car-tab {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    color: #a0aec0;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.car-tab:hover {
    background: rgba(255,255,255,0.15);
}

.car-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.car-tab-content {
    display: block;
}

.car-tab-content.hidden {
    display: none;
}

.car-preview {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.car-body {
    width: 200px;
    height: 80px;
    border-radius: 10px 10px 5px 5px;
    position: relative;
    background: #fff;
    transition: background 0.3s ease;
}

.car-roof {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 120px;
    height: 35px;
    background: inherit;
    border-radius: 20px 20px 0 0;
}

.car-windows {
    position: absolute;
    top: -25px;
    left: 50px;
    width: 100px;
    height: 25px;
    background: rgba(135, 206, 250, 0.7);
    border-radius: 15px 15px 0 0;
}

.car-accent {
    position: absolute;
    bottom: 15px;
    left: 10px;
    right: 10px;
    height: 8px;
    background: #333;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.car-wheels {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.wheel {
    width: 30px;
    height: 30px;
    background: #222;
    border-radius: 50%;
    border: 4px solid #444;
}

.license-plate-preview {
    background: #fff;
    border: 3px solid #333;
    border-radius: 5px;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.plate-state {
    font-size: 0.7em;
    color: #666;
    font-weight: bold;
}

.plate-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
    font-family: monospace;
    letter-spacing: 2px;
}

.car-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.car-option-section {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
}

.car-option-section h3 {
    margin: 0 0 15px 0;
    color: #4facfe;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.unlock-info {
    font-size: 0.75em;
    color: #a0aec0;
    font-weight: normal;
}

.color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.color-swatch:hover:not(.locked) {
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: #4facfe;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.color-swatch.locked {
    opacity: 0.3;
    cursor: not-allowed;
}

.color-swatch.locked::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
}

.plate-input-group {
    display: flex;
    gap: 10px;
}

.plate-input-group input {
    flex: 1;
    padding: 12px;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: monospace;
    letter-spacing: 2px;
    text-align: center;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.state-btn {
    padding: 8px 5px;
    font-size: 0.8em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
}

.state-btn:hover:not(.locked) {
    background: rgba(79, 172, 254, 0.2);
}

.state-btn.selected {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.3);
}

.state-btn.locked {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Car Type Selection */
.car-type-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.car-type-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
}

.car-type-item:hover:not(.locked) {
    background: rgba(79, 172, 254, 0.1);
}

.car-type-item.selected {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.15);
}

.car-type-item.locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.car-type-icon {
    font-size: 2em;
    width: 50px;
    text-align: center;
}

.car-type-info {
    flex: 1;
}

.car-type-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.car-type-bonus {
    font-size: 0.85em;
    color: #4facfe;
}

.car-type-item.locked .car-type-bonus {
    color: #666;
}

.car-type-unlock {
    font-size: 0.8em;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-type-item.locked .car-type-unlock {
    color: #ff6b6b;
}

@media (max-width: 768px) {
    #stats-panel {
        flex-direction: column;
    }
    
    #action-panel {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
    
    .badge-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Stereo Panel */
.stereo-panel {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    max-height: 350px;
    overflow-y: auto;
}

.stereo-panel.hidden {
    display: none;
}

.stereo-header {
    text-align: center;
    margin-bottom: 15px;
}

.stereo-header h3 {
    margin: 0;
    color: #4facfe;
}

.stereo-locked {
    text-align: center;
    padding: 20px;
    color: #a0aec0;
}

.stereo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stereo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stereo-btn:hover {
    background: rgba(79, 172, 254, 0.3);
}

.stereo-btn.stereo-play {
    width: 50px;
    height: 50px;
    font-size: 1.4em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stereo-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.stereo-volume input[type="range"] {
    width: 80px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.stereo-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #4facfe;
    border-radius: 50%;
    cursor: pointer;
}

.stereo-now-playing {
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.stereo-now-playing span:first-child {
    color: #a0aec0;
    margin-right: 8px;
}

#stereo-now-playing {
    color: #4facfe;
    font-weight: 600;
}

.stereo-pack {
    margin-bottom: 15px;
}

.stereo-pack h4 {
    margin: 0 0 8px 0;
    font-size: 0.95em;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stereo-pack.locked h4 {
    color: #666;
}

.stereo-songs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stereo-song {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stereo-song:hover {
    background: rgba(79, 172, 254, 0.2);
}

.stereo-song.active {
    background: rgba(79, 172, 254, 0.3);
    border-left: 3px solid #4facfe;
}

.stereo-song.playing .song-icon {
    color: #10b981;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.song-icon {
    font-size: 1.1em;
}

.song-title {
    flex: 1;
    font-size: 0.9em;
}

#stereo-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Next Reward Display */
.next-reward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

.next-label {
    color: #a0aec0;
}

.next-icon {
    font-size: 1.5em;
}

.next-name {
    font-weight: 600;
    color: #4facfe;
}

.next-level {
    color: #a0aec0;
    font-size: 0.9em;
}

/* Reward Roadmap */
.reward-roadmap {
    margin: 20px 0;
}

.reward-roadmap h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #4facfe;
}

.roadmap-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid #4a5568;
    transition: all 0.2s ease;
}

.roadmap-item.unlocked {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.roadmap-item.current {
    border-left-color: #4facfe;
    background: rgba(79, 172, 254, 0.15);
}

.roadmap-item.next {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.5); }
}

.roadmap-level {
    min-width: 50px;
    font-weight: 600;
    color: #a0aec0;
}

.roadmap-icon {
    font-size: 1.3em;
}

.roadmap-reward {
    flex: 1;
    color: #fff;
}

.roadmap-item.unlocked .roadmap-reward {
    color: #10b981;
}

.roadmap-status {
    font-size: 1.1em;
}
