* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h1 {
    color: #2d3436;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    color: #636e72;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.description {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #fd79a8;
}

.description h3 {
    color: #2d3436;
    font-size: 18px;
    margin-bottom: 10px;
}

.description p {
    color: #636e72;
    font-size: 14px;
    line-height: 1.6;
}

.steps {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 0 10px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #fd79a8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    font-size: 14px;
}

.step-text {
    font-size: 12px;
    color: #636e72;
    line-height: 1.3;
}

.buttons-container {
    margin-top: 30px;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    box-shadow: 0 10px 20px rgba(253, 121, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(253, 121, 168, 0.4);
}

.btn-secondary {
    background: white;
    color: #636e72;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #fd79a8;
    color: #fd79a8;
    transform: translateY(-2px);
}

.divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #636e72;
    font-size: 14px;
}

.info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #1565c0;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

    .steps {
        flex-direction: column;
        gap: 15px;
    }

    .step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .step-number {
        margin: 0;
    }
}
