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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1e3a8a 100%);
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.game-title h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #ffd93d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.subtitle {
    font-size: 1rem;
    color: #4ecdc4;
    opacity: 0.8;
    margin-top: 5px;
    font-style: italic;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.currency-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 15px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.currency-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
}

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

.currency-icon {
    font-size: 2rem;
    animation: spin 2s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.currency-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.game-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.cog-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cog-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.main-cog {
    font-size: 120px;
    color: #4ecdc4;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.5));
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.main-cog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.main-cog:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.8));
}

.main-cog.spinning {
    animation: spin 2s linear infinite;
}

.additional-cogs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.additional-cog {
    position: absolute;
    font-size: 60px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.click-instruction {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #4ecdc4;
    text-align: center;
    opacity: 0.8;
}

.upgrades-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 500px;
    overflow-y: auto;
}

.upgrades-panel h2 {
    margin-bottom: 15px;
    color: #4ecdc4;
    font-size: 1.4rem;
}

.upgrade-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.upgrade-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.upgrade-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.upgrade-item:hover::before {
    left: 100%;
}

.upgrade-item:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.upgrade-item:disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

.upgrade-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.5px;
}

.upgrade-description {
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.8;
    line-height: 1.3;
}

.upgrade-cost {
    font-weight: bold;
    color: #4ecdc4;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
}

.stats-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #ffd93d);
    animation: borderGlow 3s ease-in-out infinite;
}

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

.stats-panel h3 {
    margin-bottom: 20px;
    color: #4ecdc4;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
    letter-spacing: 0.5px;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
}

.stat:last-child {
    border-bottom: none;
}

.stat span:first-child {
    color: #e8e8e8;
    opacity: 0.9;
}

.stat span:last-child {
    color: #4ecdc4;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .game-main {
        grid-template-columns: 1fr;
    }
    
    .game-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .game-header h1 {
        font-size: 2rem;
    }
    
    #gameCanvas {
        width: 100%;
        height: auto;
    }
}

/* Scrollbar styling */
.upgrades-panel::-webkit-scrollbar {
    width: 8px;
}

.upgrades-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.upgrades-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.upgrades-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Achievements Panel */
.achievements-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.achievements-panel h3 {
    margin-bottom: 15px;
    color: #ffd93d;
    font-size: 1.3rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.achievement-item.earned {
    opacity: 1;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.achievement-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #ffd93d;
}

.achievement-item.earned .achievement-icon {
    color: #ffd93d;
}

.achievement-content {
    flex: 1;
}

.achievement-name {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ffd93d;
}

.achievement-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Achievement Notification */
.achievement-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd93d, #ffb347);
    color: #1a1a2e;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.achievement-notification.show {
    transform: translateX(0);
}

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

.achievement-notification-content i {
    font-size: 1.5rem;
    color: #1a1a2e;
}

.achievement-notification-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.achievement-notification-name {
    font-size: 1rem;
    font-weight: bold;
}

/* Particle System */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: visible;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 2s ease-out forwards;
    opacity: 1;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.8);
}

.particle.upgrade {
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    width: 10px;
    height: 10px;
    box-shadow: 0 0 15px rgba(255, 217, 61, 0.8);
}

.particle.click {
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    width: 6px;
    height: 6px;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.8);
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
        left: var(--final-x);
        top: var(--final-y);
    }
}

/* Prestige Button */
.prestige-button {
    background: linear-gradient(135deg, #ffd93d, #ffb347);
    color: #1a1a2e;
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Save Button */
.save-button {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.save-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

.save-button:active {
    transform: translateY(0);
}

.save-button i {
    margin-right: 8px;
}

/* Reset Button */
.reset-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.reset-button:active {
    transform: translateY(0);
}

.reset-button i {
    margin-right: 8px;
}

/* Save Indicator */
.save-indicator {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.save-indicator i {
    margin-right: 5px;
}

/* Reset Confirmation Dialog */
.reset-confirmation {
    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: 100000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reset-confirmation.show {
    opacity: 1;
}

.reset-confirmation-content {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 2px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.reset-confirmation.show .reset-confirmation-content {
    transform: scale(1);
}

.reset-confirmation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.reset-confirmation-header i {
    font-size: 2rem;
}

.reset-confirmation-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #e74c3c;
}

.reset-confirmation-message {
    color: white;
    margin-bottom: 25px;
    line-height: 1.5;
}

.reset-confirmation-message ul {
    margin: 15px 0;
    padding-left: 20px;
}

.reset-confirmation-message li {
    margin-bottom: 5px;
    color: #ecf0f1;
}

.reset-confirmation-message strong {
    color: #e74c3c;
    font-size: 1.1rem;
}

.reset-confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.confirm-reset-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.confirm-reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
}

.cancel-reset-button {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cancel-reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.5);
}

.confirm-reset-button i,
.cancel-reset-button i {
    margin-right: 8px;
}

/* Reset Notification */
.reset-notification {
    position: fixed;
    top: 180px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.reset-notification.show {
    transform: translateX(0);
}

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

.reset-notification-content i {
    font-size: 1.5rem;
    color: white;
}

.reset-notification-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.reset-notification-message {
    font-size: 0.8rem;
    opacity: 0.9;
}

.prestige-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.5);
}

.prestige-button:active {
    transform: translateY(0);
}

.prestige-button i {
    margin-right: 8px;
    animation: spin 3s linear infinite;
}

/* Event Active Indicator */
.event-active {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(255, 179, 71, 0.1));
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid rgba(255, 217, 61, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.event-active i {
    color: #ffd93d;
    font-size: 1.2rem;
}

/* Prestige Notification */
.prestige-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd93d, #ffb347);
    color: #1a1a2e;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.prestige-notification.show {
    transform: translateX(0);
}

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

.prestige-notification-content i {
    font-size: 1.5rem;
    color: #1a1a2e;
}

.prestige-notification-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.prestige-notification-name {
    font-size: 1rem;
    font-weight: bold;
}

/* Event Notification */
.event-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

/* Welcome Back Notification */
.welcome-back-notification {
    position: fixed;
    top: 140px;
    right: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.welcome-back-notification.show {
    transform: translateX(0);
}

.welcome-back-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-back-content i {
    font-size: 1.5rem;
    color: white;
}

.welcome-back-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.welcome-back-message {
    font-size: 0.8rem;
    opacity: 0.9;
}

.event-notification.show {
    transform: translateX(0);
}

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

.event-notification-content i {
    font-size: 1.5rem;
    color: white;
}

.event-notification-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.event-notification-message {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievement-notification,
    .prestige-notification,
    .event-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
} 