:root {
    --primary: #FF69B4; /* Hot Pink */
    --secondary: #00fa9a; /* Medium Spring Green */
    --bg-color: #fce4ec; /* Light Pink */
    --text-main: #333;
    --text-muted: #666;
    --card-bg: rgba(255, 255, 255, 0.45);
    --border-glow: rgba(255, 105, 180, 0.5);
    --glass-border: rgba(255, 255, 255, 0.6);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background animated blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out alternate;
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    background: #ffb6c1;
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    background: #98fb98;
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: #e0ffff;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 10vh) scale(1.1); }
}

/* Base styles */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(255, 105, 180, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(255, 105, 180, 0.25);
}

/* Header / Profile Info */
.profile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.profile-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    flex-shrink: 0;
    margin: 0 auto;
    animation: rotate-gradient 5s linear infinite;
}

@keyframes rotate-gradient {
    0% { background: linear-gradient(45deg, var(--primary), var(--secondary)); }
    50% { background: linear-gradient(225deg, var(--primary), var(--secondary)); }
    100% { background: linear-gradient(45deg, var(--primary), var(--secondary)); }
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #fff;
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h1 {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 3.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 0px #fff;
}

.badge-icon {
    color: #1DA1F2;
    font-size: 1.5rem;
}

.profile-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 600;
}

.stats {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.6);
    padding: 1rem;
    border-radius: 20px;
    justify-content: space-around;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section-title {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 0px #fff;
}

/* Fun Facts */
.facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

.fact-item {
    background: rgba(255,255,255,0.7);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fact-item:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.9);
}

.fact-icon {
    font-size: 2rem;
    background: var(--bg-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.fact-text strong {
    display: block;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* Travels Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.location-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
}

.gallery-desc {
    padding: 1.5rem;
}

.gallery-desc h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-desc p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem !important;
    font-weight: 600;
}

/* Animation utilities */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-name {
        justify-content: center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .stats {
        flex-wrap: wrap;
    }
}

/* Crisp-like Chat Widget */
.crisp-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: 'Numito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.crisp-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crisp-chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.crisp-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.crisp-chat-window.active {
    transform: scale(1);
    opacity: 1;
}

.crisp-chat-header {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    color: white;
    padding: 1.2rem;
}

.crisp-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.crisp-chat-brand {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.crisp-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.crisp-chat-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.crisp-chat-close:hover {
    background: rgba(255,255,255,0.3);
}

.crisp-header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crisp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.crisp-status-text {
    display: flex;
    flex-direction: column;
}

.crisp-status-text strong {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.crisp-status-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.crisp-chat-messages {
    padding: 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #F9FAFB;
}

.crisp-message-container {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.crisp-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.crisp-message {
    background: white;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    max-width: 80%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    line-height: 1.4;
}

.crisp-chat-footer {
    background: white;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.crisp-chat-input-area {
    display: flex;
    padding: 0.8rem 1rem;
    align-items: center;
}

.crisp-chat-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.95rem;
    background: transparent;
}

.crisp-chat-send {
    background: none;
    color: #1976D2;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    padding: 0.5rem;
}

.crisp-chat-send:hover {
    transform: scale(1.1);
}

.crisp-watermark {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    padding-bottom: 0.8rem;
}

.crisp-watermark strong {
    color: #888;
}
