/* LUXURY LASH DESIGNER STYLE */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --black: #0B0B0B;
    --nude: #E8DCCB;
    --luxury-brown: rgba(99, 162, 209);
    --luxury-brown-soft: rgba(139, 150, 168);
    --white: #F8F8F8;
    --gold: rgb(0, 31, 54);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(99, 162, 209);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

.hero, .links-area, footer {
    position: relative;
    z-index: 10;
}

/* Hero Section with Banner */
.hero {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.hero-banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, #000);
}

.profile-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: -55px auto 15px;
    z-index: 10;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(0, 0, 0);
    box-shadow: 0px 5px 10px rgba(139, 150, 168, 0.5);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero h1 span {
    font-weight: 400;
}

.hero p {
    font-size: 0.85rem;
    color: var(--nude);
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 25px;
}

/* Links Section - Restoring Premium Dark/Pink Style */
.links-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    margin-bottom: 60px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--luxury-brown-soft);
    border-radius: 20px;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--luxury-brown);
    background: rgba(22, 31, 46, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent !important;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--luxury-brown-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.premium-card:hover .card-icon {
    background: var(--luxury-brown);
    color: #fff;
}

.card-text h3 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--white);
}

.card-text p {
    font-size: 0.8rem;
    color: var(--nude);
    opacity: 0.7;
}

.card-arrow {
    opacity: 0.3;
    transition: 0.3s;
    color: var(--luxury-brown);
}

.premium-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: var(--gold);
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-socials a {
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--luxury-brown);
    transform: translateY(-5px);
    filter: drop-shadow(0 0 8px var(--luxury-brown));
}

.footer-socials a svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-brand {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nude);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}
