.hero-bg {
    background-image: url('https://filetx.3633yx.com/240625-e340585cfafb486a8902ee384890b050.jpg')
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%)
}

.code-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shine 3s infinite
}

@keyframes shine {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.code-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6)
}

.code-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1
}

.code-reward {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.code-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1
}

.code-copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05)
}

.code-copy-btn.copied {
    background: #4CAF50
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px
}

@media (max-width: 768px) {
    .code-text {
        font-size: 1.25rem;
        letter-spacing: 2px
    }

    .code-card {
        padding: 1.5rem
    }

    .code-copy-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem
    }
}