/* Google Fonts - Inter for premium look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --text-color: #ffffff;
    --of-blue: #00AFF0;
    --heart-blue: #00ADEF;
    --telegram-blue: #0088cc;
    --insta-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --custom-pink: #FF4D79;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #000;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 3rem;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay to make text pop */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
}

/* Main Content */
.profile-container {
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.verified-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2; /* Verification blue */
    font-size: 1.2rem;
}

.verified-badge .check-icon {
    position: absolute;
    color: white;
    font-size: 0.6rem;
    z-index: 2;
}

.handle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.social-icon:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.5);
}

.social-icon:active {
    transform: scale(0.95);
    /* Click animation */
    animation: clickRipple 0.4s ease-out;
}

@keyframes clickRipple {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    100% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

/* Specific Icon Colors - Optional, depending on user preference. 
   In the screenshot, icons have brand colored backgrounds. Let's match them. */

.social-icon.onlyfans { 
    background: var(--of-blue); 
    border-color: var(--of-blue); 
    width: 120px;
    height: 120px;
    font-size: 3.6rem;
    position: relative;
}

.social-icon.onlyfans i {
    position: absolute;
    transition: opacity 0.3s ease;
}

.social-icon.onlyfans .icon-closed {
    animation: lockToggleClosed 2s infinite;
}

.social-icon.onlyfans .icon-open {
    animation: lockToggleOpen 2s infinite;
}

@keyframes lockToggleClosed {
    0%, 45% { opacity: 1; transform: scale(1); }
    50%, 95% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes lockToggleOpen {
    0%, 45% { opacity: 0; transform: scale(0.9); }
    50%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.9); }
}
.social-icon.telegram { background: var(--telegram-blue); border-color: var(--telegram-blue); }
.social-icon.instagram { background: var(--insta-grad); border-color: transparent; }
.social-icon.tiktok { background: #000000; border-color: #ff0050; text-shadow: 2px 2px 0px #00f2fe; }
.social-icon.facebook { background: #1877F2; border-color: #1877F2; }

/* Stats */
.stats-dropdown {
    margin-bottom: 25px;
}

.stats-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s;
}

.stats-btn strong {
    font-weight: 800;
    font-size: 1.1rem;
}

.stats-btn:hover {
    background: rgba(255,255,255,0.1);
}

.stats-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.stats-btn:hover i {
    transform: translateY(3px);
}

/* CTA Arrows (Absolute to OnlyFans Icon) */
.pointer-arrow {
    position: absolute;
    width: 60px;
    height: 80px;
    top: 85px;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 77, 121, 0.8));
    animation: arrowSlideUp 1.5s ease-in-out infinite alternate;
}

.left-arrow {
    right: 115px;
    transform-origin: bottom right;
}

.right-arrow {
    left: 115px;
    transform-origin: bottom left;
}

@keyframes arrowSlideUp {
    0% { transform: translateY(15px) scale(0.9); opacity: 0.3; }
    100% { transform: translateY(0px) scale(1.1); opacity: 1; }
}

/* Make it responsive */
@media (max-width: 400px) {
    .social-icon { width: 45px; height: 45px; font-size: 1.4rem; }
    .social-icon.onlyfans { width: 90px; height: 90px; font-size: 2.5rem; }
    .name { font-size: 1.8rem; }
    .pointer-arrow { width: 40px; height: 60px; top: 20px; }
    .left-arrow { right: 85px; }
    .right-arrow { left: 85px; }
}
