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

        :root {
            --bg-color: #0a0a0a;
            --card-bg: rgba(18, 18, 18, 0.3);
            --card-hover: rgba(26, 26, 26, 0.5);
            --text-primary: #ffffff;
            --text-secondary: #d1d1d1;
            --border-radius: 12px;
            --spacing: 10px;
            --transition: all 0.3s ease;
            --border: rgba(255, 255, 255, 0.1);
        }

        html,
        body {
            height: 100%;
        }

        body {
            font-family: "Inter", sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            line-height: 1.5;
            padding: 8px;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 30%);
        }

        a{
            color:#eeeeee;
        }

        a:visited {
            color: #bbbbbb;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
        }

        .glass-effect {
            background: rgba(18, 18, 18, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

         /* Breadcrumb Navigation */
        .breadcrumb-nav {
            z-index: 999;
            width: 1200px;
            max-width: 1400px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: fixed;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border);
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .breadcrumb-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            padding: 4px 8px;
            border-radius: 6px;
            position: relative;
        }

        .breadcrumb-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-1px);
        }

        .breadcrumb-link.current {
            color: var(--text-primary);
            font-weight: 500;
            background: rgba(255, 255, 255, 0.08);
            cursor: default;
        }

        .breadcrumb-separator {
            color: var(--text-secondary);
            opacity: 0.6;
            font-size: 0.8rem;
            margin: 0 0.25rem;
        }

        .breadcrumb-home {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .project-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .project-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            padding-top: 120px;
            letter-spacing: -0.02em;
        }

        .image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .image-container {
            display: inline-block; 
            margin: 0 auto 3rem; 
            padding: 10px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative; /* REQUIRED */

        }

        .image-container:hover {
            transform: translateY(-3px);
            border-color: rgba(255,255,255,0.3);
        }

        .image-container img {
            display: block;
            height: auto;
            max-width: 100%;
            border-radius: 12px;
            object-fit: cover;
        }



        .image-container:hover .click-instruction {
            background: rgba(0, 0, 0, 0.9);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateX(-50%) translateY(-2px);
        }

        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 0;
            text-align: center;
        }

        .image-modal.active {
            display: block;
        }

        .image-modal img {
            width: 80%;
            max-width: 95%;
            height: auto;
        }

        .close-btn {
            position: fixed;
            top: 50px;
            right: 60px;
            color: white;
            cursor: pointer;
            z-index: 1100;
            transition: transform 0.3s ease;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            transform: scale(1.2);
        }

        .zoom-controls {
            position: fixed;
            top: 50px;
            right: 100px;
            z-index: 1100;
            display: flex;
            gap: 8px;
        }

        .zoom-btn {
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .zoom-btn:hover {
            background: rgba(0, 0, 0, 0.9);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.05);
        }

        .zoom-btn:active {
            transform: scale(0.95);
        }

        .modal-image {
            transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: grab;
        }

        .modal-image:active {
            cursor: grabbing;
        }

        .modal-figma {
            width: 90%;
            height: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
        }

        .click-instruction {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            letter-spacing: 0.6px;
            /* text-transform: uppercase; */
            opacity: 0.8;
            border: none;
            z-index: 2;
            pointer-events: none; /* important: not clickable */
            transition: opacity 0.3s ease, transform 0.3s ease;
        }


        .image-cta {
            position: absolute;
            bottom: 16px;
            right: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 10px;
            opacity: 0.85;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .image-cta i {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .image-container:hover .click-instruction {
            opacity: 0.45;
            transform: translateX(-50%) translateY(-2px);
        }

        .image-container:hover .image-cta {
            opacity: 1;
            background: rgba(0, 0, 0, 0.75);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-2px);
        }



        .project-details {
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .project-description {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            max-width: fit-content;
            /* margin-left: auto; */
            margin-right: auto;
            width: calc(100% + 90px);
            position: relative;
        }

        .project-overview {
            margin-bottom: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .project-brief {
            margin-bottom: 2rem;
        }

        .project-brief h3 {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .project-brief p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .expand-button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            padding: 12px 28px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
            /* margin-left: 30px; */
            /* margin-bottom: 4rem; */

        }

        .expand-button:hover {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transform: translateY(-1px);
        }

        .expand-button .arrow {
            transition: transform 0.3s ease;
        }

        .expand-button.expanded .arrow {
            transform: rotate(180deg);
        }

        .expandable-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .expandable-content.expanded {
            max-height: 1000px;
            opacity: 1;
            padding-top: 1.5rem;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .highlight-section {
            background: rgba(26, 26, 26, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            transition: var(--transition);
        }

        .highlight-section:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .highlight-section h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .highlight-section ul {
            list-style: none;
            padding-left: 0;
        }

        .highlight-section li {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0.7rem;
            padding-left: 1.2rem;
            position: relative;
        }

        .highlight-section li::before {
            content: "•";
            color: rgba(255, 255, 255, 0.6);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* .dribbble-link {
            text-align: center;
            margin-bottom: 3rem;
        }

        .dribbble-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            color: var(--text-primary);
            padding: 12px 24px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--border);
            font-size: 0.9rem;
        }

        .dribbble-btn:hover {
            transform: translateY(-2px);
            background: var(--card-hover);
            border-color: rgba(255, 255, 255, 0.2);
        } */

        .related-projects {
            position: relative;
            /* margin-left: 160px; */
            margin-top: 50px;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
        }

        .projects-carousel {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 1.5rem;
            padding: 1rem 0;
        }

        .related-card {
            width: 360px;
            min-width: 280px;
            flex-shrink: 0;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            transform: scale(0.98);
            opacity: 0.85;
            margin-bottom: 60px;
        }

        .related-card:hover {
            transform: scale(1) translateY(-5px);
            background: var(--card-hover);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .related-card.active {
            transform: scale(1);
            opacity: 1;
        }

        .related-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover img {
            transform: scale(1.05);
        }

        .related-card-content {
            padding: 16px;
        }

        .related-card h4 {
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .related-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            transform: translateY(-50%);
            z-index: 10;
        }

        .carousel-btn {
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border);
            border-radius: 50%;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            pointer-events: auto;
            margin: 0 -80px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .carousel-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .carousel-btn:hover::before {
            left: 100%;
        }

        .carousel-btn:hover {
            transform: scale(1.1) translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: var(--card-hover);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-btn:disabled:hover {
            transform: none;
            box-shadow: none;
            border-color: var(--border);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--text-primary);
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .mouse-scroll-button {
            position: fixed;
            bottom: 60px;
            right: 30px;
            width: 28px;
            height: 44px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(240, 240, 240, 0.05));
            border: 2px solid #d1d5db;
            border-radius: 14px;
            cursor: pointer;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 1px 3px rgba(255,255,255,0.1);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .mouse-scroll-button:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 12px 35px rgba(0,0,0,0.4), inset 0 1px 3px rgba(255,255,255,0.2);
            border-color: #f8bbd9;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(240, 240, 240, 0.08));
        }

        .mouse-scroll-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        .mouse-wheel {
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 2.5px;
            height: 6px;
            background: linear-gradient(180deg, #f8bbd9, #f48fb1);
            border-radius: 1.5px;
            box-shadow: 0 0 6px rgba(248, 187, 217, 0.6);
            animation: scroll-wheel 2s ease-in-out infinite;
        }

        @keyframes scroll-wheel {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 0.4;
                transform: translateX(-50%) translateY(6px);
            }
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .progress-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(180deg, #f8bbd9 0%, #f48fb1 50%, #e91e63 100%);
            border-radius: 0 0 12px 12px;
            transition: height 0.15s ease;
            height: 0%;
            box-shadow: inset 0 1px 3px rgba(255,255,255,0.3);
        }

        .progress-text {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 8px;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            letter-spacing: 0.5px;
        }

        .mouse-scroll-button:hover .progress-text {
            opacity: 1;
        }

        .scroll-tag {
            position: fixed;
            bottom: 35px;
            right: 35px;
            color: #666;
            font-size: 8px;
            font-weight: 600;
            opacity: 0;
            transform: translateY(5px);
            transition: all 0.3s ease;
            z-index: 999;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            text-shadow: 0 1px 2px rgba(255,255,255,0.1);
        }

        .scroll-tag.visible {
            opacity: 0.7;
            transform: translateY(0);
        }

        .mouse-scroll-button:hover + .scroll-tag,
        .scroll-tag:hover {
            opacity: 1;
            color: #f8bbd9;
            transform: translateY(-1px);
        }

        .tooltip {
            position: absolute;
            bottom: 120%;
            right: 0;
            background: rgba(0,0,0,0.9);
            color: white;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 11px;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            margin-bottom: 5px;
            backdrop-filter: blur(10px);
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            right: 20px;
            border: 5px solid transparent;
            border-top-color: rgba(0,0,0,0.8);
        }

        .mouse-scroll-button:hover .tooltip {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .project-title {
                font-size: 2rem;
            }
            
            .container {
                padding: 16px;
            }
            
            .related-card {
                min-width: 250px;
            }
            
            .highlights-grid {
                grid-template-columns: 1fr;
            }

            .project-overview {
                width: 100%;
                left: 0;
                padding: 20px;
            }

            .carousel-handle {
                width: 38px;
                height: 38px;
                font-size: 0.8rem;
            }

            .related-projects {
                gap: 1rem;
            }

            .carousel-section {
                gap: 1rem;
            }
        }