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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a0a1a 25%, #2d1b2d 50%, #1a0a1a 75%, #0c0c0c 100%);
    min-height: 100vh;
    color: white;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-section {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image {
    width: 100%;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    object-position: center 30%; /* Focuses more on the upper third where the face is */
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
}

.hero-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    min-height: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:nth-child(1) {
    animation-delay: 0.2s;
}

.link-button:nth-child(2) {
    animation-delay: 0.4s;
}

.link-button:nth-child(3) {
    animation-delay: 0.6s;
}

.link-button:nth-child(4) {
    animation-delay: 0.8s;
}

.link-button:hover {
    transform: translateY(-5px);
    background: rgba(255, 20, 147, 0.1);
    border-color: rgba(255, 20, 147, 0.6);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2), 0 0 20px rgba(138, 43, 226, 0.3);
    color: white;
    text-decoration: none;
}

.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    background: rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.link-content {
    flex: 1;
}

.link-title {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.link-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.instagram-1 .link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-2 .link-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.onlyfans .link-icon {
    background: linear-gradient(45deg, #00AFF0, #0085C3);
}

.privacy .link-icon {
    background: linear-gradient(45deg, #FF6B6B, #FF5252);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile optimizations */
@media (max-width: 576px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .hero-name {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .link-button {
        padding: 0.8rem 1rem;
        min-height: 56px;
    }

    .link-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.8rem;
    }

    .link-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }
}