* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a271d;
            overflow-x: hidden;
        }

        /* Network mesh canvas background */
        #network-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .logo-container {
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .header-logo {
            width: 120px;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(209, 44, 44, 0.5));
            animation: fadeInUp 1s ease-out;
        }

        .header-logo:hover {
            filter: drop-shadow(0 0 30px rgba(190, 72, 25, 0.8));
            transform: scale(1.05);
            transition: all 0.3s;
        }
        

        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(59, 246, 190, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 246, 174, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
        }

        header {
            position: relative;
            padding: 8rem 2rem 6rem;
            text-align: center;
            overflow: hidden;
        }

        .header-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 246, 153, 0.2) 0%, transparent 70%);
            filter: blur(60px);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3bf6dd 0%, #5cf6e9 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header p {
            font-size: 1.3rem;
            color: #94b8ac;
            position: relative;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .tech-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.5rem;
            background: rgba(94, 93, 62, 0.1);
            border: 1px solid rgba(59, 246, 190, 0.3);
            border-radius: 20px;
            font-size: 0.9rem;
            color: #3bf6e6;
            animation: fadeInUp 1s ease-out 0.4s both;
            backdrop-filter: blur(10px);
        }

        nav {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        nav a {
            color: #94a3b8;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.3s;
        }

        nav a:hover, nav a.active {
            color: #3b82f6;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        section {
            background: rgba(29, 28, 29, 0.664);
            backdrop-filter: blur(20px);
            margin-bottom: 3rem;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(59, 246, 230, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s;
        }

        section:hover::before {
            left: 100%;
        }

        section:hover {
            border-color: rgba(59, 246, 215, 0.4);
            box-shadow: 0 0 40px rgba(59, 246, 206, 0.2);
        }

        h2 {
            color: #e0e0e0;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #3bf6be, #5cf6e2);
            border-radius: 2px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .skill-card {
            padding: 2rem;
            background: rgba(30, 41, 59, 0.5);
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3bf6d7, #8b5cf6, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .skill-card:hover::before {
            transform: scaleX(1);
        }

        .skill-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
            background: rgba(30, 41, 59, 0.8);
        }

        .skill-card h3 {
            color: #3b82f6;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-card h3::before {
            content: '◆';
            color: #8b5cf6;
            font-size: 0.8rem;
        }

        .skill-card ul {
            list-style: none;
            padding-left: 0;
        }

        .skill-card li {
            margin: 0.8rem 0;
            color: #94a3b8;
            padding-left: 1.5rem;
            position: relative;
            transition: color 0.3s;
        }

        .skill-card li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .skill-card:hover li {
            color: #e0e0e0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .project-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .project-card:hover::after {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        }

        .project-card h3 {
            color: #e0e0e0;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .project-card p {
            color: #94a3b8;
            position: relative;
            z-index: 1;
        }


        /* Inline hyperlink style */
        .project-card .inline-link {
            color: #f63b83;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid rgba(59, 130, 246, 0.4);
            transition: all 0.3s;
            position: relative;
            z-index: 10;
            cursor: pointer;
        }

        .project-card .inline-link:hover {
            color: #f8ae3f;
            border-bottom-color: #60a5fa;
        }


        /* Video container inside project cards */
        .project-card .video-container {
            position: relative;
            width: 100%;
            margin-top: 1rem;
            z-index: 10; /* Ensure video is above other elements */
        }

        .project-card .video-container video {
            width: 100%;
            border-radius: 10px;
            border: 1px solid rgba(59, 130, 246, 0.3);
            background: #000;
            cursor: pointer;
            position: relative;
            z-index: 10;
        }

        .project-card .video-container video:hover {
            border-color: rgba(59, 130, 246, 0.6);
        }

        /* Ensure video controls are clickable */
        .project-card .video-container video::-webkit-media-controls-panel {
            z-index: 100 !important;
        }


        .project-image-container {
            width: 100%;
            margin-top: 1.0rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.3);
            position: relative;
            z-index: 1;
        }

        .project-image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }

        .project-image-container:hover img {
            transform: scale(1.05);
        }

        .project-image-container:hover {
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        }


        .project-tag {
            display: inline-block;
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 0.3rem 0.3rem 0 0;
            border: 1px solid rgba(59, 130, 246, 0.3);
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }

        .project-card:hover .project-tag {
            background: rgba(59, 130, 246, 0.3);
            border-color: rgba(59, 130, 246, 0.5);
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        label {
            display: block;
            margin-bottom: 0.8rem;
            color: #3b82f6;
            font-weight: 600;
            font-size: 1.1rem;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(30, 41, 59, 0.5);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            color: #e0e0e0;
            transition: all 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(30, 41, 59, 0.8);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        button {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        button:hover::before {
            left: 100%;
        }

        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        footer {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            color: #94a3b8;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .social-links {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .social-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            transition: all 0.3s;
            background: rgba(30, 41, 59, 0.3);
        }

        .social-links a:hover {
            color: #3b82f6;
            border-color: #3b82f6;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
            background: rgba(30, 41, 59, 0.6);
        }

        /* Particles effect */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #3bf6ce;
            border-radius: 50%;
            opacity: 0.5;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            section {
                padding: 2rem;
            }

            .skills-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
        }


        .timeline-section {
            background: rgba(29, 28, 29, 0.664);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s;
        }

        .timeline-section:hover::before {
            left: 100%;
        }

        .timeline-section:hover {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
        }


        .timeline {
            position: relative;
            padding-left: 3rem;
            margin-top: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #3b82f6, #8b5cf6, #10b981);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -3.5rem;
            top: 0;
            width: 14px;
            height: 14px;
            background: #3b82f6;
            border-radius: 50%;
            border: 4px solid #0a0e27;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
        }

        .timeline-item h3 {
            color: #3b82f6;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .timeline-item .company {
            color: #8b5cf6;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-item .date {
            color: #10b981;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .timeline-item p {
            color: #94a3b8;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .timeline-item ul {
            list-style: none;
            padding-left: 0;
        }

        .timeline-item li {
            color: #94a3b8;
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .timeline-item li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }



        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .hero-content {
            background: rgba(29, 28, 29, 0.664);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s;
        }

        .hero-content:hover::before {
            left: 100%;
        }

        .hero-content:hover {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
        }

        .hero-image {
            background: rgba(29, 28, 29, 0.664);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        .placeholder-icon {
            font-size: 8rem;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: rgba(30, 41, 59, 0.5);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 1rem;
            font-weight: 600;
        }


        .interests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .interest-card {
            background: rgba(30, 41, 59, 0.5);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .interest-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .interest-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .interest-card:hover::before {
            transform: scaleX(1);
        }

        .interest-card:hover::after {
            opacity: 1;
        }

        .interest-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
        }

        .interest-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
            position: relative;
            z-index: 1;
        }

        .interest-card h3 {
            color: #3b82f6;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .interest-card p {
            color: #94a3b8;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Service images instead of icons */
        .interest-card .service-image {
            background-color: #474747;
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            transition: transform 0.3s;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .interest-card:hover .service-image {
            transform: scale(1.05);
            border-color: rgba(59, 130, 246, 0.5);
        }

        .tools-section {
            margin-top: 2rem;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .tool-badge {
            background: rgba(30, 41, 59, 0.5);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            text-align: center;
            color: #3b82f6;
            font-weight: 600;
            transition: all 0.3s;
        }

        .tool-badge:hover {
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(59, 130, 246, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        }


        .video-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        .video-container video {
            width: 100%;
            border-radius: 15px;
            border: 2px solid rgba(59, 130, 246, 0.3);
            background: #000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }

        .video-container video:hover {
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 15px 50px rgba(59, 130, 246, 0.3);
        }

        /* Play button overlay */
        .video-container::before {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(59, 130, 246, 0.8);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            transition: all 0.3s;
            z-index: -1;  /* Changed from 1 to -1 */
            opacity: 1;
        }

        .video-container:hover::before {
            background: rgba(59, 130, 246, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Hide play button when video is playing */
        .video-container.playing::before {
            opacity: 0;
        }

