    /* =========================================
       RESET & BASE STYLES
       ========================================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    /* =========================================
       THEME VARIABLES - LIGHT (DEFAULT)
       ========================================= */
    :root {
        /* Light Theme Colors (Default) */
        --bg-primary: #f8fafc;
        --bg-secondary: #ffffff;
        --bg-card: #ffffff;
        --bg-navbar: rgba(255, 255, 255, 0.95);
        --bg-footer: rgba(255, 255, 255, 0.95);

        /* Text Colors */
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --text-muted: #64748b;
        --text-accent: #0284c7;

        /* Border Colors */
        --border: #e2e8f0;
        --border-primary: rgba(2, 132, 199, 0.3);
        --border-secondary: rgba(100, 116, 139, 0.2);

        /* Accent Colors */
        --primary: #0284c7;
        --primary-dark: #0369a1;
        --primary-light: rgba(2, 132, 199, 0.1);
        --secondary-color: #7c3aed;
        --success: #059669;
        --warning: #d97706;
        --error: #dc2626;

        /* Social Colors */
        --github-color: #333;
        --github-light: #f6f8fa;
        --github-dark: #24292e;
        --github-hover: #444;
        --whatsapp-color: #25D366;
        --linkedin-color: #0077B5;
        --twitter-color: #1DA1F2;
        --facebook-color: #1877F2;

        /* Hover Colors */
        --hover-bg: rgba(135, 206, 235, 0.15);
        --hover-border: rgba(2, 132, 199, 0.5);
        --hover-text: #0284c7;
        --hover-glow: 0 0 40px rgba(2, 132, 199, 0.2);

        /* Gradients */
        --gradient-primary: linear-gradient(135deg, #0284c7, #0ea5e9);
        --gradient-dark: linear-gradient(135deg, #f8fafc, #e2e8f0);
        --gradient-secondary: linear-gradient(135deg, #7c3aed, #ec4899);
        --gradient-card: linear-gradient(145deg, #ffffff, #f1f5f9);
        --gradient-button: linear-gradient(90deg, #0284c7, #0ea5e9);

        /* Shadows */
        --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.2);

        /* Glass Effects */
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(2, 132, 199, 0.1);
        --navbar-gradient-bottom: rgba(255, 255, 255, 0.95);
        --navbar-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 8px rgba(0, 0, 0, 0.04);

        /* Cursor Trail Color */
        --cursor-trail-color: rgba(2, 132, 199, 0.5);
    }

    /* Dark Theme Variables */
    body.theme-dark {
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-card: #1e293b;
        --bg-navbar: rgba(30, 41, 59, 0.95);
        --bg-footer: rgba(30, 41, 59, 0.95);
        --text-primary: #ffffff;
        --text-secondary: #94a3b8;
        --text-muted: #64748b;
        --text-accent: #38bdf8;
        --border: #334155;
        --border-primary: rgba(56, 189, 248, 0.3);
        --border-secondary: rgba(148, 163, 184, 0.2);
        --primary: #38bdf8;
        --primary-dark: #0ea5e9;
        --primary-light: rgba(56, 189, 248, 0.1);
        --secondary-color: #8b5cf6;
        --success: #10b981;
        --warning: #f59e0b;
        --error: #ef4444;
        --hover-bg: rgba(173, 216, 230, 0.1);
        --hover-border: rgba(135, 206, 235, 0.5);
        --hover-text: #87ceeb;
        --hover-glow: 0 0 40px rgba(135, 206, 235, 0.4);
        --gradient-primary: linear-gradient(135deg, #38bdf8, #3b82f6);
        --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
        --gradient-secondary: linear-gradient(135deg, #8b5cf6, #ec4899);
        --gradient-card: linear-gradient(145deg, #1e293b, #0f172a);
        --gradient-button: linear-gradient(90deg, #38bdf8, #3b82f6);
        --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
        --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.3);
        --glass-bg: rgba(30, 41, 59, 0.7);
        --glass-border: rgba(56, 189, 248, 0.1);
        --navbar-gradient-bottom: rgba(37, 62, 104, 0.65);
        --navbar-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        --cursor-trail-color: rgba(56, 189, 248, 0.5);
    }

    /* =========================================
       BODY & GENERAL STYLES
       ========================================= */
    body {
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        transition: background 0.3s ease, color 0.3s ease;
    }

    /* =========================================
   NAVBAR STYLES
   ========================================= */
    .navbar {
        position: sticky;
        top: 20px;
        z-index: 1000;
        /* Use variables here so it changes with the theme */
        background: linear-gradient(to bottom,
                var(--glass-bg),
                var(--navbar-gradient-bottom));
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 15px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto 40px auto;
        transition: all 0.3s ease;
        box-shadow: var(--navbar-shadow);
        /* Uses the new shadow variable */
    }

    /* Update hover to keep the shadow looking good */
    .navbar:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Fix for Navbar links in Light Mode */
    body.light-mode .nav-links a {
        color: var(--text-primary);
        font-weight: 600;
        /* Slightly bolder for readability */
    }

    body.light-mode .nav-logo {
        color: var(--primary-color);
    }

    .nav-logo {
        color: var(--primary-color);
        font-size: 1.45rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    /* Desktop Navigation Links */
    .nav-links {
        list-style: none;
        display: flex;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 500;
        position: relative;
        padding: 4px 0;
        transition: color 0.25s ease;
    }

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

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

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

    .nav-links a:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 4px;
        border-radius: 4px;
    }

    /* Nav left and right */
    .nav-left {
        display: flex;
        align-items: center;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    /* Dropdown button */
    .drop-btn {
        background: none;
        border: none;
        color: var(--text-primary);
        font-weight: 500;
        cursor: pointer;
        padding: 4px 0;
        position: relative;
        transition: color 0.25s ease;
    }

    .drop-btn::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.25s ease;
    }

    .drop-btn:hover {
        color: var(--primary-color);
    }

    .drop-btn:hover::after {
        width: 70%;
    }

    .drop-btn:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 4px;
        border-radius: 4px;
    }

    /* Dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 120%;
        right: 0;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 10px;
        min-width: 180px;
        box-shadow: var(--navbar-shadow);
        z-index: 1001;
    }

    .dropdown-menu li {
        padding: 8px 10px;
    }

    .dropdown-menu a {
        font-size: 0.9rem;
        color: var(--text-primary);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Hamburger Icon */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        width: 30px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
    .theme-toggle {
        background: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        padding: 8px 14px;
        border-radius: 20px;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        backdrop-filter: blur(10px);
        font-weight: 600;
        gap: 8px;
    }

    .theme-toggle:hover {
        background-color: var(--primary-color);
        color: var(--bg-primary);
        transform: scale(1.05);
        box-shadow: var(--shadow-glow);
    }

    .theme-toggle:active {
        transform: scale(0.95);
    }

    .theme-toggle:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* =========================================
       MAIN CONTENT STYLES
       ========================================= */
    .bug-report-wrapper {
        margin-top: 120px;
        min-height: calc(100vh - 120px);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .bug-report-container {
        max-width: 800px;
        width: 100%;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
        margin-bottom: 40px;
    }

    .header {
        text-align: center;
        margin-bottom: 40px;
    }

    .header-icon {
        font-size: 48px;
        color: var(--error);
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 10px;
    }

    .subtitle {
        color: var(--text-secondary);
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
    }

    /* =========================================
       FORM STYLES
       ========================================= */
    form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        border: 2px solid var(--border);
        border-radius: 12px;
        background: var(--bg-secondary);
        color: var(--text-primary);
        font-size: 16px;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: var(--shadow-glow);
        transform: translateY(-2px);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }
    }

    .file-upload {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .file-upload input[type="file"] {
        display: none;
    }

    .file-upload-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        border: 2px dashed var(--border);
        border-radius: 12px;
        background: var(--bg-secondary);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .file-upload-label:hover {
        border-color: var(--primary);
        background: var(--primary-light);
        color: var(--primary);
    }

    .file-upload-label i {
        font-size: 20px;
    }

    .file-list {
        margin-top: 10px;
        font-size: 14px;
        color: var(--text-muted);
    }

    /* =========================================
       BUTTON STYLES
       ========================================= */
    button[type="submit"] {
        background: var(--gradient-button);
        color: white;
        border: none;
        padding: 18px 32px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        box-shadow: var(--shadow-md);
    }

    button[type="submit"]:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    button[type="submit"]:active {
        transform: translateY(-1px);
    }

    button[type="submit"]:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* =========================================
       SUCCESS/ERROR MESSAGES
       ========================================= */
    .success-message,
    .error-message {
        position: fixed;
        top: 100px;
        right: -400px;
        width: 350px;
        padding: 20px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 500;
        z-index: 1001;
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .success-message {
        background: rgba(5, 150, 105, 0.95);
        border: 1px solid rgba(5, 150, 105, 0.3);
    }

    .theme-dark .success-message {
        background: rgba(16, 185, 129, 0.95);
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .error-message {
        background: rgba(220, 38, 38, 0.95);
        border: 1px solid rgba(220, 38, 38, 0.3);
    }

    .theme-dark .error-message {
        background: rgba(239, 68, 68, 0.95);
        border: 1px solid rgba(239, 68, 68, 0.3);
    }

    .success-message.show,
    .error-message.show {
        transform: translateX(-420px);
    }

    .success-message i,
    .error-message i {
        font-size: 22px;
    }

    /* =========================================
       BACK LINK
       ========================================= */
    .back-link {
        text-align: center;
        margin-top: 30px;
    }

    .back-link a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .back-link a:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
    }

    /* =========================================
       FOOTER STYLES
       ========================================= */
    .footer {
        background: linear-gradient(180deg, #f8fafc, #e5e7eb);
        color: #1f2933;
        padding: 60px 80px 20px;
        font-family: "Inter", sans-serif;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 50px;
    }

    .footer-brand h3 {
        font-size: 22px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #111827;
    }

    .footer-brand p {
        margin: 12px 0 20px;
        color: #4b5563;
        font-size: 14px;
    }

    .footer-social-icons {
        display: flex;
        gap: 14px;
    }

    .footer-social-icons a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f2933;
        transition: all 0.3s ease;
    }

    .footer-social-icons a:hover {
        background: #2563eb;
        color: #ffffff;
    }

    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 14px;
        position: relative;
        color: #111827;
    }

    .footer-links h4::after {
        content: "";
        width: 30px;
        height: 2px;
        background: #2563eb;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul li a {
        text-decoration: none;
        color: #4b5563;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links ul li a:hover {
        color: #111827;
    }

    .footer-bottom {
        border-top: 1px solid #d1d5db;
        margin-top: 50px;
        padding-top: 15px;
        text-align: center;
        font-size: 14px;
        color: #4b5563;
    }

    /* =========================
   FOOTER — DARK MODE
   ========================= */

    .theme-dark .footer {
        background: linear-gradient(180deg, #0f172a, #020617);
        color: #e5e7eb;
    }

    .theme-dark .footer-brand h3 {
        color: #ffffff;
    }

    .theme-dark .footer-brand p {
        color: #9ca3af;
    }

    .theme-dark .footer-social-icons a {
        background: #020617;
        color: #e5e7eb;
    }

    .theme-dark .footer-social-icons a:hover {
        background: #2563eb;
        color: #ffffff;
    }

    .theme-dark .footer-links h4 {
        color: #ffffff;
    }

    .theme-dark .footer-links ul li a {
        color: #9ca3af;
    }

    .theme-dark .footer-links ul li a:hover {
        color: #ffffff;
    }

    .theme-dark .footer-bottom {
        border-top: 1px solid #1e293b;
        color: #9ca3af;
    }

    @media (max-width: 900px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .footer {
            padding: 50px 30px;
        }

        .footer-container {
            grid-template-columns: 1fr;
        }
    }

    /* =========================================
       RESPONSIVE DESIGN
       ========================================= */
    @media (max-width: 768px) {
        .navbar {
            padding: 15px 20px;
        }

        .nav-links {
            gap: 15px;
        }

        .bug-report-container {
            padding: 30px 20px;
        }

        .header h1 {
            font-size: 28px;
        }

        .subtitle {
            font-size: 16px;
        }

        button[type="submit"] {
            padding: 16px 24px;
            font-size: 16px;
        }
    }

    /* =========================================
       ANIMATIONS
       ========================================= */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .bug-report-container {
        animation: fadeInUp 0.6s ease-out;
    }

    /* =========================================
       ACCESSIBILITY
       ========================================= */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* Focus styles for keyboard navigation */
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* =========================================
   CURSOR TRAIL STYLES
   ========================================= */
    .circle-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
        overflow: hidden;
    }

    .circle {
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--cursor-trail-color);
        pointer-events: none;
        z-index: 9999;
        transition: opacity 0.3s ease;
        mix-blend-mode: screen;
    }