* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Welcome & Bio Section */
.welcome-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #FD5068 0%, #FE3A72 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.3s both;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.welcome-message {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.welcome-message h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.welcome-message p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 0.5rem;
    font-weight: 400;
}

.bio-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 1;
}

.bio-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.bio-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

/* Photo Slider Section */
.slider-section {
    padding: 4rem 1.5rem;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slider-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
}

.slide {
    min-width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 5px;
    border-color: #FFFFFF;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow.prev {
    left: 1rem;
}

.slider-arrow.next {
    right: 1rem;
}

/* Tags Section - Tag Cloud */
.tags-section {
    padding: 4rem 1.5rem;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.tags-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.tags-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tag-cloud-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    margin: 0 auto;
    cursor: grab;
    touch-action: none;
    border-radius: 20px;
    padding: 2rem;
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tag-cloud-container:active {
    cursor: grabbing;
}

.tag-cloud {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.tag {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -20px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #FD5068 0%, #FE3A72 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(253, 80, 104, 0.3);
    transition: all 0.3s ease;
    user-select: none;
    cursor: pointer;
    transform-style: preserve-3d;
    border: none;
}

.tag:nth-child(odd) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag:nth-child(3n) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.tag:nth-child(4n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.tag:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #FD5068 0%, #FE3A72 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-button {
    padding: 1.2rem 3rem;
    background: #FFFFFF;
    color: #FD5068;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .profile-photo {
        width: 150px;
        height: 150px;
        border: 4px solid rgba(255, 255, 255, 0.9);
    }

    .welcome-message h1 {
        font-size: 2.5rem;
    }

    .welcome-message p {
        font-size: 1.1rem;
    }

    .bio-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .bio-content h2 {
        font-size: 1.5rem;
    }

    .bio-content p {
        font-size: 1rem;
    }

    .slide {
        height: 500px;
    }

    .tag-cloud-container {
        height: 400px;
        padding: 1.5rem;
    }

    .tag {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .tags-content h2 {
        font-size: 2rem;
    }
}

/* Touch-friendly slider */
@media (hover: none) {
    .slider-arrow {
        display: none;
    }
}
