* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #2d4a42;
            color: #f5f5dc;
            overflow-x: hidden;
            cursor: none;
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #c9d4a8;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: all 0.1s ease;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(201, 212, 168, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: all 0.3s ease;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.15;
            transition: opacity 0.3s ease;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, #6b8e7d, #c9d4a8, #8ba888);
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.5;
            }

            25% {
                transform: translate(100px, -100px) scale(1.2);
                opacity: 0.8;
            }

            50% {
                transform: translate(-50px, 150px) scale(0.8);
                opacity: 0.3;
            }

            75% {
                transform: translate(150px, 50px) scale(1.1);
                opacity: 0.6;
            }
        }

        /* Main Container */
        .container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 6rem 2rem 2rem;
        }

        /* Glitch Text Effect */
        .glitch-wrapper {
            margin-bottom: 1rem;
        }

        .glitch {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #c9d4a8;
            position: relative;
            animation: glitch-skew 2s infinite;
        }

        @keyframes glitch-skew {
            0% {
                transform: skew(0deg);
            }

            10% {
                transform: skew(-2deg);
            }

            20% {
                transform: skew(2deg);
            }

            30% {
                transform: skew(0deg);
            }

            100% {
                transform: skew(0deg);
            }
        }

        /* Logo Container with Fixed Spacing */
        .logo-container {
            margin-bottom: -5rem;
            position: relative;
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            width: clamp(200px, 40vw, 320px);
            height: clamp(200px, 40vw, 320px);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
        }

        .logo {
            width: 100%;
            height: 100%;
            position: relative;
            animation: rotate 20s linear infinite;
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Profile Image Inside Logo */
        .profile-image-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 81.25%;
            height: 81.25%;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #6b8e7d;
            box-shadow: 0 4px 16px rgba(107, 142, 125, 0.5);
            z-index: 10;
            background: radial-gradient(circle, rgba(107, 142, 125, 0.2), rgba(45, 74, 66, 0.4));
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .loading-flower {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            left: 0;
        }

        .loading-flower::before {
            content: '⁕';
            font-size: clamp(2rem, 5vw, 3rem);
            color: #c9d4a8;
            animation: spin-glow 2s linear infinite;
            text-shadow: 0 0 15px rgba(201, 212, 168, 0.8),
                0 0 30px rgba(201, 212, 168, 0.5),
                0 0 45px rgba(201, 212, 168, 0.3);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: sepia(0.15) hue-rotate(-10deg) saturate(0.9) brightness(1.05);
        }

        .profile-image-wrapper.loaded .loading-flower {
            display: none;
        }

        .profile-image-wrapper .profile-image.error {
            display: none;
        }

        @keyframes spin-glow {
            0% {
                transform: rotate(0deg);
                text-shadow: 0 0 15px rgba(201, 212, 168, 0.8),
                    0 0 30px rgba(201, 212, 168, 0.5),
                    0 0 45px rgba(201, 212, 168, 0.3);
            }

            50% {
                text-shadow: 0 0 25px rgba(201, 212, 168, 1),
                    0 0 50px rgba(201, 212, 168, 0.8),
                    0 0 75px rgba(201, 212, 168, 0.5);
            }

            100% {
                transform: rotate(360deg);
                text-shadow: 0 0 15px rgba(201, 212, 168, 0.8),
                    0 0 30px rgba(201, 212, 168, 0.5),
                    0 0 45px rgba(201, 212, 168, 0.3);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-ring {
            position: absolute;
            border: 2px solid;
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
            background: transparent;
        }

        .ring-1 {
            width: 100%;
            height: 100%;
            border-color: #c9d4a8;
            top: 0;
            left: 0;
        }

        .ring-2 {
            width: 84.375%;
            height: 84.375%;
            border-color: #8ba888;
            top: 7.8125%;
            left: 7.8125%;
            animation-delay: 1s;
        }

        .ring-3 {
            width: 68.75%;
            height: 68.75%;
            border-color: #6b8e7d;
            top: 15.625%;
            left: 15.625%;
            animation-delay: 2s;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        /* Main Title */
        .title {
            font-size: clamp(2.5rem, 8vw, 8rem);
            font-weight: 700;
            background: linear-gradient(45deg, #c9d4a8, #8ba888, #6b8e7d, #c9d4a8);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 8s ease infinite;
            margin-bottom: 1rem;
            text-align: center;
            line-height: 1.1;
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Subtitle */
        .subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.5rem);
            font-weight: 300;
            color: #a8b89a;
            margin-bottom: 1.5rem;
            text-align: center;
            max-width: 600px;
            line-height: 1.6;
            padding: 0 1rem;
        }

        /* Development Notice */
        .dev-notice {
            font-size: clamp(0.8rem, 2vw, 1rem);
            color: #c9d4a8;
            background: rgba(107, 142, 125, 0.25);
            padding: 1rem 2rem;
            border-radius: 25px;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
            border: 2px solid rgba(201, 212, 168, 0.4);
            box-shadow: 0 4px 16px rgba(107, 142, 125, 0.2);
            animation: pulse-glow 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .dev-notice::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(201, 212, 168, 0.4), transparent);
            animation: shine-sweep 4s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes shine-sweep {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 200%;
            }
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 4px 16px rgba(107, 142, 125, 0.2);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 6px 24px rgba(107, 142, 125, 0.4);
                transform: scale(1.02);
            }
        }

        /* Interest Pills */
        .interests {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
            max-width: 800px;
            padding: 0 1rem;
        }

        .interest-pill {
            padding: 0.8rem 1.5rem;
            background: rgba(107, 142, 125, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 212, 168, 0.2);
            border-radius: 50px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: #c9d4a8;
            text-decoration: none;
            cursor: none;
            display: inline-block;
        }

        .interest-pill::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(107, 142, 125, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
        }

        .interest-pill:hover {
            border-color: #8ba888;
            transform: translateY(-5px);
        }

        .interest-pill:hover::before {
            width: 300px;
            height: 300px;
        }

        .interest-pill span {
            position: relative;
            z-index: 1;
        }

        /* CTA Button */
        .cta {
            padding: 1rem 2.5rem;
            background: #6b8e7d;
            border: none;
            color: #f5f5dc;
            font-size: clamp(0.9rem, 2vw, 1rem);
            font-weight: 500;
            border-radius: 50px;
            cursor: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(107, 142, 125, 0.3);
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(201, 212, 168, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(107, 142, 125, 0.4);
        }

        .cta:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta span {
            position: relative;
            z-index: 1;
        }

        /* Contact Button */
        .contact-btn {
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid rgba(201, 212, 168, 0.5);
            color: #c9d4a8;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            font-weight: 500;
            border-radius: 50px;
            cursor: none;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: #c9d4a8;
            color: #2d4a42;
            transform: scale(1.05);
        }

        /* Ekjuth Button */
        .ekjuth-btn {
            padding: 1rem 2rem;
            background: rgba(255, 107, 0, 0.1);
            border: 2px solid #FF6B00;
            color: #FF6B00;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            font-weight: 600;
            border-radius: 50px;
            cursor: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ekjuth-btn:hover {
            background: #FF6B00;
            color: #1a1a1a;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
            border-radius: 50%;
        }

        .buttons-container {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 0 1rem;
        }

        /* Music Visualizer */
        .visualizer {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            gap: 4px;
            align-items: flex-end;
            height: 60px;
            z-index: 10;
        }

        .bar {
            width: 4px;
            background: linear-gradient(to top, #6b8e7d, #c9d4a8);
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
        }

        .bar:nth-child(1) {
            animation-delay: 0s;
        }

        .bar:nth-child(2) {
            animation-delay: 0.1s;
        }

        .bar:nth-child(3) {
            animation-delay: 0.2s;
        }

        .bar:nth-child(4) {
            animation-delay: 0.3s;
        }

        .bar:nth-child(5) {
            animation-delay: 0.4s;
        }

        .bar:nth-child(6) {
            animation-delay: 0.5s;
        }

        @keyframes wave {

            0%,
            100% {
                height: 20%;
            }

            50% {
                height: 100%;
            }
        }

        /* Theme Toggle - Fixed Position */
        .theme-toggle {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: none;
        }

        /* Name in Top Left - Fixed Position */
        .name-tag {
            position: fixed;
            top: 2rem;
            left: 2rem;
            z-index: 1000;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 500;
            color: #c9d4a8;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Header Gradient Bar */
        .header-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to bottom, rgba(45, 74, 66, 0.95) 0%, rgba(45, 74, 66, 0.7) 50%, transparent 100%);
            z-index: 999;
            pointer-events: none;
        }

        .toggle-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #a8b89a;
        }

        .toggle-switch {
            position: relative;
            width: clamp(70px, 15vw, 100px);
            height: clamp(30px, 6vw, 40px);
            background: linear-gradient(135deg, #6b8e7d, #8ba888);
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(107, 142, 125, 0.3);
        }

        .toggle-switch:hover {
            box-shadow: 0 6px 16px rgba(107, 142, 125, 0.4);
            transform: scale(1.05);
        }

        .toggle-circle {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 32px;
            height: 32px;
            background: #2d4a42;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.8rem, 2vw, 1rem);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .toggle-labels {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
        }

        .label-light,
        .label-dark {
            font-size: clamp(0.5rem, 1.5vw, 0.7rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .label-light {
            color: rgba(45, 74, 66, 0.8);
        }

        .label-dark {
            color: transparent;
            pointer-events: none;
        }

        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
            padding: 1rem;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: #3a5a4d;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            max-width: 450px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease;
            position: relative;
            border: 1px solid rgba(201, 212, 168, 0.2);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-icon {
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin-bottom: 1.5rem;
            animation: bounce 1s ease infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .modal h2 {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            font-weight: 600;
            color: #c9d4a8;
            margin-bottom: 1rem;
        }

        .modal p {
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            color: #a8b89a;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .modal-close {
            background: #6b8e7d;
            color: #f5f5dc;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: clamp(0.85rem, 2vw, 1rem);
            font-weight: 500;
            cursor: none;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(107, 142, 125, 0.3);
        }

        /* Contact Modal */
        .contact-modal .modal-content {
            max-width: 500px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            padding: 1.2rem;
            background: rgba(107, 142, 125, 0.15);
            border-radius: 15px;
            text-decoration: none;
            color: #c9d4a8;
            transition: all 0.3s ease;
            font-weight: 500;
            border: 1px solid rgba(201, 212, 168, 0.2);
            cursor: none;
        }

        .social-link:hover {
            background: #6b8e7d;
            color: #f5f5dc;
            transform: translateX(10px);
            border-color: #6b8e7d;
        }

        .social-link .icon {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            flex-shrink: 0;
        }

        .social-link .platform-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
        }

        .social-link .platform-name {
            font-size: clamp(0.65rem, 1.8vw, 0.75rem);
            color: #a8b89a;
            font-weight: 400;
        }

        .social-link:hover .platform-name {
            color: rgba(245, 245, 220, 0.7);
        }

        .social-link .handle {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }

            .container {
                padding: 5rem 1rem 2rem;
            }

            .name-tag {
                top: 1rem;
                left: 1rem;
            }

            .theme-toggle {
                top: 1rem;
                right: 1rem;
            }

            .toggle-switch {
                width: 80px;
                height: 35px;
            }

            .toggle-circle {
                width: 27px;
                height: 27px;
                top: 4px;
                right: 4px;
            }

            .toggle-labels {
                padding: 0 8px;
            }

            /* Logo and Image - Mobile */
            .logo-container {
                margin-bottom: -5rem;
                margin-top: 3rem;
            }

            .visualizer {
                bottom: 1rem;
                right: 1rem;
                height: 40px;
            }

            .modal-content {
                padding: 2rem 1.5rem;
            }

            .buttons-container {
                width: 100%;
                max-width: 300px;
            }

            .cta,
            .contact-btn,
            .ekjuth-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 400px) {
            .container {
                padding: 4.5rem 0.75rem 1.5rem;
            }

            .name-tag {
                font-size: 0.8rem;
                top: 0.75rem;
                left: 0.75rem;
            }

            .theme-toggle {
                top: 0.75rem;
                right: 0.75rem;
            }

            .toggle-switch {
                width: 70px;
                height: 32px;
            }

            .toggle-circle {
                width: 24px;
                height: 24px;
                top: 4px;
                right: 4px;
                font-size: 0.75rem;
            }

            .toggle-labels {
                padding: 0 6px;
            }

            .label-light,
            .label-dark {
                font-size: 0.5rem;
            }

            .glitch-wrapper {
                margin-bottom: 1rem;
            }

            .logo-container {
                margin-bottom: -5rem;
            }

            .title {
                margin-bottom: 0.75rem;
            }

            .subtitle {
                margin-bottom: 1rem;
            }

            .dev-notice {
                margin-bottom: 1.5rem;
                padding: 0.8rem 1.2rem;
            }

            .interests {
                margin-bottom: 1.5rem;
                gap: 0.7rem;
            }
        }
