* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

main {
    min-height: 95vh;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-orange) 400%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 95vh;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 700px;
}

.hero img.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p.slogan {
    font-size: 1.2rem;
    opacity: 0.9;
}

.button-container {
    margin: 40px 0;
}

.launch-button {
    background-color: white;
    color: var(--bs-primary);
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.launch-button:hover {
    background-color: #ddd;
    transform: translateY(-2px);
}

footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

footer a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
