* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #2b1f1d 0%, #1c1311 100%);
    color: #f4eae4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    margin-bottom: 35px;
    width: 100%;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(244, 234, 228, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.avatar-container::after {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(212, 189, 178, 0.15);
    animation: pulse 3.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.06); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.8; }
}

.profile h1 {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: #f4eae4;
    text-transform: uppercase;
}

.profile p {
    font-size: 0.85rem;
    color: #c5b4ac;
    font-weight: 300;
    letter-spacing: 1px;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.btn {
    display: block;
    background: rgba(141, 110, 99, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 189, 178, 0.15);
    padding: 18px 20px;
    border-radius: 14px;
    color: #f4eae4;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: rgba(188, 170, 164, 0.25);
    border-color: rgba(244, 234, 228, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.2);
}

.page-header {
    margin-bottom: 25px;
    width: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: #f4eae4;
    text-transform: uppercase;
    display: inline-block;
}

.page-hero {
    width: 100%;
    margin-bottom: 25px;
}

.page-hero-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.page-content {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
    text-align: center;
}

.page-content h2 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #f4eae4;
    border-bottom: 1px solid rgba(212, 189, 178, 0.15);
    padding-bottom: 10px;
}

.page-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #dfd2cc;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.page-content a {
    color: #d4b09c;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.page-content a:hover {
    color: #f4eae4;
}

.navigation-back {
    width: 100%;
    margin-bottom: 20px;
}

.btn-back {
    font-size: 0.8rem;
    padding: 14px 20px;
    background: rgba(212, 189, 178, 0.1);
}

.footer {
    margin-top: 45px;
    font-size: 0.7rem;
    color: rgba(212, 189, 178, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}