body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    color: white;
    padding-top: 8vh; 
}

.main-wrapper {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-style: italic;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-container {
    margin-bottom: 2rem; 
}

.profile-logo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover; 
    border: 3px solid #f09433;
    box-shadow: 0 0 15px rgba(240, 148, 51, 0.4); 
    display: block; 
    margin-left: auto;
    margin-right: auto;
}


.profile-card {
    background: #161616;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid #252525;
}

.tagline {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.btn-instagram {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-instagram:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.footer-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #444;
}
