        :root {
            --primary: #2a2a2a;
            --secondary: #4a4a4a;
            --accent: #3498db;
            --text: #e0e0e0;
            --bg: #121212;
            --card-bg: #1e1e1e;
            --border: #333;
            --success: #2ecc71;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: var(--primary);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        section {
            padding: 80px 0;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .hero-content h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-content p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: var(--accent);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            margin: 10px auto 0;
        }

        .about {
            background-color: var(--bg);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 300px;
            border-radius: 50%;
            border: 5px solid var(--accent);
        }

        .about-text {
            flex: 2;
        }

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .fun-facts {
            margin-top: 20px;
        }

        .fun-facts h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .fun-facts ul {
            list-style-type: none;
        }

        .fun-facts li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .fun-facts li i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .lifestyle {
            background-color: var(--card-bg);
            padding: 60px 0;
        }

        .quotes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .quote-card {
            background-color: var(--primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .quote-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 8rem;
            color: rgba(52, 152, 219, 0.1);
            font-family: Georgia, serif;
        }

        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .projects {
            background-color: var(--bg);
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-image {
            height: 180px;
            background-color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .project-image i {
            font-size: 3rem;
            color: var(--accent);
        }

        .project-details {
            padding: 20px;
        }

        .project-details h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            color: var(--accent);
        }

        .project-details p {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .project-links {
            display: flex;
            gap: 10px;
        }

        .project-links a {
            display: inline-block;
            padding: 8px 15px;
            background-color: var(--secondary);
            color: var(--text);
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .project-links a:hover {
            background-color: var(--accent);
        }

        .dreamboard {
            background-color: var(--card-bg);
            position: relative;
        }

        .sticky-notes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .sticky-note {
            background-color: #feff9c;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transform: rotate(var(--rotate));
            color: #333;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .sticky-note:nth-child(1) {
            --rotate: -2deg;
            background-color: #feff9c; /* Yellow */
        }

        .sticky-note:nth-child(2) {
            --rotate: 1deg;
            background-color: #ff7eb9; /* Pink */
        }

        .sticky-note:nth-child(3) {
            --rotate: -1deg;
            background-color: #7afcff; /* Light blue */
        }

        .sticky-note:nth-child(4) {
            --rotate: 2deg;
            background-color: #a9e5ff; /* Soft blue */
        }

        .sticky-note:hover {
            transform: rotate(0) scale(1.05);
            z-index: 2;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .sticky-note h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            text-align: center;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }

        .sticky-note p {
            font-size: 0.9rem;
            text-align: center;
        }

        .tech-stack {
            background-color: var(--bg);
        }

        .tools-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .tool-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            width: 150px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .tool-item:hover {
            transform: translateY(-5px);
        }

        .tool-item i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .tool-item h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .gallery {
            background-color: var(--card-bg);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            background-color: var(--primary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .gallery-item pre {
            padding: 20px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9rem;
            overflow-x: auto;
            background-color: var(--card-bg);
            border-left: 3px solid var(--accent);
        }

        .gallery-item h3 {
            padding: 15px;
            font-size: 1.1rem;
            color: var(--accent);
            border-bottom: 1px solid var(--border);
        }

        .contact {
            background-color: var(--bg);
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 15px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--accent);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background-color: var(--accent);
            color: white;
            transform: translateY(-5px);
        }

        .contact-item a {
            color: var(--text);
            text-decoration: none;
        }

        .contact-item a:hover {
            color: var(--accent);
        }

        .contact-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        footer {
            background-color: var(--primary);
            padding: 30px 0;
            text-align: center;
        }

        footer p {
            color: var(--text);
            font-size: 0.9rem;
        }

        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loading-text {
            position: relative;
            font-size: 2rem;
            font-family: monospace;
            color: var(--accent);
        }

        .loading-text::after {
            content: "";
            position: absolute;
            right: -5px;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: var(--accent);
            animation: blink 0.7s infinite;
        }

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

        /* Mobile Menu */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            .about-content {
                flex-direction: column;
                text-align: center;
            }

            .project-grid, .sticky-notes, .tools-container, .gallery-container {
                grid-template-columns: 1fr;
            }

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

            .hero-content h2 {
                font-size: 1.2rem;
            }

            .sticky-note {
                min-height: 150px;
            }
        }

        /* Medium screens */
        @media (min-width: 769px) and (max-width: 1024px) {
            .project-grid, .sticky-notes {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
