/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    padding: 12px;
    background: #000;
}

/* ===== VIDEO BACKGROUND ===== */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7);
}

/* ===== VIGNETTE EFFECT (Video er upore) ===== */
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.85) 90%);
    z-index: -1;
    pointer-events: none;
}

/* ===== SOFT OVERLAY ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: -1;
    pointer-events: none;
}

/* ===== MAIN CONTAINER ===== */
.container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

/* ===== GLASS CARD ===== */
.card {
    background: rgba(18, 18, 22, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 48px;
    padding: 32px 28px;
    animation: fadeInUp 0.8s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== PROFILE SECTION ===== */
.profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.25);
    animation: scaleIn 0.6s ease 0.2s both;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.avatar:hover img {
    transform: scale(1.1);
}

.name-title {
    animation: slideInRight 0.6s ease 0.3s both;
}

.name-title h1 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #FCD9B8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

.title-badge {
    display: flex;
    gap: 10px;
}

.influencer-tag {
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
}

.influencer-tag i {
    color: #3B9BFF;
    margin-right: 4px;
}

.age-tag {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 4px 16px;
    border-radius: 100px;
}

/* ===== EMAIL SECTION ===== */
.email-container {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 16px 22px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease 0.4s both;
}

.email-container:hover {
    background: rgba(40, 40, 45, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.email-container:active {
    transform: scale(0.98);
}

.email-container i {
    color: #FFA978;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.email-container:hover i {
    transform: scale(1.1);
}

/* ===== PRIVATE MESSAGE BADGE ===== */
.private-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 60px;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 14px;
    animation: fadeIn 0.6s ease 0.5s both;
}

.private-chip i {
    color: #FFD966;
}

/* ===== INVITE CARD ===== */
.invite-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 36px;
    padding: 32px 24px;
    margin-bottom: 32px;
    text-align: center;
    animation: scaleIn 0.6s ease 0.6s both;
}

.invite-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #A8A8B8;
    margin-bottom: 14px;
}

.invite-text {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(135deg, #FFFFFF, #FFD9B0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
}

.signature {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

/* ===== BUTTONS (ANIMATED) ===== */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.7s both;
}

.btn {
    border: none;
    padding: 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Call Button */
.btn-call {
    background: linear-gradient(145deg, #FF4F7E, #FF2B5C);
    box-shadow: 0 10px 20px rgba(255, 45, 85, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 45, 85, 0.5);
}

.btn-call:active {
    transform: translateY(0) scale(0.98);
}

/* Message Button */
.btn-message {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-message:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-message:active {
    transform: translateY(0) scale(0.98);
}

/* Button Icon Animation */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn:active i {
    transform: scale(0.9);
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    animation: fadeIn 0.6s ease 0.8s both;
}

.footer i {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 380px) {
    .card { padding: 24px 20px; }
    .avatar { width: 76px; height: 76px; }
    .name-title h1 { font-size: 28px; }
    .invite-text { font-size: 22px; }
}