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

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-color: #667eea;
            --accent-hover: #5568d3;
            --bg-dark: #0f0f23;
            --bg-card: rgba(255, 255, 255, 0.08);
            --bg-hover: rgba(255, 255, 255, 0.12);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --border-color: rgba(255, 255, 255, 0.15);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-dark);
            background-image: 
                radial-gradient(at 0% 0%, rgba(102, 126, 234, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(118, 75, 162, 0.1) 0px, transparent 50%);
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            cursor: none;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Canvas & Cursor Styles */
        #interactive-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.6;
        }

        #cursor-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10000;
        }
        
        .cursor-dot {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            transform-origin: center;
            will-change: transform, opacity;
            transition: none;
        }
        
        .cursor-shape {
            position: absolute;
            pointer-events: none;
            will-change: transform, opacity;
            transition: opacity 0.5s ease-out;
            background: var(--primary-gradient);
            filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
        }
        .cursor-shape.circle { border-radius: 50%; }
        .cursor-shape.square { border-radius: 8px; }

        /* Main Container */
        .container {
            position: relative;
            z-index: 10;
            background: var(--bg-card);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid var(--border-color);
            border-radius: 32px;
            padding: 48px;
            max-width: 720px;
            width: 92%;
            margin: 60px auto;
            box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        
        .container.modal-open {
            /* filter: blur(4px); */
            transform: scale(0.97);
            opacity: 0.6;
        }
        
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary-gradient);
            opacity: 0.6;
        }

        /* Profile Section */
        .profile-section {
            text-align: center;
            padding-bottom: 48px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }

        .avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 28px;
        }
        
.lava-lamp {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    z-index: 2;
    pointer-events: none;
}

