body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: 8px;
    animation: glow 1.5s infinite alternate;
}

p {
    font-size: 24px;
    margin-bottom: 20px;
    animation: fadeInUp 2s infinite alternate;
}

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #f7931a, 0 0 20px #f7931a, 0 0 30px #f7931a, 0 0 40px #f7931a, 0 0 50px #f7931a;
    }
    100% {
        text-shadow: 0 0 20px #f7931a, 0 0 30px #ffae42, 0 0 40px #ffae42, 0 0 50px #ffae42, 0 0 60px #ffae42;
    }
}

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

.button-container {
    margin-top: 30px;
}

.button {
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #f7931a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.button:hover {
    background-color: #ffae42;
    box-shadow: 0 0 15px #f7931a, 0 0 30px #ffae42;
}

.lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
}

.line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f7931a, transparent);
    animation: move 3s linear infinite;
}

.line:nth-child(1) {
    top: 20%;
    animation-duration: 3s;
}
.line:nth-child(2) {
    top: 40%;
    animation-duration: 4s;
}
.line:nth-child(3) {
    top: 60%;
    animation-duration: 5s;
}
.line:nth-child(4) {
    top: 80%;
    animation-duration: 6s;
}

@keyframes move {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
