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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 20px;
    gap: 20px;
    position: relative;
}

/* Token info header (top center) */
.token-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    animation: slideInTop 0.6s ease;
    min-width: 400px;
    text-align: center;
}

@keyframes slideInTop {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.token-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.token-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.token-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.token-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.token-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-ca {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    font-weight: bold;
}

.token-ca:hover {
    color: #FFD700;
    transform: scale(1.05);
}

/* Main layout wrapper */
.main-layout {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
}

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

/* Current wallet display */
.current-wallet {
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.current-wallet h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wallet-address {
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    word-break: break-all;
    max-width: 800px;
    animation: pulse 2s infinite;
}

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

/* Wheel container */
.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wheel-wrapper {
    position: relative;
}

.pointer {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 60px solid #FFD700;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: white;
}

.spin-button {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.spin-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(255,215,0,0.6);
}

.spin-button:disabled {
    background: linear-gradient(135deg, #999, #666);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Result display */
.result-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 20;
}

.result-display.show {
    display: block;
    animation: bounceIn 0.8s ease;
}

.result-text {
    font-size: 5rem;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes bounceIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Airdrop winners sidebar (left) */
.airdrop-sidebar {
    width: 350px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    position: fixed;
    left: 20px;
    top: 20px;
}

.airdrop-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.airdrop-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - 200px);
    min-height: 0;
    padding-right: 10px;
}

.airdrop-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    animation: slideInLeft 0.5s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 80px;
}

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

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

.airdrop-item.processing {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.3), rgba(255, 215, 0, 0.3));
    border-color: #ffff00;
}

.airdrop-item.completed {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3), rgba(50, 205, 50, 0.3));
    border-color: #00ff00;
}

.airdrop-amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.airdrop-wallet {
    color: rgba(255, 255, 255, 0.9);
    font-family: monospace;
    font-size: 0.85rem;
}

.airdrop-status {
    margin-top: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Queue sidebar (right) */
.queue-sidebar {
    width: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 40px);
    position: fixed;
    right: 20px;
    top: 20px;
}

.queue-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.queue-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.queue-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    word-break: break-all;
    animation: slideInRight 0.3s ease;
    transition: all 0.3s ease;
}

.queue-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

.queue-item.processing {
    background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,165,0,0.3));
    border: 2px solid #FFD700;
    animation: pulse 2s infinite;
}

.queue-item.next-to-process {
    background: linear-gradient(135deg, rgba(0,255,0,0.2), rgba(0,200,0,0.2));
    border: 2px solid #00ff00;
    animation: glow 2s infinite alternate;
}