.lava-lamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

        #avatar {
            width: 165px;
            height: 165px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
            transition: all var(--transition-smooth);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        #avatar:hover {
            transform: scale(1.08);
            border-color: rgba(102, 126, 234, 0.6);
            box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
        }

        .name {
            font-size: 3.2em;
            font-weight: 800;
            margin-bottom: 12px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .tagline {
            font-size: 1.15em;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto;
            font-weight: 400;
            cursor: pointer;
            transition: all var(--transition-smooth);
            position: relative;
            padding: 8px 0;
        }

        .tagline::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform var(--transition-smooth);
        }

        .tagline:hover {
            color: var(--accent-color);
        }

        .tagline:hover::after {
            transform: scaleX(1);
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            justify-content: center;
            margin: 36px 0;
            background: var(--bg-card);
            border-radius: 20px;
            padding: 6px;
            gap: 6px;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .tab-link {
            padding: 14px 28px;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 1.05em;
            font-weight: 600;
            border-radius: 14px;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 2;
            letter-spacing: 0.3px;
        }
        .tab-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-1px);
        }
        .tab-link.active-tab {
            color: var(--text-primary);
            background: var(--primary-gradient);
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
            transform: translateY(-1px);
        }

        /* Content Sections */
        .content-section {
            display: none;
        }
        .content-section.active-content {
            display: block;
            animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .content-wrapper {
            position: relative;
            min-height: 240px;
        }

        .notes-section {
            text-align: center;
        }
        .notes-section p {
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 18px;
            font-size: 1.08em;
        }
.dream-link {
    color: var(--text-secondary); 
    text-decoration: none;
    position: relative;
    transition: all var(--transition-smooth);
    cursor: pointer;
    font-weight: 600;
}
.dream-link:hover {
    color: inherit;
}
        .dream-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: var(--primary-gradient);
            transition: width var(--transition-smooth);
        }
        .dream-link:hover::after {
            width: 100%;
        }

        /* Links Section */
        .links-section {
            text-align: left;
        }
        .bio-link {
            display: flex;
            align-items: center;
            color: var(--text-primary);
            padding: 20px 28px;
            margin-bottom: 14px;
            border-radius: 18px;
            text-decoration: none;
            font-size: 1.12em;
            font-weight: 600;
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }
        .bio-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
        }
        .bio-link:hover::before {
            left: 100%;
        }
        .bio-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }
        .bio-link.facebook { 
            background: linear-gradient(135deg, #3b5998, #4c70ba);
            box-shadow: 0 4px 16px rgba(59, 89, 152, 0.3);
        }
        .bio-link.discord { 
            background: linear-gradient(135deg, #5865f2, #4752c4);
            box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
        }
        .bio-link.website { 
            background: linear-gradient(135deg, #28a745, #20c997);
            box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
        }
        .bio-link.email { 
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
        }

        /* Music Section */
        .music-section {
            text-align: center;
        }
        .video-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 24px;
            padding: 24px 0;
            scrollbar-width: thin;
            scrollbar-color: rgba(102, 126, 234, 0.7) rgba(255, 255, 255, 0.1);
            min-height: 220px;
            align-items: center;
            justify-content: flex-start;
        }
        .video-carousel::-webkit-scrollbar { height: 12px; }
        .video-carousel::-webkit-scrollbar-track { 
            background: rgba(255, 255, 255, 0.08); 
            border-radius: 12px; 
        }
        .video-carousel::-webkit-scrollbar-thumb { 
            background: var(--primary-gradient); 
            border-radius: 12px;
            border: 2px solid rgba(15, 15, 35, 0.8);
        }
        
        .video-carousel iframe {
            flex: 0 0 auto;
            width: 340px;
            height: 190px;
            border-radius: 20px;
            border: none;
            box-shadow: var(--shadow-md);
            scroll-snap-align: start;
            transition: transform var(--transition-smooth);
        }
        .video-carousel iframe:hover {
            transform: scale(1.04);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }
        
        .loading-message, .error-message {
            width: 100%;
            text-align: center;
            font-size: 1.12em;
            color: var(--text-secondary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            animation: modalFadeIn 0.4s ease-out;
        }
        .modal-content {
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            margin: 2% auto;
            padding: 40px;
            width: 92%;
            max-width: 1280px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            color: var(--text-primary);
            animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: var(--shadow-lg);
        }

        .modal-content::-webkit-scrollbar {
            width: 14px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 12px;
            border: 3px solid rgba(15, 15, 35, 0.8);
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2, #667eea);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 38px;
            font-weight: bold;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-smooth);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .close-btn:hover {
            color: var(--accent-color);
            transform: rotate(90deg) scale(1.1);
            background: rgba(255, 255, 255, 0.08);
        }

        .modal-title {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 36px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        /* Tagline Modal */
        .tagline-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 92%;
            max-width: 540px;
            max-height: 75vh;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(32px);
            -webkit-backdrop-filter: blur(32px);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 36px;
            z-index: 1001;
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .tagline-modal::-webkit-scrollbar {
            width: 10px;
        }

        .tagline-modal::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
        }

        .tagline-modal::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 12px;
        }

        .tagline-modal h3 {
            text-align: center;
            margin-bottom: 28px;
            color: var(--accent-color);
            font-size: 1.8em;
            font-weight: 700;
        }

        .tagline-notes {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .tagline-note {
            color: var(--text-secondary);
            margin-bottom: 14px;
            padding: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            word-wrap: break-word;
            white-space: pre-wrap;
            line-height: 1.7;
        }

        .tagline-note:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .tagline-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--text-secondary);
            font-size: 28px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .tagline-close-btn:hover {
            color: var(--accent-color);
            transform: rotate(90deg) scale(1.1);
            background: rgba(255, 255, 255, 0.08);
        }

        /* Avatar Modal */
        .avatar-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(16px);
            animation: modalFadeIn 0.4s ease-out;
        }

        .avatar-modal-content {
            position: relative;
            margin: auto;
            max-width: 92%;
            max-height: 90vh;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
        }

        .avatar-modal-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 20px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
            animation: slideInUp 0.5s ease-out;
        }

        .avatar-modal-close {
            position: absolute;
            top: 24px;
            right: 36px;
            color: var(--text-primary);
            font-size: 44px;
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-smooth);
            z-index: 2001;
            background: rgba(0, 0, 0, 0.6);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-modal-close:hover {
            transform: rotate(90deg) scale(1.1);
            background: rgba(220, 53, 69, 0.8);
        }

        .avatar-modal-download {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gradient);
            color: white;
            padding: 16px 36px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
        }

        .avatar-modal-download:hover {
            transform: translateX(-50%) translateY(-4px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
        }

        /* Share Button */
        .share-button {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 56px;
            height: 56px;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-smooth);
            z-index: 100;
        }

        .share-button:hover {
            background: var(--bg-hover);
            transform: scale(1.12);
            box-shadow: var(--shadow-md);
        }

        .share-button svg {
            width: 26px;
            height: 26px;
            fill: var(--text-primary);
        }

        /* Share Modal */
        .share-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(32px);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 36px;
            z-index: 2001;
            min-width: 380px;
            box-shadow: var(--shadow-lg);
        }

        .share-modal h3 {
            text-align: center;
            margin-bottom: 28px;
            color: var(--accent-color);
            font-size: 1.8em;
            font-weight: 700;
        }

        .share-link-container {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            background: rgba(255, 255, 255, 0.04);
            padding: 14px 18px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        .share-link-container input {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 15px;
            outline: none;
        }

        .copy-link-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .copy-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .share-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .share-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-color);
        }

        .share-option:hover {
            background: var(--bg-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .share-option svg {
            width: 26px;
            height: 26px;
        }

        .qr-button {
            margin-top: 20px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #ff73fa, #d946ef);
            color: white;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(255, 115, 250, 0.3);
        }

        .qr-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 115, 250, 0.5);
        }

        .share-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
        }

        /* Cursor Toggle */
        .cursor-toggle-container {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 10001;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .cursor-toggle-container .switch {
            position: relative;
            display: inline-block;
            width: 56px;
            height: 32px;
        }
        .cursor-toggle-container .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .cursor-toggle-container .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.15);
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 40px;
            border: 1px solid var(--border-color);
        }
        .cursor-toggle-container .slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 4px;
            bottom: 3px;
            background: white;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .cursor-toggle-container input:checked + .slider {
            background: var(--primary-gradient);
            border-color: var(--accent-color);
        }
        .cursor-toggle-container input:checked + .slider:before {
            transform: translateX(24px);
        }

        /* Hover Effects */
        .tab-link:hover,
        .dream-link:hover,
        .close-btn:hover,
        .cursor-toggle-container .slider:hover,
        .tagline-close-btn:hover,
        .tagline:hover {
            cursor: url(https://ani.cursors-4u.net/games/gam-16/gam1570.cur), auto !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body { cursor: default !important; }
            #cursor-container { display: block !important; } 
            .cursor-toggle-container { display: flex !important; }
            
            .container { 
                padding: 32px 24px; 
                margin: 24px auto; 
                border-radius: 24px;
            }
            .name { 
                font-size: 2.4em; 
                letter-spacing: -0.5px;
            }
            .tagline { 
                font-size: 1.05em; 
                padding: 6px 0;
            }
            .tab-navigation { 
                flex-direction: column; 
                gap: 10px; 
                padding: 8px;
            }
            .tab-link {
                padding: 12px 20px;
                font-size: 1em;
            }
            .video-carousel iframe { 
                width: 300px; 
                height: 169px; 
            }
            .bio-link {
                padding: 16px 20px;
                font-size: 1.05em;
            }
            .share-button {
                width: 48px;
                height: 48px;
                top: 16px;
                left: 16px;
            }
            .share-button svg {
                width: 22px;
                height: 22px;
            }
            .modal-content {
                padding: 28px 20px;
                border-radius: 20px;
            }
            .modal-title {
                font-size: 2.2em;
            }
            .share-modal {
                min-width: 90%;
                padding: 28px 20px;
            }
            .avatar-modal-close {
                top: 16px;
                right: 16px;
                width: 48px;
                height: 48px;
                font-size: 36px;
            }
            .avatar-modal-download {
                padding: 14px 28px;
                font-size: 15px;
                bottom: 24px;
            }
        }

        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: translateY(10px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { 
                transform: translateY(40px); 
                opacity: 0; 
            }
            to { 
                transform: translateY(0); 
                opacity: 1; 
            }
        }

        @keyframes burstParticle {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(calc(-50% + var(--end-x)), calc(-50% + var(--end-y))) scale(0);
                opacity: 0;
            }
        }

        /* Visiting Tagline */
        .visiting-tagline {
            color: var(--accent-color);
        }

        /* Spec Table (for dream modal if used) */
        .modal-body {
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
        }
        .left-section, .right-section {
            flex: 1;
            min-width: 320px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 18px;
            padding: 28px;
            border: 1px solid var(--border-color);
        }
        .left-section h3, .right-section h3 {
            text-align: center;
            font-size: 1.9em;
            margin-bottom: 24px;
            color: var(--accent-color);
            font-weight: 700;
        }
        .spec-table {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .spec-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            transition: all var(--transition-smooth);
        }
        .spec-row:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(4px);
        }
        .spec-label {
            font-weight: 600;
            color: var(--text-primary);
        }
        .spec-value {
            text-align: right;
            color: var(--accent-color);
            font-weight: 500;
        }

        /* Utility Classes */
        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Scrollbar Global Styles */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 12px;
            border: 3px solid var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2, #667eea);
        }
        @keyframes decoration-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}


