* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.hidden {
    display: none !important;
}

body {
    font-family: 'Tahoma', 'MS Sans Serif', 'Microsoft Sans Serif', sans-serif;
    background: #4A4A4A;
    overflow: hidden;
    height: 100vh;
    user-select: none;
    position: relative;
}

.blockchain-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A4A4A 0%, #6B6B6B 25%, #4A4A4A 50%, #6B6B6B 75%, #4A4A4A 100%);
    background-size: 100px 100px;
    animation: none;
    z-index: 0;
}


.game-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: linear-gradient(180deg, #4A4A4A 0%, #3A3A3A 100%);
    border-bottom: 2px solid #1E3A5F;
    box-shadow: none;
    z-index: 1000;
}

.wallet-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pixel-btn {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    padding: 4px 12px;
    border: 1px solid #2D5A27;
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    color: #000000;
    cursor: pointer;
    transition: none;
    box-shadow: none;
    text-transform: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 3px;
}

#gameContainer > div.top-bar > div.profile-section > a {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
}

#gameContainer > div.top-bar > div.profile-section > a .pixel-icon {
    color: #FFFFFF !important;
}

.pixel-btn:hover {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%);
    border-color: #2D5A27;
}

.pixel-btn:active {
    background: linear-gradient(180deg, #6B8E6B 0%, #5A7A5A 50%, #4A6A4A 51%, #3A5A3A 100%);
    border-color: #1D4A17;
}

.pixel-icon {
    font-size: 12px;
    filter: none;
    color: #000000;
    font-weight: normal;
}

.wallet-address {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    color: #000000;
    padding: 4px 8px;
    background: #FFFFFF;
    border: 1px solid #7A9AC8;
    border-radius: 3px;
}

.wallet-address.hidden {
    display: none;
}

.blockchain-stats {
    display: flex;
    gap: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    color: #FFFFFF;
    text-transform: none;
    font-weight: normal;
}

.stat-value {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: none;
}

.coin-display {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #ECE9D8;
    border: 2px solid #000000;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
    box-shadow: none;
}

.coin-wrapper,
.nft-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.coin-label {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    color: #000000;
    font-weight: normal;
}

#coinCount,
#nftCount {
    color: #000000;
    font-size: 16px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
    text-shadow: none;
    animation: none;
}


.main-game {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
}

.shop-toggle-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 100;
    font-size: 11px;
    padding: 4px 12px;
    animation: none;
}


.cube-container {
    position: relative;
    width: 400px;
    height: 400px;
    cursor: pointer;
    filter: none;
    transition: none;
}

.cube-container:hover {
    filter: none;
}

.cube-container canvas {
    display: block;
}



.tool-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 136, 0, 0.8));
}


.shop-panel {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 350px;
    max-height: calc(100vh - 80px);
    background: #ECE9D8;
    border: 2px solid #000000;
    padding: 8px;
    overflow-y: auto;
    box-shadow: none;
    z-index: 99;
}

.shop-panel h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-shadow: none;
    border-bottom: 1px solid #000000;
    padding-bottom: 4px;
    animation: none;
}


.current-tool {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 8px;
    margin-bottom: 12px;
    text-align: center;
    box-shadow: none;
}

.current-tool p {
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    margin-bottom: 4px;
    text-transform: none;
    font-weight: normal;
}

.current-tool h3 {
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 12px;
    margin-bottom: 6px;
    text-shadow: none;
    font-weight: bold;
}

.tool-stats {
    color: #000000 !important;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif !important;
    font-size: 10px !important;
    font-weight: normal !important;
}

.blockchain-info {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 6px;
    margin-bottom: 12px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 10px;
    color: #000000;
}

.info-line:last-child {
    margin-bottom: 0;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-item {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: none;
    position: relative;
    box-shadow: none;
}

.tool-item:hover {
    background: #E5F3FF;
    border-color: #003C74;
    transform: none;
    box-shadow: none;
}

.tool-item.locked {
    opacity: 0.6;
    filter: grayscale(1);
}

.tool-item.unlocked {
    opacity: 1;
    border-color: #000000;
    box-shadow: none;
}

.tool-item.equipped {
    border-color: #003C74;
    background: #E5F3FF;
    box-shadow: none;
    animation: none;
}


.tool-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none;
    image-rendering: auto;
}

.tool-item.equipped .tool-icon {
    filter: none;
    animation: none;
}


.tool-info {
    flex: 1;
}

.tool-info h4 {
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    margin-bottom: 2px;
    text-shadow: none;
    font-weight: bold;
}

.tool-description {
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 10px;
    margin-bottom: 2px;
}

.tool-cost {
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 10px;
    font-weight: bold;
}

.buy-btn {
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    color: #000000;
    border: 1px solid #2D5A27;
    padding: 4px 8px;
    cursor: pointer;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 10px;
    font-weight: normal;
    transition: none;
    text-transform: none;
    box-shadow: none;
    white-space: nowrap;
    border-radius: 3px;
}

