
        :root {
            --primary-gradient: linear-gradient(135deg, #ff758c, #ff7eb3);
            --secondary-gradient: linear-gradient(45deg, #ff758c, #ff7eb3, #ff7583);
            --dark-pink: #ff4081;
            --light-pink: #ffcdd2;
            --text-dark: #333;
            --text-light: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #ffeef2;
            background: linear-gradient(135deg, #fff0f5, #ffcdd2);
            color: var(--text-dark);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Floating Decorations */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.6;
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }
        
        /* Header & Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 50px 0;
        }
        
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 40px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(255, 64, 129, 0.2);
            backdrop-filter: blur(10px);
            max-width: 900px;
            margin: 0 auto;
            transform: translateY(20px);
            animation: slideUp 1s forwards;
        }
        
        @keyframes slideUp {
            to { transform: translateY(0); }
        }
        
        .profile-img-container {
            position: relative;
            margin-bottom: 30px;
        }
        
        .profile-img {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }
        
        .profile-img:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 64, 129, 0.3);
        }
        
        .img-frame {
            position: absolute;
            top: -15px;
            left: -15px;
            width: calc(100% + 30px);
            height: calc(100% + 30px);
            border-radius: 50%;
            border: 3px dashed var(--dark-pink);
            animation: rotate 20s linear infinite;
            z-index: 1;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .name {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #666;
            max-width: 600px;
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            color: var(--dark-pink);
            font-size: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255, 64, 129, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .social-btn:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 35px rgba(255, 64, 129, 0.4);
        }
        
        .social-btn:hover::before {
            opacity: 1;
        }
        
        .social-btn:hover i {
            color: white;
        }
        
        .social-btn.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        
        .social-btn.facebook:hover {
            background: #1877f2;
        }
        
        .social-btn.onlyfans:hover {
            background: #ff1e4d;
        }
        
        .social-btn.tiktok:hover {
            background: #000000;
        }
        
        /* Gank Now Button */
        .gank-now {
            background: var(--primary-gradient);
            display: inline-block;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(255, 101, 132, 0.4);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }
        
        .gank-now::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }
        
        .gank-now:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 101, 132, 0.6);
        }
        
        .gank-now:hover::before {
            left: 100%;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Quicksand', sans-serif;
            color: var(--dark-pink);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            transition: all 0.5s ease;
            border: 1px solid rgba(255, 64, 129, 0.1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: calc(var(--delay) * 0.2s);
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 117, 140, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .card-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-pink);
            font-family: 'Quicksand', sans-serif;
        }
        
        .card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .skill-tag {
            background: linear-gradient(45deg, #ff758c, #ff7eb3);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .skill-tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
        }
        
        /* Projects Section */
        .projects {
            padding: 80px 0;
            position: relative;
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .project-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            height: 250px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            animation-delay: calc(var(--delay) * 0.2s + 0.4s);
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .project-card:hover .project-img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(255, 64, 129, 0.9), transparent);
            transform: translateY(100%);
            transition: all 0.5s ease;
        }
        
        .project-card:hover .project-overlay {
            transform: translateY(0);
        }
        
        .project-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
            font-family: 'Quicksand', sans-serif;
        }
        
        .project-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 15px;
            color: white;
        }
        
        .project-link {
            display: inline-block;
            padding: 8px 20px;
            background: white;
            color: var(--dark-pink);
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 50px 0;
            background: white;
            margin-top: 50px;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .footer-text {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
            font-family: 'Quicksand', sans-serif;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        
        .footer-link {
            color: var(--dark-pink);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Quicksand', sans-serif;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .name {
                font-size: 3rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .social-btn {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .card {
                padding: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .name {
                font-size: 2.5rem;
            }
            
            .profile-img {
                width: 180px;
                height: 180px;
            }
            
            .social-links {
                gap: 15px;
            }
            
            .gank-now {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }
