body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    cursor: url('jimbo.png') 16 16, pointer;
    font-family: Arial, sans-serif;
}

#container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.top-text {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: normal;
    font-family: inherit;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    pointer-events: auto;
    user-select: text;
    cursor: text;
}

.bottom-section {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contract-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: normal;
    font-family: inherit;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    pointer-events: auto;
    user-select: text;
    cursor: text;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .top-text {
        top: 80px;
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .bottom-section {
        bottom: 60px;
    }
    
    .contract-text {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .copy-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .top-text {
        top: 80px;
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .bottom-section {
        bottom: 50px;
    }
    
    .contract-text {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .copy-btn {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
}
