* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.8) 0%, rgba(124, 58, 237, 0.8) 50%, rgba(30, 27, 75, 0.8) 100%), url('https://imgur.com/SxsSQh0.png') center/cover no-repeat;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(2.7px);
    z-index: -1;
}


.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #c77dff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.hero p:last-of-type {
    font-weight: bold;
    font-size: 1.5rem;
    color: #c77dff;
    animation: pulse 2s infinite;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
}


footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    text-align: center;
    color: #b0b0b0;
}

footer p {
    margin: 0.5rem 0;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}