.victory-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden;
}

.void-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a1a1a 0%, #000 70%);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.victory-content {
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 40px;
    border: 2px solid #ffd700;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.glitch-text {
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    margin-bottom: 0.5rem;
    letter-spacing: 5px;
    position: relative;
}

.sub-header {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-left: 4px solid #ffd700;
}

.stat-label {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.seed-display {
    margin-bottom: 2rem;
    padding: 10px;
    background: #111;
    border: 1px dashed #444;
    cursor: pointer;
    transition: all 0.2s;
}

.seed-display:hover {
    border-color: #ffd700;
    background: #1a1a1a;
}

.seed-id {
    color: #ffd700;
    font-family: monospace;
    font-size: 1.2rem;
}

.copy-hint {
    font-size: 0.7rem;
    color: #666;
    margin-left: 10px;
}

.upsell-box {
    margin-bottom: 3rem;
    padding: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.upsell-box p {
    margin: 5px 0;
    font-size: 1rem;
}

.highlight {
    color: #ffd700;
    font-weight: 700;
}

.victory-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.victory-btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.victory-btn:hover {
    background: #fff;
    color: #000;
}

.victory-btn.wishlist {
    border-color: #ffd700;
    color: #ffd700;
}

.victory-btn.wishlist:hover {
    background: #ffd700;
    color: #000;
}
