* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0f;
            overflow-x: hidden;
            position: relative;
        }
        #particleCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
        }
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.8s ease;
        }
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .loading-content {
            text-align: center;
            animation: loadingPulse 2s infinite ease-in-out;
        }
        .loading-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        .loading-logo i {
            font-size: 3rem;
            color: #00d4ff;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            animation: logoSpin 3s infinite linear;
        }
        .loading-logo span {
            font-size: 2rem;
            color: #fff;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }
        .loading-bar {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin: 0 auto 20px;
        }
        .loading-progress {
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
            background-size: 200% 100%;
            border-radius: 2px;
            animation: loadingProgress 3s ease-in-out, gradientShift 2s infinite;
        }
        .loading-text {
            color: #ccc;
            font-size: 1rem;
            animation: loadingText 2s infinite ease-in-out;
        }
        @keyframes loadingPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        @keyframes logoSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes loadingProgress {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }
        @keyframes loadingText {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        .modern-card {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .modern-card:hover::before {
            left: 100%;
        }
        .modern-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.5);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2), 0 0 0 1px rgba(0, 212, 255, 0.3);
        }
        .glass-effect {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .neon-text {
            text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px #00d4ff;
        }
        .neon-border {
            border: 2px solid #00d4ff;
            box-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 15px #00d4ff, inset 0 0 5px rgba(0, 212, 255, 0.2);
        }
        .neon-button {
            position: relative;
            background: transparent;
            border: 2px solid #00d4ff;
            color: #00d4ff;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            overflow: hidden;
            text-shadow: 0 0 10px #00d4ff;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3), inset 0 0 10px rgba(0, 212, 255, 0.1);
        }
        .neon-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        .neon-button:hover::before {
            left: 100%;
        }
        .neon-button:hover {
            background: rgba(0, 212, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(0, 212, 255, 0.2);
            transform: translateY(-3px);
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        .header.scrolled {
            background: rgba(10, 10, 15, 0.95);
            border-bottom-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-brand h2 {
            color: #00d4ff;
            font-size: 1.5rem;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            animation: brandGlow 3s ease-in-out infinite alternate;
        }
        .nav-brand i {
            margin-right: 8px;
            animation: brandIconRotate 4s ease-in-out infinite;
        }
        @keyframes brandGlow {
            0% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            100% { text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.3); }
        }
        @keyframes brandIconRotate {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        .nav-link:hover::before {
            left: 100%;
        }
        .nav-link:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
        }
        .nav-link i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }
        .home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        .home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
            animation: gradientShift 15s ease-in-out infinite;
            z-index: 0;
        }
        @keyframes gradientShift {
            0%, 100% { 
                background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
            }
            33% {
                background: radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 20% 70%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 60% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
            }
            66% {
                background: radial-gradient(circle at 40% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 70% 40%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
            }
        }
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }
        .home-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            min-height: 80vh;
        }
        .home-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .highlight {
            color: #00d4ff;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .typing-text {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .typing-text::after {
            content: '|';
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        .home-text p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 2rem;
            max-width: 500px;
        }
        .home-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }
        .btn-primary {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: #fff;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }
        .btn-secondary {
            background: transparent;
            color: #00d4ff;
            border: 2px solid #00d4ff;
        }
        .btn-secondary:hover {
            background: #00d4ff;
            color: #0f0f23;
            transform: translateY(-3px);
        }
        .profile-card {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(0, 212, 255, 0.3);
            animation: pulse 3s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        .profile-img i {
            font-size: 8rem;
            color: #00d4ff;
        }
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .floating-icons i {
            position: absolute;
            font-size: 2rem;
            color: #00d4ff;
            animation: float-icons 6s infinite ease-in-out;
        }
        .floating-icons i:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
        .floating-icons i:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
        .floating-icons i:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; }
        .floating-icons i:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }
        .floating-icons i:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
        @keyframes float-icons {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        .music-player {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 212, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 12px 20px;
            border-radius: 50px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.5);
            animation: musicPlayerFloat 3s ease-in-out infinite;
        }
        @keyframes musicPlayerFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        .music-visualizer {
            display: flex;
            align-items: end;
            gap: 2px;
            margin-right: 8px;
        }
        .music-visualizer .bar {
            width: 3px;
            height: 15px;
            background: #fff;
            border-radius: 2px;
            animation: musicBars 1s ease-in-out infinite;
        }
        .music-visualizer .bar:nth-child(1) { animation-delay: 0s; }
        .music-visualizer .bar:nth-child(2) { animation-delay: 0.2s; }
        .music-visualizer .bar:nth-child(3) { animation-delay: 0.4s; }
        .music-visualizer .bar:nth-child(4) { animation-delay: 0.6s; }
        @keyframes musicBars {
            0%, 100% { height: 15px; }
            50% { height: 5px; }
        }
        .music-btn {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .music-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        .music-title {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-title h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }
        .section-title i {
            margin-right: 10px;
            color: #00d4ff;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }
        .about {
            padding: 100px 0;
            background: transparent;
            position: relative;
        }
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 26, 46, 0.3) 0%, rgba(15, 15, 35, 0.3) 100%);
            z-index: -1;
        }
        .about-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .about-text h3 {
            font-size: 2rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
        }
        .about-text p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        .stat-item h4 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }
        .stat-item h4 i {
            margin-right: 8px;
        }
        .stat-item p {
            color: #ccc;
            font-size: 0.9rem;
        }
        .about-img-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid rgba(0, 212, 255, 0.3);
        }
        .about-img-wrapper i {
            font-size: 8rem;
            color: #00d4ff;
        }
        .skills {
            padding: 100px 0;
            background: transparent;
            position: relative;
        }
        .skills::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
            z-index: -1;
        }
        .skills-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .skill-item {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .skill-item:hover::before {
            left: 100%;
        }
        .skill-item:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: #00d4ff;
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.2);
        }
        .skill-icon {
            margin-bottom: 1rem;
        }
        .skill-icon i {
            font-size: 3rem;
            color: #00d4ff;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            animation: skillIconFloat 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .skill-item:hover .skill-icon i {
            transform: scale(1.1);
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
        }
        @keyframes skillIconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        .skill-item h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .skill-bar {
            background: rgba(255, 255, 255, 0.1);
            height: 8px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        .skill-progress {
            height: 100%;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 10px;
            width: 0;
            animation: fillSkill 2s ease-in-out forwards;
        }
        @keyframes fillSkill {
            to { width: var(--percent); }
        }
        .skill-percent {
            color: #00d4ff;
            font-weight: 600;
        }
        .projects {
            padding: 100px 0;
            background: transparent;
            position: relative;
        }
        .projects::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(15, 15, 35, 0.3) 100%);
            z-index: -1;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        .project-card {
            background: rgba(15, 15, 35, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .project-card:hover::before {
            opacity: 1;
        }
        .project-card:hover {
            transform: translateY(-15px) rotateX(2deg);
            border-color: #00d4ff;
            box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3), 0 0 50px rgba(0, 212, 255, 0.2);
        }
        .project-image {
            height: 200px;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .project-card:hover .project-image::before {
            opacity: 1;
        }
        .project-image i {
            font-size: 4rem;
            color: #00d4ff;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
            transition: all 0.4s ease;
            z-index: 1;
            position: relative;
        }
        .project-card:hover .project-image i {
            transform: scale(1.1) rotate(5deg);
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
        }
        .project-content {
            padding: 1.5rem;
        }
        .project-content h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .project-content p {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .project-tech span {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        .project-links {
            display: flex;
            gap: 1rem;
        }
        .btn-link {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border: 1px solid #00d4ff;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .btn-link:hover {
            background: #00d4ff;
            color: #0f0f23;
        }
        .thank-you {
            padding: 80px 0;
            background: transparent;
            position: relative;
        }
        .thank-you::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
            z-index: -1;
        }
        .thank-you-card {
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            border: 2px solid rgba(0, 212, 255, 0.3);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
        }
        .thank-you-content i.fas.fa-heart {
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
            animation: heartbeat 2s infinite;
        }
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .thank-you-content h3 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .thank-you-content p {
            color: #ccc;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .thank-you-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        .thank-you-icons i {
            font-size: 2rem;
            color: #00d4ff;
            animation: bounce 2s infinite;
            animation-delay: calc(var(--i) * 0.3s);
        }
        .thank-you-icons i:nth-child(1) { --i: 1; }
        .thank-you-icons i:nth-child(2) { --i: 2; }
        .thank-you-icons i:nth-child(3) { --i: 3; }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .contact {
            padding: 100px 0;
            background: transparent;
            position: relative;
        }
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(15, 15, 35, 0.4) 100%);
            z-index: -1;
        }
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }
        .contact-info h3 {
            color: #00d4ff;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .contact-info p {
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #ccc;
        }
        .contact-item i {
            color: #00d4ff;
            font-size: 1.2rem;
            width: 20px;
        }
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .contact-card {
            background: rgba(15, 15, 35, 0.8);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-10px);
            border-color: #00d4ff;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
        }
        .contact-card.telegram {
            border-color: rgba(0, 136, 204, 0.5);
        }
        .contact-card.whatsapp {
            border-color: rgba(37, 211, 102, 0.5);
        }
        .contact-icon {
            margin-bottom: 1rem;
        }
        .telegram .contact-icon i {
            font-size: 3rem;
            color: #0088cc;
        }
        .whatsapp .contact-icon i {
            font-size: 3rem;
            color: #25d366;
        }
        .contact-card h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .contact-card p {
            color: #ccc;
            margin-bottom: 1.5rem;
        }
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .telegram .contact-btn {
            background: #0088cc;
            color: #fff;
        }
        .whatsapp .contact-btn {
            background: #25d366;
            color: #fff;
        }
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .footer {
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            padding: 2rem 0;
            border-top: 1px solid rgba(0, 212, 255, 0.3);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-text {
            color: #ccc;
        }
        .footer-text i.fas.fa-heart {
            color: #ff6b6b;
            margin: 0 5px;
        }
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        .footer-social a {
            color: #ccc;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
        }
        .footer-social a:hover {
            color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
        }
        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background: #00d4ff;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        .scroll-top:hover {
            background: #0099cc;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(15, 15, 35, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: all 0.3s ease;
                transform: translateX(-100%);
            }
            .nav-menu.active {
                transform: translateX(0);
            }
            .home-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .home-text h1 {
                font-size: 2.5rem;
            }
            .typing-text {
                font-size: 1.4rem;
            }
            .profile-card {
                width: 300px;
                height: 300px;
            }
            .profile-img i {
                font-size: 6rem;
            }
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-stats {
                grid-template-columns: 1fr;
            }
            .skills-content {
                grid-template-columns: 1fr;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .contact-content {
                grid-template-columns: 1fr;
            }
            .contact-cards {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .music-player {
                bottom: 10px;
                right: 10px;
                padding: 10px 15px;
            }
            .music-title {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .home-text h1 {
                font-size: 2rem;
            }
            .typing-text {
                font-size: 1.2rem;
            }
            .profile-card {
                width: 250px;
                height: 250px;
            }
            .profile-img i {
                font-size: 4rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .floating-icons i {
                font-size: 1.5rem;
            }
        }
        @keyframes fillSkill {
            to { width: var(--percent); }
        }
        @keyframes skillParticleFloat {
            0% { transform: translateY(0) scale(1); opacity: 1; }
            100% { transform: translateY(-30px) scale(0); opacity: 0; }
        }
        @keyframes hoverParticleFloat {
            0% { transform: translate(0, 0) scale(1); opacity: 1; }
            100% { transform: translate(var(--random-x, 20px), var(--random-y, -30px)) scale(0); opacity: 0; }
        }
        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 212, 255, 0.3);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }
        @keyframes ripple {
            to { transform: scale(2); opacity: 0; }
        }
        .animate-in {
            animation: slideInUp 0.6s ease-out;
        }
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }