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

        :root {
            --bg-primary: #faf8f3;
            --bg-secondary: #f5f3ed;
            --text-primary: #2d2d2d;
            --text-secondary: #666666;
            --accent-primary: #c9a96e;
            --accent-light: #d4b896;
            --accent-secondary: #8b7355;
            --neutral-light: #fef9f3;
            --border-color: #e5dcd0;
            --shadow: rgba(201, 169, 110, 0.08);
        }

        html.dark-mode {
            --bg-primary: #1a1a1a;
            --bg-secondary: #242424;
            --text-primary: #f5f5f5;
            --text-secondary: #c0c0c0;
            --accent-primary: #d4a574;
            --accent-light: #e0b896;
            --accent-secondary: #c9985e;
            --neutral-light: #2a2a2a;
            --border-color: #3d3d3d;
            --shadow: rgba(212, 165, 116, 0.12);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        @keyframes floatSoft {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.03; }
            50% { transform: translateY(-15px) scale(1.05); opacity: 0.06; }
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            z-index: -2;
            overflow: hidden;
        }

        .bg-gradient {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.08;
            pointer-events: none;
        }

        .bg-gradient-1 {
            top: 10%;
            left: 5%;
            background: var(--accent-primary);
            animation: floatSoft 8s ease-in-out infinite;
        }

        .bg-gradient-2 {
            bottom: 15%;
            right: 10%;
            background: var(--accent-light);
            animation: floatSoft 10s ease-in-out infinite reverse;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(250, 248, 243, 0.85);
            backdrop-filter: blur(10px);
            padding: 0.8rem 3rem;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        html.dark-mode header {
            background: rgba(26, 26, 26, 0.85);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
        }

        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-dark {
            display: none;
        }

        html.dark-mode .logo-light {
            display: none;
        }

        html.dark-mode .logo-dark {
            display: block;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #d4a574;
            letter-spacing: 2px;
        }

        .logo .tagline {
            font-size: 0.65rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 0.05rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            background: var(--neutral-light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px var(--shadow);
        }

        .theme-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px var(--shadow);
        }

        .theme-toggle .theme-icon {
            font-size: 1rem;
            color: transparent;
            -webkit-text-stroke: 1.5px var(--accent-primary);
            transition: all 0.3s ease;
        }

        html.dark-mode .theme-toggle {
            background: var(--accent-secondary);
        }

        html.dark-mode .theme-toggle .theme-icon {
            color: var(--accent-light);
            -webkit-text-stroke: 0;
        }

        .developer-section {
            margin-top: 80px;
            padding: 5rem 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            min-height: calc(100vh - 80px);
        }

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

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            color: #d4a574;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .developer-card {
            background: var(--bg-secondary);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px var(--shadow);
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .developer-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--accent-primary);
            object-fit: cover;
        }

        .developer-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--accent-primary);
            margin-bottom: 0.5rem;
        }

        .developer-card .role {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .developer-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

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

        .social-links a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            background: var(--accent-primary);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--accent-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
        }

        .back-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.95rem 2.5rem;
            background: var(--accent-primary);
            color: white;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 500;
            transition: all 0.4s ease;
            border: 2px solid var(--accent-primary);
        }

        .back-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow);
            background: var(--accent-secondary);
            border-color: var(--accent-secondary);
        }

        .footer {
            background: var(--bg-secondary);
            padding: 1.2rem 3rem;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .footer-content p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1.5rem;
            }

            .developer-section {
                padding: 3rem 1.5rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .developer-card {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.6rem 1rem;
            }

            .developer-section {
                padding: 2.5rem 1rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .developer-card {
                padding: 1.5rem;
            }
        }