body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #11162b;
    color: #c3c3c3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: left;
    background-color: #212951;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}
h1 {
    font-size: 3.5em;
    color: #c3c3c3;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}
p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d7d7d7;
    max-width: 800px;
}
.cta-button {
    display: inline-block;
    background-color: #39FFF0;
    color: #212951;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1em;
    transition: all 0.3s;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.cta-button:hover {
    filter: drop-shadow(0 0 5px #39FFF0);
}

.floating-logo {
    position: absolute;
    opacity: 0.1;
    transition: transform 0.1s linear;
}
.accent-color {
    color: #39FFF0;
}