* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #fcfcfc;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: auto 0;
}

.logo-text {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #0b1325;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: #cccccc;
    margin: 0 auto 45px auto;
}

.actions-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background-color: #0b1325;
    padding: 16px 40px;
    border-radius: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: auto;
    min-width: 320px;
    white-space: nowrap;
}

.btn-link:hover {
    background-color: #1a2a47;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-link .arrow {
    margin-left: 15px;
    font-size: 1.1rem;
}

.contact-box {
    margin-top: 45px;
    font-family: 'Arial', sans-serif;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666666;
    margin-bottom: 15px;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    color: #0b1325;
    text-decoration: none;
    border-bottom: 1px solid #0b1325;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #1a2a47;
    border-bottom-color: #1a2a47;
    letter-spacing: 0.02em;
}

.container-re {
    max-width: 700px; 
}

.re-title {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666666;
    margin-top: -30px;
    margin-bottom: 50px;
}

.re-content {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333333;
}

.re-intro {
    font-size: 1.1rem;
    color: #0b1325;
    font-weight: 500;
    margin-bottom: 35px;
}

.status-box {
    display: inline-flex;
    align-items: center;
    background-color: #f0f4f8;
    padding: 8px 20px;
    margin-bottom: 35px;
    gap: 10px;
}

.status-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #4a5568;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #4a5568;
    border-radius: 50%;
    display: inline-block;
}

.re-note {
    font-size: 0.9rem;
    color: #777777;
    max-width: 550px;
    margin: 0 auto;
}

footer {
    width: 100%;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 0.05em;
    padding-top: 20px;
}

.btn-link .lock {
    font-size: 0.8rem;
    margin-left: 6px;
    opacity: 0.85;
}