body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    overflow: hidden;
}

/* Contract Address Box Styles */
.contract-box {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #4ecdc4;
    border-radius: 10px;
    padding: 15px;
    z-index: 1002;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contract-box:hover {
    transform: scale(1.05);
    border-color: #f7b731;
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.3);
}

.contract-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #4ecdc4;
    margin-bottom: 8px;
    word-break: break-all;
    font-weight: bold;
}

.copy-hint {
    font-size: 10px;
    color: #666;
    text-align: center;
    opacity: 0.7;
}

.contract-box.copied {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.contract-box.copied .copy-hint {
    color: #00ff00;
    content: "Copied!";
}

.section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100vw;
    height: calc(100vw / 3);
    border: none;
    overflow: hidden;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin: 20px 0;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 20px;
    z-index: 1001;
}

#progressContainer {
    width: 80%;
    max-width: 800px;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    z-index: 1001;
}

#progressBar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #f7b731, #5f27cd);
    width: 0%;
    transition: width 0.1s ease;
}

.floating-text {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    z-index: 1000;
    animation: floatUp 1s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

#scoreDisplay {
    position: absolute;
    top: 10%;
    right: 20px;
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

#autoPlayButton {
    position: absolute;
    top: 80px;
    z-index: 1001;
    padding: 10px 20px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#autoPlayButton:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
