/* Achievement Notification Styles */

.achievement-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    width: 350px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
    z-index: 2000;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.achievement-notification.show {
    right: 20px;
}

.achievement-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: pulse-achievement 1s ease-in-out infinite;
}

@keyframes pulse-achievement {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.achievement-content {
    flex: 1;
}

.achievement-content h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 14px;
    color: #ffd700;
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.achievement-name {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #fff;
    margin: 0 0 6px 0;
    font-weight: bold;
}

.achievement-desc {
    font-size: 11px;
    color: #ccc;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.achievement-reward {
    font-size: 10px;
    color: #6aaa64;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .achievement-notification {
        width: calc(100% - 40px);
        right: -100%;
        top: 80px;
    }

    .achievement-notification.show {
        right: 20px;
    }

    .achievement-icon {
        font-size: 36px;
    }

    .achievement-content h3 {
        font-size: 11px;
    }

    .achievement-name {
        font-size: 10px;
    }

    .achievement-desc {
        font-size: 9px;
    }

    .achievement-reward {
        font-size: 8px;
    }
}
