body {
    background: linear-gradient(180deg, #060d1f 0%, #162746 100%);
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 50px 20px 100px;
    position: relative;
    min-height: 100vh;
}

:root {
    --text-color: #FF7A00;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.neon-text {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(90deg, #FFD1A3 0%, #FF7A00 50%, #FFD1A3 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.subtitle {
    color: var(--text-color);
    margin-top: 20px;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.neon-button {
    display: inline-block;
    padding: 15px 30px;
    color: var(--text-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: 2px solid #FF7A00;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1000;
    background-color: #0c0c18;
}

.neon-button:hover {
    color: white;
    background: #FF7A00;
    box-shadow:
        0 0 5px #FF7A00,
        0 0 25px #FF7A00,
        0 0 50px #FF7A00,
        0 0 100px #FF7A00;
}

.paragraph {
    color: var(--text-color);
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 15px;
}

.paragraph img {
    width: 87.5px;
    height: 87.5px;
    flex-shrink: 0;
}
