* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    background-image: url('/background.png');
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 42px;
    margin-bottom: 8px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: #666;
}

.subtitle a {
    color: #0066ff;
    text-decoration: none;
}

.subtitle a:hover {
    text-decoration: underline;
}

/* Home Screen */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.experience-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-content {
    text-align: center;
    padding: 20px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
}

/* Experience Pages */
.experience {
    display: none;
}

.experience-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.back-button {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    margin-right: 15px;
    transition: all 0.2s ease;
}

.back-button:hover {
    background-color: #eee;
}

.experience-header h2 {
    font-size: 28px;
    font-weight: 700;
    flex-grow: 1;
    text-align: center;
}

/* Spend Experience Styles */
.money-counter {
    font-size: 20px;
    font-weight: 600;
    color: #2ecc71;
    position: absolute;
    right: 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.item-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.item-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 15px;
}

.item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.item-price {
    color: #666;
    margin-bottom: 15px;
}

.item-controls {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.item-count {
    flex-grow: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.item-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.item-button.sell {
    background-color: #ff6b6b;
    color: white;
}

.item-button.buy {
    background-color: #2ecc71;
    color: white;
}

.item-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Size Comparison Styles */
.size-container {
    position: relative;
    height: 600px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.size-scroll-area {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
}

.size-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.size-item-image {
    font-size: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.size-item-info {
    flex-grow: 1;
}

.size-item-name {
    font-weight: 600;
    font-size: 18px;
}

.size-item-measure {
    color: #666;
    font-size: 14px;
}

.size-indicator {
    position: sticky;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 auto;
    width: fit-content;
}

.size-label {
    font-weight: 600;
    padding: 8px 20px;
}

/* Circle Drawing Styles */
.circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#circle-canvas {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    cursor: crosshair;
}

.circle-score {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

#circle-reset-button {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#circle-reset-button:hover {
    background-color: #0055d4;
}

/* Password Game Styles */
.password-container {
    max-width: 600px;
    margin: 0 auto;
}

.password-rules {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rule {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f5f5f5;
}

.rule.passed {
    background-color: #e3ffe3;
    color: #2ecc71;
}

.rule.failed {
    background-color: #ffe3e3;
    color: #e74c3c;
}

.password-input-container {
    margin-bottom: 20px;
}

#password-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease;
}

#password-input:focus {
    border-color: #0066ff;
}

.password-feedback {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}

/* Deep Sea Experience Styles */
.deep-sea-container {
    position: relative;
    height: 600px;
    background-color: #003366;
    border-radius: 10px;
    overflow: hidden;
}

.depth-counter {
    font-size: 20px;
    font-weight: 600;
    color: white;
    position: absolute;
    right: 0;
}

.ocean {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.ocean-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 11000px;
    background: linear-gradient(to bottom, 
        #0077be 0%, 
        #005a8c 1000px, 
        #004470 2000px, 
        #003366 3000px, 
        #00264d 5000px, 
        #001a33 7000px, 
        #000d1a 9000px, 
        #000000 11000px);
    z-index: 1;
}

.depth-marker {
    position: absolute;
    left: 10px;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

#surface-marker {
    top: 10px;
}

.creatures-container {
    position: relative;
    width: 100%;
    height: 11000px;
    z-index: 2;
}

.creature {
    position: absolute;
    font-size: 30px;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease;
}

.creature:hover {
    transform: scale(1.2);
}

.creature-info {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    width: 200px;
    z-index: 4;
    display: none;
}

.depth-scale {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 10px 0;
    z-index: 3;
}

/* Speed Experience Styles */
.speed-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.score-counter {
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    right: 0;
}

.speed-question {
    text-align: center;
    margin-bottom: 30px;
}

#speed-object-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

#speed-object-emoji {
    font-size: 60px;
    margin-bottom: 20px;
}

.speed-slider-container {
    width: 80%;
    margin: 0 auto 30px;
}

.speed-slider {
    width: 100%;
    height: 15px;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    background: #eee;
    margin-bottom: 10px;
}

.speed-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0066ff;
    cursor: pointer;
}

.speed-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.speed-value {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

#speed-submit, #speed-next {
    display: block;
    margin: 0 auto;
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#speed-submit:hover, #speed-next:hover {
    background-color: #0055d4;
}

.speed-result {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    min-height: 50px;
}

/* Trolley Problem Styles */
.trolley-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.trolley-scenario {
    text-align: center;
    margin-bottom: 30px;
}

.scenario-number {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.scenario-text {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.scenario-image {
    font-size: 80px;
    margin-bottom: 30px;
}

.trolley-choices {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.trolley-choice {
    flex: 1;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 100px;
}

.trolley-choice:hover {
    background-color: #e9e9e9;
    border-color: #bbb;
}

.trolley-results {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    min-height: 50px;
}

/* Earth Sandwich Styles */
.earth-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.earth-instructions {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.earth-map {
    width: 100%;
    height: 400px;
    background-color: #e0f0ff;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400"><rect width="800" height="400" fill="%23e0f0ff"/><path d="M0,200 Q200,150 400,200 T800,200" fill="none" stroke="%23b3d9ff" stroke-width="2"/></svg>');
    background-size: cover;
    cursor: pointer;
}

.map-marker {
    position: absolute;
    font-size: 30px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.earth-info {
    text-align: center;
    margin-bottom: 20px;
    min-height: 60px;
}

#earth-reset {
    display: block;
    margin: 0 auto;
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#earth-reset:hover {
    background-color: #0055d4;
}

/* Rocks Experience Styles */
.rocks-container {
    display: flex;
    gap: 30px;
}

.rocks-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
}

.rock-item {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.rock-item:hover {
    background-color: #f5f5f5;
}

.rock-item.selected {
    background-color: #e6f2ff;
}

.rock-emoji {
    font-size: 40px;
    margin-bottom: 5px;
}

.rock-detail {
    flex: 2;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rock-detail-content {
    text-align: center;
}

#rock-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

#rock-emoji {
    font-size: 80px;
    margin-bottom: 20px;
}

#rock-description {
    line-height: 1.6;
    color: #666;
}

/* Progress Experience Styles */
.progress-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-category-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.progress-category {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.progress-category:hover {
    background-color: #e9e9e9;
}

.progress-category.selected {
    background-color: #0066ff;
    color: white;
}

.progress-timeline {
    position: relative;
    height: 400px;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%);
}

.timeline-points {
    position: relative;
    height: 100%;
}

.timeline-point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.point-year {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
}

.point-content {
    position: absolute;
    width: 200px;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    text-align: center;
}

.point-content.above {
    bottom: 30px;
}

.point-content.below {
    top: 30px;
}

.point-emoji {
    font-size: 24px;
    margin-bottom: 5px;
}

.point-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.point-description {
    font-size: 12px;
    color: #666;
}

/* Internet Hall of Fame Styles */
.internet-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.internet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.internet-item {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.internet-item:hover {
    background-color: #f5f5f5;
}

.internet-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.internet-name {
    font-weight: 600;
}

.internet-year {
    font-size: 12px;
    color: #666;
}

.internet-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#internet-item-name {
    margin-bottom: 10px;
}

#internet-item-year {
    color: #666;
    margin-bottom: 20px;
}

#internet-item-description {
    line-height: 1.6;
}

/* Life Stats Styles */
.life-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.life-input {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.life-input label {
    font-weight: 600;
}

#life-birthdate {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#life-calculate {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#life-calculate:hover {
    background-color: #0055d4;
}

.life-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.life-stat-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
}

/* Infinite Craft Styles */
.element-counter {
    font-size: 20px;
    font-weight: 600;
    color: #0066ff;
    position: absolute;
    right: 0;
}

.craft-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
}

