@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap');
        
        :root {
            --bg-dark: #0E0E10;
            --bg-light: #F5F5F7;
            --accent: #3CFFE2;
            --accent-alt: #ACFF3D;
            --accent-light:#000000;
            --accent-light-alt:#ff0000;
            --accent-tertiary-links: #ff9cad;
            --accent-tertiary: #3CFFE2;
            --accent-tertiary-light: #ff6b85; /* New lighter pink color for better visibility in light mode */
            --text-dark: #E6E6E6;
            --text-light: #2A2A2A;
            --card-dark: #1A1A1C;
            --card-light: #FFFFFF;
            --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            --transition-speed: 0.3s;
            --glow-shadow: 0 0 8px;
            --font-mono: 'JetBrains Mono', 'Fira Code', 'Roboto Mono', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Hyperlinks*/

        a {
            color: var(--accent-tertiary-links);
            text-decoration: none;
            transition: all var(--transition-speed);
            position: relative;
        }

        a:hover {
            color: var(--accent-tertiary);
            text-shadow: var(--glow-shadow) currentColor;
        }

        a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: currentColor;
            transition: width var(--transition-speed);
        }

        a:hover::after {
            width: 100%;
        }

        .vtuber-link {
            color: var(--marine-accent);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
        }

        .vtuber-link:hover {
            color: var(--accent-tertiary);
            text-shadow: 0 0 8px var(--accent-tertiary);
        }

        .vtuber-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--accent-tertiary);
            transition: width 0.3s ease;
        }

        .vtuber-link:hover::after {
            width: 100%;
        }

        .anime-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            width: 100%;
        }

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

        .other-stats:hover .anime-link {
            color: var(--accent);
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-dark);
            transition: var(--transition);
            overflow-x: hidden;
        }

		body::-webkit-scrollbar {
			display: none;
		}

        body.light-mode {
            background-color: var(--bg-light);
            color: var(--text-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .container2{

            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 0;
            z-index: 100;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(14, 14, 16, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }

        body.light-mode header.scrolled {
            background-color: rgba(245, 245, 247, 0.8);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-mono);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-primary);
            display: flex;
            align-items: center;
			text-decoration:none;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }


		.logo::before {
            content: '>';
            margin-right: 0.4rem;
            animation: blink 2s infinite;
        }
		
		.logo:hover {
            color: var(--accent);
        }

        body.light-mode .logo:hover {
            color: var(--accent-tertiary-light);
        }
        

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
        }

        body.light-mode nav a {
            color: var(--text-light);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a:hover::after {
            width: 100%;
        }

        body.light-mode nav a:hover {
            color: var(--accent-tertiary-light);
        }

        body.light-mode nav a::after {
            background-color: var(--accent-tertiary-light);
        }

        .toggle-wrapper {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
        }

        .toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--card-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        body.light-mode .toggle {
            background-color: var(--card-light);
        }

        .toggle:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .toggle svg {
            width: 24px;
            height: 24px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            transform: translateY(50px);
            opacity: 0;
            animation: fadeUp 1s forwards 0.5s;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .typewriter {
            display: inline-block;
            position: relative;
        }

        .typewriter::after {
            content: '|';
            position: absolute;
            right: -15px;
            color: var(--accent);
            animation: blink 1s infinite;
        }

        .cta-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border: 2px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            margin-right: 1rem;
            z-index: 1;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }

        .cta-btn:hover {
            color: var(--bg-dark);
        }

        .cta-btn:hover::before {
            width: 100%;
        }

        body.light-mode .cta-btn {
            border: 2px solid var(--accent-tertiary-light);
            color: var(--accent-tertiary-light);
        }

        body.light-mode .cta-btn::before {
            background-color: var(--accent-tertiary-light);
        }

        body.light-mode .cta-btn:hover {
            color: var(--bg-light);
            text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
        }

        body.light-mode .cta-btn:hover::before {
            width: 100%;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.05;
            background: 
                radial-gradient(circle at 20% 30%, var(--accent) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, var(--accent-alt) 0%, transparent 15%);
        }

        /* Sections Common Styles */
        section {
            padding: 6rem 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background-color: var(--card-dark);
            padding: 2rem;
            border-radius: 8px;
            transition: var(--transition);
            height: 100%;
        }

        body.light-mode .about-card {
            background-color: var(--card-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            
        
        }

        .about-card:hover {
            transform: translateY(-8px);
            
        }

       .profile-card:hover{
        cursor: progress;
        transform: translateY(-9px);
        box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
        animation: bloodPulse 0.5s infinite;





        }
       

        .about-card h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: var(--accent);
        }

        .inst {
            font-size: 0.8rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        body.light-mode .about-card h3 {
            color: var(--accent-tertiary-light);
        }

        .about-card p {
            line-height: 1.7;
            opacity: 0.9;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .skill-tag {
            padding: 0.3rem 0.8rem;
            background-color: rgba(60, 255, 226, 0.1);
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--accent);
        }

        body.light-mode .skill-tag {
            background-color: rgba(255, 107, 133, 0.1);
            color: var(--accent-tertiary-light);
        }

        /* Games Section */
        .games {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .game-wrapper {
            position: relative;
            display: inline-block;
        }

        .game-tag {
            padding: 0.3rem 0.8rem;
            background-color: rgba(60, 255, 226, 0.1);
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--accent);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        body.light-mode .game-tag {
            background-color: rgba(255, 107, 133, 0.1);
            color: var(--accent-tertiary-light);
        }

        .game-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 8px var(--accent);
        }

        body.light-mode .game-tag:hover {
            box-shadow: 0 0 8px var(--accent-tertiary-light);
        }

        .game-stats {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background-color: var(--card-dark);
            border-radius: 8px;
            padding: 1rem;
            width: 250px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 10px;
            z-index: 100;
        }

        .game-wrapper:hover .game-stats {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .game-stats::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: var(--card-dark) transparent transparent transparent;
        }

        body.light-mode .game-stats {
            background-color: var(--card-light);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .game-stats::after {
            border-color: var(--card-light) transparent transparent transparent;
        }

        .game-stats-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode .game-stats-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .game-username {
            font-weight: 600;
            color: var(--accent);
        }

        body.light-mode .game-username {
            color: var(--accent-tertiary-light);
        }

        .game-server {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .game-stats-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .stat-row {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.8rem;
        }

        .progress-bar {
            height: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        body.light-mode .progress-bar {
            background-color: rgba(0, 0, 0, 0.1);
        }

        .progress {
            height: 100%;
            background-color: var(--accent);
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 1s ease;
        }

        body.light-mode .progress {
            background-color: var(--accent-tertiary-light);
        }

        .game-wrapper:hover .progress {
            transform: scaleX(1);
        }

        .stat-value {
            white-space: nowrap;
        }

        /* Other Info Section */
        .other-info {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .other-wrapper {
            position: relative;
            display: inline-block;
        }

        .other-tag {
            padding: 0.3rem 0.8rem;
            background-color: rgba(60, 255, 226, 0.1);
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--accent);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
        }

        .other-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 8px var(--accent);
        }

        body.light-mode .other-tag {
            background-color: rgba(255, 107, 133, 0.1);
            color: var(--accent-tertiary-light);
        }

        body.light-mode .other-tag:hover {
            box-shadow: 0 0 8px var(--accent-tertiary-light);
        }

        .other-stats {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background-color: var(--card-dark);
            border-radius: 8px;
            padding: 1rem;
            width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 10px;
            z-index: 100;
        }

        .other-wrapper:hover .other-stats {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Increase width for The Weeknd's stats specifically */
        .weeknd-stats-content + .other-stats {
            width: 250px; /* Wider to accommodate the image */
        }

        .other-stats::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: var(--card-dark) transparent transparent transparent;
        }

        body.light-mode .other-stats {
            background-color: var(--card-light);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .other-stats::after {
            border-color: var(--card-light) transparent transparent transparent;
        }

        .other-stats-content {
            text-align: center;
        }

        .other-value {
            font-weight: 600;
            color: var(--accent);
        }

        body.light-mode .other-value {
            color: var(--accent-tertiary-light);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background-color: var(--card-dark);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }

        body.light-mode .project-card {
            background-color: var(--card-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .project-card:hover {
            transform: translateY(-8px);
			
        }
		
		.project-img img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
		}
		
		
		.img-top {
		z-index: 2;
		}

		.img-bottom {
		z-index: 1;
		}

		.project-card:hover .img-top {
		transform: translateY(100%);
		}


        .project-img {
            width: 100%;
            height: 200px;
            
            position: relative;
            overflow: hidden;
			
        }

        body.light-mode .project-img {
            background-color: #EAEAEA;
        }

        .project-img::before {
            content: '';
			background-color: #978420;
            position: before;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.7;
            transition: var(--transition);
            transform: translateY(100%);
        }
		

        .project-card:hover .project-img::before {
            transform: translateY(0);
			object-fit: cover;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .project-content p {
            line-height: 1.6;
            margin-bottom: 1.2rem;
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .project-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
/*
        .project-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
*/
        .project-link {
            font-size: 0.9rem;
            font-family: var(--font-mono);
            color: var(--accent-tertiary-links);
            transition: all var(--transition-speed);
        }

        .project-link:hover {
            opacity: 1;
            color: var(--accent-tertiary);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background-color: var(--card-dark);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        body.light-mode .blog-card {
            background-color: var(--card-light);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .blog-card:hover {
            transform: translateY(-8px);
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-bottom: 0.5rem;
        }

        .blog-content h3 {
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .blog-content p {
            line-height: 1.6;
            margin-bottom: 1rem;
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .read-more {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        body.light-mode .read-more {
            color: var(--accent-tertiary-light);
        }

        /* Contact Section 
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 800px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--text-dark);
            font-family: 'JetBrains Mono', monospace;
            transition: var(--transition);
        }

        body.light-mode input, 
        body.light-mode textarea {
            background-color: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--text-light);
        }

        */

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        body.light-mode input:focus, 
        body.light-mode textarea:focus {
            border-color: var(--accent-tertiary-light);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        button {
            padding: 0.8rem 2rem;
            background-color: var(--accent);
            border: none;
            color: var(--bg-dark);
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'JetBrains Mono', monospace;
        }

        button:hover {
            background-color: var(--accent-alt);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 1.5rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.light-mode footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-dark);
            color: var(--text-dark);
            transition: var(--transition);
            position: relative;
        }

        body.light-mode .social-link {
            background-color: var(--card-light);
            color: var(--text-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .social-link:hover {
            transform: translateY(-5px);
            color: var(--accent);
        }

        body.light-mode .social-link:hover {
            color: var(--accent-tertiary-light);
        }

        .social-link span {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--card-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.8rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            white-space: nowrap;
        }

        body.light-mode .social-link span {
            background-color: var(--card-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .social-link:hover span {
            opacity: 1;
            visibility: visible;
        }

        .copy {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--bg-dark);
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 8px;
            padding: 2rem;
            position: relative;
            transform: translateY(50px);
            transition: var(--transition);
        }

        body.light-mode .modal-content {
            background-color: var(--bg-light);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        body.light-mode .close-modal {
            color: var(--text-light);
        }

        .blog-modal-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .blog-modal-date {
            opacity: 0.7;
            margin-bottom: 2rem;
            display: block;
        }

        .blog-modal-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .loading-screen.active {
            opacity: 1;
            visibility: visible;
        }

        .loading-content {
            text-align: center;
        }

        .loading-text {
            color: var(--accent);
            font-family: var(--font-mono);
            font-size: 1.5rem;
            margin-top: 1rem;
            position: relative;
        }

        .loading-icon {
            width: 50px;
            height: 50px;
            border: 3px solid var(--accent);
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        body.light-mode .loading-screen {
            background-color: var(--bg-light);
        }

        /* Mobile Nav */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
            position: fixed;
            top: 0.5rem;
            right: 2rem;
        }

        body.light-mode .mobile-nav-toggle {
            color: var(--text-light);
        }

        @media (min-width: 769px) {
            .mobile-nav-toggle {
                display: none;
            }
        }

        /* Mobile Navigation Styles */
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -300px; /* Start off-screen */
                width: 200px;
                height: 100vh;
                background-color: var(--card-dark);
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                display: flex;
                align-items: flex-start;
                padding-top: 5rem;
            }

            body.light-mode nav {
                background-color: var(--card-light);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                transform: translateX(-300px);
            }

            nav ul {
                flex-direction: column;
                gap: 2rem;
                text-align: left;
                padding: 0 2rem;
                width: 100%;
            }

            nav a {
                font-size: 1.1rem;
                padding: 0.75rem 0;
                display: block;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.light-mode nav a {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                backdrop-filter: blur(4px);
            }

            body.light-mode .nav-overlay {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .mobile-nav-toggle {
                display: block;
            }
        }

        /* Mobile Notice Banner */
        .mobile-notice {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--card-dark);
            color: var(--text-dark);
            padding: 0.8rem;
            z-index: 1000;
            text-align: center;
            font-size: 0.9rem;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .mobile-notice {
            background-color: var(--card-light);
            color: var(--text-light);
        }

        .mobile-notice.show {
            transform: translateY(0);
        }

        .mobile-notice p {
            margin: 0;
            padding-right: 30px;
        }

        #close-mobile-notice {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
        }

        @media (max-width: 768px) {
            .mobile-notice {
                display: block;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 1rem 0;
            }

            .projects-grid, .blog-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            section {
                padding: 4rem 0;
            }
			
		}
			
			
		.profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
            position: relative;
            z-index: 1;
            opacity: 0.9;
            filter: contrast(1.1) brightness(1.05);
            transition: all var(--transition-speed);
        }
		/**/
		.socials-access{
		
		font-size: clamp(1.8rem, 3vw, 2.5rem);
        
        margin: auto;
        position: relative;
        display: block;
        width: 100%;
        text-align: center;
        
		
        
		
		
		}

        .socials-acces h3{

            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: var(--accent);
            position: relative;
            
            display: inline-block;
            padding-bottom: 20px;
            

        }
		
		.socials-access::before {
            content: "";
            position: absolute;
            left: 50%; /* Center horizontally */
            transform: translateX(-50%); /* Adjust for the element's width */
            bottom: -8px;
            width: 300px;
            height: 3px;
            background-color: var(--accent);
            margin: auto;
            display: inline-block;
        }
		
		
		.test {
		
		text-align: center;
		
		
		 }


        
         .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .glow-btn {
            background-color: var(--accent-light-alt) !important;
            border-color: var(--accent-light-alt) !important;
            color: var(--bg-dark) !important;
            animation: glow 2s infinite;
            position: relative;
        }

        .glow-btn::before {
            display: none;
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 5px var(--accent-light-alt),
                            0 0 10px var(--accent-light-alt),
                            0 0 15px var(--accent-light-alt);
            }
            50% {
                box-shadow: 0 0 10px var(--accent-light-alt),
                            0 0 20px var(--accent-light-alt),
                            0 0 30px var(--accent-light-alt);
            }
            100% {
                box-shadow: 0 0 5px var(--accent-light-alt),
                            0 0 10px var(--accent-light-alt),
                            0 0 15px var(--accent-light-alt);
            }
        }

/*
        .cta-btn:hover {

            color : var(--bg-dark) !important;
            text-shadow: 0 0 2px rgba(0, 0, 0, 0.5) !important;
            box-shadow: 0 0 5px var(--accent-light-alt),
                            0 0 10px var(--accent-light-alt),
                            0 0 15px var(--accent-light-alt) !important;

            


        }

*/




