* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    /* Dark blue gradient background */
    background: linear-gradient(
        135deg,
        #020617 0%,
        #0f172a 40%,
        #172554 100%
    );

    color: white;
}

.container {
    padding: 40px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;

    margin-bottom: 50px;

    text-shadow:
        0 0 10px rgba(255,255,255,0.2),
        0 0 25px rgba(59,130,246,0.4);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;

    text-decoration: none;
    color: white;

    padding: 15px 40px;

    background: rgba(59, 130, 246, 0.25);

    border: 2px solid #3b82f6;
    border-radius: 12px;

    font-size: 1.2rem;
    font-weight: bold;

    transition: all 0.25s ease;
}

.button:hover {
    transform: translateY(-4px);

    background: #3b82f6;

    box-shadow:
        0 0 15px rgba(59,130,246,0.5),
        0 0 30px rgba(59,130,246,0.3);
}

.content-text {
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: bold;
    line-height: 1.6;
}