.buy-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%);
    border-color: #2D5A27;
    transform: none;
    box-shadow: none;
}

.buy-btn:active:not(:disabled) {
    background: linear-gradient(180deg, #6B8E6B 0%, #5A7A5A 50%, #4A6A4A 51%, #3A5A3A 100%);
    border-color: #1D4A17;
    transform: none;
    box-shadow: none;
}

.buy-btn:disabled {
    background: #ECE9D8;
    border-color: #7A9AC8;
    color: #7A9AC8;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.buy-btn.equipped-btn {
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    color: #000000;
    border-color: #2D5A27;
    box-shadow: none;
}


.coin-popup {
    position: absolute;
    color: #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    animation: coinFloat 1s ease-out forwards;
    text-shadow: none;
    z-index: 1000;
}

@keyframes coinFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) scale(1.8);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #ECE9D8;
    border: 1px solid #000000;
}

::-webkit-scrollbar-thumb {
    background: #E5F3FF;
    border: 1px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #BDE1F7;
    border-color: #003C74;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4A4A4A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.auth-modal-content {
    background: #ECE9D8;
    border: 2px solid #000000;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: none;
}

.auth-modal-content h2 {
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    text-shadow: none;
    font-weight: bold;
}

.auth-modal-content h3 {
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
    font-size: 12px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-input {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 11px;
    padding: 6px;
    border: 1px solid #000000;
    background: #FFFFFF;
    color: #000000;
    outline: none;
    transition: none;
}

.auth-input::placeholder {
    color: #666666;
}

.auth-input:focus {
    border-color: #003C74;
    box-shadow: none;
}

.seedphrase-input {
    resize: none;
    line-height: 1.4;
}

.auth-btn {
    margin-top: 10px;
}

.secondary-btn {
    background: #ECE9D8;
    border-color: #7A9AC8;
    color: #000000;
    box-shadow: none;
}

.secondary-btn:hover {
    background: #E5F3FF;
    border-color: #003C74;
    color: #000000;
    box-shadow: none;
}

.copy-btn {
    font-size: 10px;
    padding: 6px 12px;
    min-width: 120px;
}

.copy-btn:hover {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%) !important;
    border-color: #2D5A27 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.auth-message {
    padding: 8px;
    border: 1px solid;
    text-align: center;
    font-size: 10px;
    margin-top: 10px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.auth-message.success {
    background: #E8F5E8;
    border-color: #008000;
    color: #008000;
}

.auth-message.error {
    background: #FFE6E6;
    border-color: #FF0000;
    color: #FF0000;
}

.warning-text {
    color: #000000;
    text-align: center;
    font-size: 10px;
    line-height: 1.4;
    padding: 6px;
    background: #FFF3CD;
    border: 1px solid #FFD700;
    margin: 10px 0;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.info-text {
    color: #000000;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.seedphrase-display {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 12px;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 10px;
    color: #000000;
    text-align: center;
    line-height: 1.4;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.profile-section {
    position: relative;
}

.profile-btn {
    font-size: 11px;
}

.profile-panel {
    position: fixed;
    top: 60px;
    left: 20px;
    background: #ECE9D8;
    border: 2px solid #000000;
    padding: 12px;
    width: 280px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: none;
    z-index: 1001;
}

.profile-stats {
    margin-bottom: 20px;
}

.profile-stats h3 {
    color: #000000;
    font-size: 12px;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: none;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 10px;
    color: #000000;
    border-bottom: 1px solid #000000;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

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

.stat-line span:first-child {
    color: #000000;
}

.stat-line span:last-child {
    color: #000000;
    font-weight: bold;
}

.withdraw-btn {
    width: 100%;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    border-color: #2D5A27;
    color: #000000;
    box-shadow: none;
}

.withdraw-btn:hover {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%);
    border-color: #2D5A27;
    box-shadow: none;
}

.withdrawal-history {
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 8px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #000000 #ECE9D8;
}

.withdrawal-history::-webkit-scrollbar {
    width: 6px;
}

.withdrawal-history::-webkit-scrollbar-track {
    background: #001111;
    border-radius: 3px;
}

.withdrawal-history::-webkit-scrollbar-thumb {
    background: #004444;
    border-radius: 3px;
}

.withdrawal-history::-webkit-scrollbar-thumb:hover {
    background: #006666;
}

.withdrawal-history h4 {
    color: #000000;
    font-size: 11px;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: none;
    border-bottom: 1px solid #000000;
    padding-bottom: 4px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
}

.withdrawal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.no-withdrawals {
    text-align: center;
    color: #666666;
    font-size: 10px;
    padding: 10px;
    font-style: italic;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.withdrawal-item {
    background: #ECE9D8;
    border: 1px solid #000000;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: none;
    animation: withdrawalSlide 0.3s ease-out;
}

@keyframes withdrawalSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.withdrawal-item:hover {
    background: #E5F3FF;
    border-color: #003C74;
}

.withdrawal-item.completed {
    border-color: #008000;
}

.withdrawal-item.failed {
    border-color: #FF0000;
}

.withdrawal-item.sent {
    border-color: #FFD700;
}

.withdrawal-amount {
    color: #000000;
    font-size: 10px;
    font-weight: bold;
    text-shadow: none;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.withdrawal-date {
    color: #666666;
    font-size: 9px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.withdrawal-status {
    font-size: 9px;
    padding: 2px 4px;
    border: 1px solid;
    display: inline-block;
    text-transform: none;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.withdrawal-status.completed {
    color: #008000;
    border-color: #008000;
    background: #E8F5E8;
}

.withdrawal-status.failed {
    color: #FF0000;
    border-color: #FF0000;
    background: #FFE6E6;
}

.withdrawal-status.sent {
    color: #CC8800;
    border-color: #FFD700;
    background: #FFF8DC;
}

.withdrawal-status.pending {
    color: #0066CC;
    border-color: #0066CC;
    background: #E6F3FF;
}

.withdrawal-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.solscan-btn {
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 9px;
    padding: 4px 8px;
    border: 1px solid #2D5A27;
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    color: #000000;
    cursor: pointer;
    transition: none;
    text-decoration: none;
    display: inline-block;
    box-shadow: none;
    white-space: nowrap;
}

.solscan-btn:hover {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%);
    border-color: #2D5A27;
    transform: none;
    box-shadow: none;
}

.solscan-btn:active {
    transform: none;
    box-shadow: none;
}

.solscan-btn::before {
    content: '🔗 ';
}

.withdrawal-wallet {
    color: #000000;
    font-size: 8px;
    word-break: break-all;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.refresh-btn {
    background: linear-gradient(180deg, #8FBC8F 0%, #6B8E6B 50%, #5A7A5A 51%, #4A6A4A 100%);
    border: 1px solid #2D5A27;
    color: #000000;
    cursor: pointer;
    transition: none;
    min-width: 20px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-size: 9px;
}

.refresh-btn:hover {
    background: linear-gradient(180deg, #9FCC9F 0%, #7B9E7B 50%, #6A8A6A 51%, #5A7A5A 100%);
    border-color: #2D5A27;
    transform: none;
}

.refresh-btn:active {
    transform: none;
}

/* DEBUG: New styles for seed phrase auth and wallet display */
.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #000000;
    font-size: 10px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000000;
}

.divider span {
    padding: 0 12px;
    color: #000000;
}

.wallet-info-display {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 8px;
    margin: 10px 0;
}

.wallet-info-display p {
    color: #000000;
    font-size: 10px;
    margin-bottom: 6px;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.wallet-info-display .wallet-address,
.wallet-info-display .private-key {
    background: #ECE9D8;
    border: 1px solid #000000;
    padding: 6px;
    font-size: 8px;
    color: #000000;
    word-break: break-all;
    margin-bottom: 8px;
    user-select: all;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.wallet-info-section {
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 8px;
    margin-bottom: 12px;
}

.wallet-info-section h4 {
    color: #000000;
    font-size: 11px;
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
}

.wallet-addr-short {
    font-size: 7px !important;
    word-break: break-all;
}

.private-key-display {
    background: #FFE6E6;
    border: 1px solid #FF0000;
    padding: 6px;
    font-size: 7px;
    color: #FF0000;
    word-break: break-all;
    user-select: all;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.claim-history {
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px solid #000000;
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.claim-history h4 {
    color: #000000;
    font-size: 11px;
    text-shadow: none;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
    font-weight: bold;
}

.seedphrase-input {
    min-height: 60px;
    resize: vertical;
    font-size: 10px !important;
    line-height: 1.4;
}

.info-text {
    color: #000000;
    font-size: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}

.copy-btn {
    font-size: 10px !important;
    padding: 6px 10px !important;
}

/* Fart Icons Decoration */
.fart-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    z-index: 10001;
}

.fart-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.fart-icon-2 {
    top: 15%;
    right: 8%;
    animation-delay: 0.5s;
}

.fart-icon-3 {
    top: 60%;
    left: 3%;
    animation-delay: 1s;
}

.fart-icon-4 {
    top: 70%;
    right: 5%;
    animation-delay: 1.5s;
}

.fart-icon-5 {
    top: 30%;
    left: 10%;
    animation-delay: 2s;
}

.fart-icon-6 {
    top: 40%;
    right: 12%;
    animation-delay: 2.5s;
}

.fart-icon-7 {
    top: 80%;
    left: 8%;
    animation-delay: 0.3s;
}

.fart-icon-8 {
    top: 5%;
    right: 15%;
    animation-delay: 0.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.9;
    }
}

/* DEBUG: User message highlight */
.user-message {
    background: #E5F3FF;
    border-color: #0A246A;
}

.user-message .chat-wallet {
    color: #008000;
    font-weight: bold;
}
