@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0a0a1a;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-shapes::before, .background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.background-shapes::before {
    width: 300px;
    height: 300px;
    background: rgba(138, 43, 226, 0.2);
    top: -50px;
    left: -50px;
}

.background-shapes::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 191, 255, 0.2);
    bottom: -100px;
    right: -100px;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
    width: 90vw;
    max-width: 1200px;
    padding: 20px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.logo {
    width: 50px;
    height: 50px;
    border: 2px solid #8a2be2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    color: #8a2be2;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #8a2be2;
    margin: 0;
}

.content {
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #fff;
}

p {
    font-size: 1.1em;
    margin-bottom: 2em;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timer {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2em;
    letter-spacing: 5px;
} 

footer {
    margin-top: 2rem;
    font-size: 0.9em;
    color: #aaa;
}