.queue-item-enter {
    transform: translateX(100%) scale(0.8);
    opacity: 0;
}

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

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(0,255,0,0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(0,255,0,0.8), 0 0 30px rgba(0,255,0,0.4);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 10px;
    }
    
    .container {
        max-width: 100%;
        padding: 10px;
    }
    
    .lottery-wheel {
        width: 250px;
        height: 250px;
        margin: 20px auto;
    }
    
    .token-info {
        flex-direction: column;
        text-align: center;
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .token-image {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .token-name {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .token-symbol {
        font-size: 1rem;
        margin: 5px 0;
    }
    
    .token-ca-display {
        flex-direction: column;
        gap: 10px;
        margin: 10px 0;
    }
    
    .token-ca-display span {
        font-size: 12px;
        word-break: break-all;
    }
    
    .copy-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pump-link {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .queue-list {
        max-height: 200px;
        font-size: 12px;
    }
    
    .queue-item {
        padding: 8px;
        margin: 5px 0;
    }
    
    .queue-wallet {
        font-size: 11px;
    }
    
    .queue-amount {
        font-size: 11px;
    }
    
    .result-display {
        font-size: 16px;
        padding: 15px;
        margin: 10px 0;
    }
    
    .result-text {
        font-size: 18px;
    }
    
    .recent-buys-section {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        max-height: 300px;
        margin-top: 20px;
    }
    
    .recent-buys-list {
        max-height: 200px;
    }
    
    .recent-buy-item {
        padding: 8px;
        margin: 5px 0;
        font-size: 12px;
    }
    
    .buy-wallet {
        font-size: 11px;
    }
    
    .buy-amount {
        font-size: 11px;
    }
    
    .buy-time {
        font-size: 10px;
    }
    
    .buy-source {
        font-size: 10px;
    }
    
    .buy-result {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .lottery-wheel {
        width: 200px;
        height: 200px;
    }
    
    .token-ca-display span {
        font-size: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 10px;
        padding: 0;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .step {
        margin: 15px 0;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .token-ca-display {
        flex-direction: column;
        gap: 8px;
    }
    
    .token-ca-display span {
        font-size: 9px;
        word-break: break-all;
    }
    
    .copy-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .pump-link {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .security-notice {
        font-size: 12px;
        padding: 15px;
    }
    
    .security-notice h4 {
        font-size: 1rem;
    }
    
    .start-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Scrollbar styling */
.queue-list::-webkit-scrollbar,
.airdrop-list::-webkit-scrollbar {
    width: 8px;
}

.queue-list::-webkit-scrollbar-track,
.airdrop-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.queue-list::-webkit-scrollbar-thumb,
.airdrop-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.queue-list::-webkit-scrollbar-thumb:hover,
.airdrop-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes celebrate {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        filter: hue-rotate(90deg) brightness(1.2);
    }
    50% {
        filter: hue-rotate(180deg) brightness(1.3);
    }
    75% {
        filter: hue-rotate(270deg) brightness(1.2);
    }
}

/* Buy tier badges */
.tier-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

/* Instructions Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideInModal 0.4s ease;
    pointer-events: auto;
    cursor: default;
    position: relative;
    margin: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-width: 98%;
        margin: 5px;
        max-height: 98vh;
        border-radius: 15px;
    }
}

@keyframes slideInModal {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

.modal-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

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

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.instructions {
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.step-number {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.token-info {
    margin-top: 15px;
}

.token-ca-display {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

.token-ca-display strong {
    color: #ffd700;
}

.token-ca-display span {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.copy-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.pump-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.2s ease;
    text-align: center;
    width: 100%;
}

.pump-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.security-notice {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    text-align: left;
}

.security-notice h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-notice p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.security-notice p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #ffd700;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.start-button {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
}

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

/* Recent Buys Section */
.recent-buys-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    max-height: 50vh;
    transition: max-height 0.3s ease;
}

.recent-buys-section.collapsed {
    max-height: 60px;
}

.recent-buys-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.recent-buys-header:hover {
    background: rgba(0, 0, 0, 0.7);
}

.recent-buys-header h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-icon {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.recent-buys-section.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.recent-buys-list {
    max-height: 40vh;
    overflow-y: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.recent-buy-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    animation: slideInUp 0.3s ease;
}

.recent-buy-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.recent-buy-item.fake {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.recent-buy-item.fake:hover {
    background: rgba(255, 107, 107, 0.2);
}

.recent-buy-item.winner {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.recent-buy-item.winner:hover {
    background: rgba(78, 205, 196, 0.2);
}

.buy-info {
    flex: 1;
}

.buy-wallet {
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.buy-amount {
    color: #4ecdc4;
    font-size: 0.8rem;
    font-weight: bold;
}

.buy-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.buy-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.buy-source {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.buy-source.api {
    background: rgba(78, 205, 196, 0.3);
    color: #4ecdc4;
}

.buy-source.fake {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.buy-source.cached_api {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.buy-result {
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

.buy-result.won {
    background: rgba(78, 205, 196, 0.3);
    color: #4ecdc4;
}

.buy-result.lost {
    background: rgba(108, 117, 125, 0.3);
    color: #6c757d;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust main content to account for recent buys section */
.container {
    padding-bottom: 60px; /* Space for collapsed recent buys */
}

.recent-buys-section:not(.collapsed) + .container {
    padding-bottom: 0;
}