/* Decoration Image Button */
.decoration-button {
    position: fixed;
    top: 50%;
    right: 24px; 
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 100;
    font-size: 20px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.12);
    opacity: 0.25;
    outline: none;
}


.decoration-button:hover {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0.6;
    transform: translateY(-50%) scale(1.05);
    box-shadow: none;
}
.decoration-button:focus {
    outline: none; 
}

/* Decoration Image Modal */
.decoration-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(210,184,221); 
    backdrop-filter: blur(16px);
    animation: modalFadeIn 0.4s ease-out;
}

.decoration-modal-content {
    position: relative;
    margin: auto;
    max-width: 92%;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.decoration-image-container {
    position: relative;
    display: inline-block;
}

.decoration-img {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    z-index: 2;
    pointer-events: none;
}

.decoration-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.decoration-img {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}
.decoration-modal-content .main-image {
    max-width: 400px;
    max-height: 400px;
    border-radius: 50%;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.5s ease-out;
    position: relative;
    z-index: 1;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.decoration-modal-close {
    position: absolute;
    top: 24px;
    right: 36px;
    color: var(--text-primary);
    font-size: 44px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 2001;
    background: rgba(0, 0, 0, 0.6);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(220, 53, 69, 0.8);
}

@media (max-width: 768px) {
    .decoration-button {
        display: none; 
    }
}
@media (min-width: 1024px) {
    .decoration-button {
        right: 24px;
    }
}
@media (min-width: 769px) and (max-width: 1023px) {
    .decoration-button {
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
body.show-default-cursor {
    cursor: auto !important;
}
