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

body {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.number {
    font-size: 160px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #f5f5f5;
    letter-spacing: 12px;
    position: relative;
    display: inline-block;
}

.number span,
.coming-soon span {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.number span::after {
    content: attr(data-char);
    position: absolute;
    left: 4px;
    top: 4px;
    color: #d4c5b9;
    z-index: -1;
}

.number span:hover,
.coming-soon span:hover {
    transform: translateY(-15px);
}

.coming-soon {
    font-size: 48px;
    font-weight: 700;
    color: #6b6b6b;
    animation: bounce 1.5s ease-in-out infinite;
    letter-spacing: 6px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.accent-line {
    width: 80px;
    height: 3px;
    background-color: #d4c5b9;
    margin: 30px auto;
}