.element-item {
    text-align: center;
    cursor: grab;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    user-select: none;
    background-color: #f9f9f9;
}

.element-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.element-item.discovered {
    background-color: #e6f2ff;
}

.element-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.element-name {
    font-weight: 500;
    font-size: 14px;
}

.crafting-area {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.crafting-slots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.craft-slot, .result-slot {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.result-slot {
    background-color: #e6f7ff;
}

.plus-sign, .equals-sign {
    font-size: 30px;
    font-weight: 600;
    color: #666;
}

.craft-message {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
    min-height: 50px;
}

.element-in-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.element-in-slot .element-emoji {
    font-size: 40px;
    margin-bottom: 5px;
}

.element-in-slot .element-name {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.craft-slot.active-drop {
    background-color: #e6f7ff;
    box-shadow: 0 0 0 2px #0066ff;
}

.craft-slot.has-element {
    background-color: #f0f0f0;
}

.result-new {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.clear-slots {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.clear-slots:hover {
    background-color: #e74c3c;
}

/* Navigation */
.main-nav {
    display: flex;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.nav-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    text-align: center;
}

.nav-item:hover {
    background-color: #f5f5f5;
}

.nav-item.active {
    background-color: #0066ff;
    color: white;
}

.user-info {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

#user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Tab Content */
.tab-content {
    display: none;
}

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

/* Chat Styles */
.chat-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 70vh;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.chat-input-container {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
}

#chat-input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
}

#chat-send {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

#chat-send:hover {
    background-color: #0055d4;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-content {
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 70%;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.message-username {
    font-weight: 600;
    margin-right: 10px;
}

.message-time {
    font-size: 12px;
    color: #666;
}

.message-text {
    word-break: break-word;
}

.message.own-message {
    flex-direction: row-reverse;
}

.message.own-message .message-avatar {
    margin-right: 0;
    margin-left: 10px;
}

.message.own-message .message-content {
    background-color: #e3f2fd;
}

/* Request Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.request-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#submit-request {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

#submit-request:hover {
    background-color: #0055d4;
}

/* Requests Tab */
.requests-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.requests-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.requests-section h3 {
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.request-list {
    max-height: 500px;
    overflow-y: auto;
}

.request-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.request-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.request-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.request-user {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.request-actions {
    display: flex;
    gap: 10px;
}

.request-action {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.action-consider {
    background-color: #f39c12;
    color: white;
}

.action-approve {
    background-color: #2ecc71;
    color: white;
}

.action-reject {
    background-color: #e74c3c;
    color: white;
}

.admin-only {
    display: none;
}

/* Add styles for the games banner */
.banner-container {
    text-align: center;
    margin-bottom: 30px;
}

.games-banner {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Asteroid Launcher Styles */
.asteroid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.asteroid-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.control-group label {
    font-weight: 600;
    width: 60px;
}

.control-group input[type="range"] {
    flex: 1;
}

#launch-asteroid {
    background-color: #ff5252;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

#launch-asteroid:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
}

.asteroid-visualization {
    position: relative;
    height: 400px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.earth-view {
    position: relative;
    width: 100%;
    height: 100%;
}

.earth {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
}

.asteroid {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    display: none;
}

.impact-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    display: none;
}

/* Paper Experience Styles */
.paper-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paper-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.tool-group, .color-group, .size-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.paper-tool {
    background-color: #f5f5f5;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.paper-tool.active {
    background-color: #0066ff;
    color: white;
}

#clear-paper {
    margin-left: auto;
    background-color: #ff5252;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#paper-canvas {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Lights Out Experience Styles */
.lights-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lights-info {
    text-align: center;
    max-width: 600px;
}

.lights-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-weight: 600;
}

#lights-reset {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.lights-grid {
    display: grid;
    grid-template-columns: repeat(5, 80px);
    grid-template-rows: repeat(5, 80px);
    gap: 10px;
    margin: 20px 0;
}

.light-cell {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.light-on {
    background-color: #ffe066;
    box-shadow: 0 0 15px rgba(255, 224, 102, 0.8);
}

.light-off {
    background-color: #333;
}

.lights-message {
    font-size: 24px;
    font-weight: 600;
    color: #2ecc71;
    min-height: 40px;
    text-align: center;
}

/* Incremental Game Experience Styles */
.clicker-container {
    display: flex;
    gap: 20px;
}

.clicker-main {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clicker-button-container {
    text-align: center;
}

#clicker-button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #0066ff;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

#clicker-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

#clicker-button:active {
    transform: scale(0.95);
}

.clicker-count, .clicker-rate {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
}

.clicker-upgrades {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 350px;
}

.clicker-upgrades h3 {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.upgrade-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.upgrade-item:hover {
    background-color: #f5f5f5;
}

.upgrade-icon {
    font-size: 30px;
    margin-right: 15px;
}

.upgrade-info {
    flex: 1;
}

.upgrade-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.upgrade-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.upgrade-cost {
    font-size: 14px;
    color: #0066ff;
    font-weight: 500;
}

.upgrade-button {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    align-self: center;
}

.upgrade-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Print Money Experience Styles */
.print-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.print-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.print-controls .control-group {
    flex: 1;
    min-width: 300px;
}

#print-amount {
    width: 150px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#print-denomination {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#start-printing {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.print-visualization {
    position: relative;
    min-height: 400px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.money-counter {
    font-size: 24px;
    font-weight: 600;
    color: #2ecc71;
    margin-bottom: 20px;
}

.money-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin-bottom: 20px;
}

.bill {
    width: 50px;
    height: 25px;
    background-color: #e5ffe5;
    border: 1px solid #2ecc71;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #2ecc71;
}

.print-stats {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

/* Remove game request button */
.game-request-button {
    display: none;
}

/* Remove admin-only tab */
.admin-only {
    display: none !important;
}