:root {
    --brand-blue: #1547c7;
    --brand-blue-dark: #0b2a70;
    --brand-orange: #ff8f1f;
    --text-dark: #16214a;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(160deg, var(--brand-blue-dark), var(--brand-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.page {
    width: 100%;
    display: flex;
    justify-content: center;
}

.frame {
    position: relative;
    width: 100%;
    max-width: 430px;
    aspect-ratio: 941 / 1672;
}

.frame__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.frame__content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9% 17% 6%;
    overflow-y: auto;
}

.mascote {
    width: 58%;
    max-width: 220px;
    height: auto;
    margin-bottom: 4%;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 4px;
    text-align: center;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.85;
    text-align: center;
    margin: 0 0 5%;
    line-height: 1.4;
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 6%;
}

.social-icon {
    color: var(--text-dark);
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.15s ease, color 0.15s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.links__empty {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(11, 42, 112, 0.25);
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
    transform: translateY(-2px);
    border-color: var(--brand-orange);
    box-shadow: 0 8px 16px rgba(11, 42, 112, 0.35);
}

.link-btn__icon {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.link-btn__icon--fa {
    width: auto;
    height: auto;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page__footer {
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.72rem;
    color: var(--text-dark);
    opacity: 0.6;
    text-align: center;
}
