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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    color: #fff;
}

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

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

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header p {
    font-size: 1.2em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.game-info-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 1em;
    opacity: 0.8;
}

.score-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 1.1em;
    font-weight: bold;
}

.score-section span {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.game-info {
    text-align: center;
    margin-bottom: 30px;
}

.game-info h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.game-description {
    font-size: 1.1em;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.game-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #66bb6a;
    background: rgba(102, 187, 106, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(102, 187, 106, 0.3);
}

.release-date {
    font-size: 1em;
    opacity: 0.7;
}

.steam-link {
    background: linear-gradient(45deg, #1b2838, #2a475e);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid #66c0f4;
}

.steam-link:hover {
    background: linear-gradient(45deg, #2a475e, #417a9b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-color: #8ed1fc;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.screenshots img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.screenshots img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.guess-section {
    text-align: center;
    margin-bottom: 30px;
}

.guess-section h3 {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.range-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.range-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 20px 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.range-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.range-btn.selected {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.range-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.range-label {
    font-size: 1.1em;
    font-weight: bold;
}

.range-desc {
    font-size: 0.9em;
    opacity: 0.8;
}

.guess-section button, .result button, .game-over button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.guess-section button:hover, .result button:hover, .game-over button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.guess-section button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.result-content {
    text-align: center;
}

.result-content p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: white;
}

.result-content span {
    font-weight: bold;
    color: #ffd700;
}

.result-content #next-round {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.result-content #next-round:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.result-content .steam-link {
    display: inline-block;
    margin: 15px 0;
}

.game-over {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
}

.final-score-section {
    margin-bottom: 40px;
}

.final-score-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffd700;
}

.score-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.score-number {
    font-size: 4em;
    font-weight: bold;
    color: #66bb6a;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.score-total {
    font-size: 2em;
    color: rgba(255,255,255,0.8);
    font-weight: bold;
}

.performance-badge {
    font-size: 1.3em;
    padding: 15px 25px;
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    border-radius: 25px;
    color: white;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.results-summary {
    margin-bottom: 30px;
}

.results-summary h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffd700;
}

.game-results-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.game-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.result-icon {
    font-size: 1.5em;
    min-width: 30px;
    text-align: center;
}

.game-result-text {
    flex: 1;
    color: white;
}

.game-name {
    font-weight: bold;
    color: #ffd700;
}

.game-link {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.game-link:hover {
    color: #66c0f4;
    border-bottom-color: #66c0f4;
    text-decoration: none;
}

.result-details {
    font-size: 0.9em;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}

.share-section {
    margin-bottom: 30px;
}

.share-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.share-btn:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.share-feedback {
    margin-top: 10px;
    color: #66bb6a;
    font-weight: bold;
    font-size: 0.9em;
}

.share-feedback.show {
    animation: fadeInOut 2s ease-in-out;
}

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

.history-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.history-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

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

.modal-content {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.modal-header h2 {
    color: white;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
}

.history-content {
    color: white;
}

.about-content {
    color: white;
    line-height: 1.6;
}

.about-content h3 {
    margin: 20px 0 10px 0;
    color: #ffd700;
    font-size: 1.2em;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content ul {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

.about-content li {
    margin-bottom: 8px;
}

.about-content p {
    margin: 10px 0;
}

.about-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.history-entry {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.history-date {
    font-weight: bold;
}

.history-game {
    color: #ffd700;
}

.history-score {
    font-weight: bold;
    color: #66bb6a;
}

.no-history {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.7);
}

.play-previous-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 0.9em;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.play-previous-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.today-indicator {
    font-size: 0.9em;
    color: #66bb6a;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    padding: 5px 10px;
    background: rgba(102, 187, 106, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 187, 106, 0.3);
}

.unavailable-indicator {
    font-size: 0.9em;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-top: 10px;
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.history-game-details {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.history-game-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9em;
}

.history-game-icon {
    font-size: 1.2em;
    min-width: 25px;
}

.history-game-link {
    color: #ffd700;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}

.history-game-link:hover {
    color: #66c0f4;
    text-decoration: underline;
}

.history-game-stats {
    color: rgba(255,255,255,0.7);
    font-size: 0.85em;
    white-space: nowrap;
}

.completed-today {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.completed-today h2 {
    color: #66bb6a;
    margin-bottom: 20px;
}

.completed-today p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.next-game-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .score-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .game-content {
        padding: 20px;
    }
    
    .game-info h2 {
        font-size: 1.8em;
    }
    
    .game-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .screenshots {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .screenshots img {
        height: 150px;
    }
    
    .range-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .range-btn {
        padding: 15px;
    }
}

/* Image Viewer Modal */
.image-viewer-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#viewer-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.image-viewer-content .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.image-viewer-content .close-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.image-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .image-viewer-content .close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .image-counter {
        bottom: 10px;
    }
    
    .footer {
        margin-top: 40px;
        padding: 30px 15px;
    }
    
    .footer-content p {
        font-size: 1em;
    }
    
    .codecks-link {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1em;
    margin-bottom: 15px;
}

.codecks-link {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.1);
}

.codecks-link:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.legal-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-link {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ffd700;
}

.legal-separator {
    color: rgba(255,255,255,0.4);
}

.legal-text {
    color: rgba(255,255,255,0.6);
}

.privacy-content {
    color: white;
    line-height: 1.6;
}

.privacy-content h3 {
    margin: 20px 0 10px 0;
    color: #ffd700;
    font-size: 1.2em;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content ul {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content p {
    margin: 10px 0;
}

.privacy-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Previous Games Modal */
.archive-intro {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
}

.archive-days {
    max-height: 50vh;
    overflow-y: auto;
    padding: 5px;
}

.archive-day-entry {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.day-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.day-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.day-date {
    font-weight: 600;
    color: #ffd700;
    min-width: 90px;
}

.day-number {
    color: #66c0f4;
    font-size: 0.9em;
}

.day-status-area {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-current {
    color: #66bb6a;
    font-weight: 500;
    font-size: 0.9em;
}

.status-completed {
    color: #66bb6a;
    font-weight: 500;
    font-size: 0.9em;
}

.status-unplayed {
    color: rgba(255,255,255,0.5);
    font-size: 0.9em;
}

.expand-btn {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-width: 20px;
}

.expand-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.play-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.play-btn:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.day-games {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    background: rgba(255,255,255,0.05);
}

.archive-game-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.game-icon {
    font-size: 1.1em;
    min-width: 22px;
}

.archive-game-item .game-link {
    color: #ffd700;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
    border-bottom: none;
}

.archive-game-item .game-link:hover {
    color: #66c0f4;
    border-bottom: none;
}

.game-stats {
    color: rgba(255,255,255,0.6);
    font-size: 0.85em;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 768px) {
    .day-summary {
        padding: 10px 12px;
    }
    
    .day-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .day-date {
        min-width: auto;
    }
    
    .archive-game-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }
    
    .game-stats {
        align-self: flex-end;
    }
}

/* Display elements - not clickable buttons */
.display-badge {
    font-size: 1.1em;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: white;
    font-weight: bold;
    display: inline-block;
    backdrop-filter: blur(10px);
    cursor: default;
}

.display-badge.score {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.3), rgba(76, 175, 80, 0.3));
    border-color: rgba(102, 187, 106, 0.4);
    color: #66bb6a;
}