@import url('https://googledonts.private.coffee/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.fade-out {
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.3s ease;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    height: 30%;
    object-fit: contain;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

.back {
    display: inline-block;
    color: #888;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back:hover {
    color: #fff;
}

.steps {
    text-align: left;
    margin-top: 20px;
}

.step {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.step h2 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.step p {
    margin: 0;
    font-size: 0.95rem;
}