@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
}

body {
    background: #0a0e1a;
    height: 100%;
    margin: 0;
    color: #f8fafc;
}

.content {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.wrapper-1 {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.wrapper-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wrapper-2 {
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 3.5rem;
    letter-spacing: -1px;
    color: #f8fafc;
    margin: 0;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.wrapper-2 p {
    margin: 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #94a3b8;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
}

.go-home {
    background: #3b82f6;
    border: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 14px 32px;
    margin-top: 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.go-home:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

a:hover .go-home {
    color: #ffffff;
}

.go-home a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .wrapper-1 {
        padding: 40px 24px;
    }
    
    .wrapper-2 p {
        font-size: 1rem;
    }
    
    .go-home {
        padding: 12px 24px;
        font-size: 13px;
    }
}
