/* Conversor de Arquivos - Estilos NinjaBr Theme */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

body.light-mode {
    background: #f5f5f5;
    color: #333;
}

/* Background Animado - Girando */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 106, 0, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 106, 0, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 20%, rgba(255, 106, 0, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(255, 106, 0, 0.1) 0%, transparent 35%);
    z-index: -2;
    will-change: transform;
    animation: backgroundShift 15s ease-in-out infinite;
}

body.light-mode::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 106, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255, 106, 0, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.02) 0%, transparent 60%);
}

@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    33% {
        transform: scale(1.3) rotate(120deg);
    }
    66% {
        transform: scale(1.2) rotate(240deg);
    }
}

/* Partículas */
.hero-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 106, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(255, 106, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px, 100px 100px;
        opacity: 0.6;
    animation: particlesFloat 15s linear infinite;
    transform-origin: center center;
}

.hero-particles::after {
    animation-duration: 20s;
    animation-direction: reverse;
    opacity: 0.4;
}

@keyframes particlesFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-100px, -100px) rotate(360deg);
    }
}

/* Hero Background com Ninja */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
}

/* Ninja Flutuante */
.ninja-silhouette {
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: 800px;
    height: 1000px;
    background-image: url('https://ninjabr.top/wp-content/uploads/2025/11/ninjabr.top_.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.7;
    filter: grayscale(50%) brightness(0.6);
    animation: ninjaFloat 20s ease-in-out infinite;
    transform-origin: center center;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.ninja-silhouette::before {
    display: none;
}

@keyframes ninjaFloat {
    0% { 
        transform: translate(0, 0) rotate(-3deg) scale(0.95);
        opacity: 0.6;
    }
    25% {
        transform: translate(-80px, -100px) rotate(3deg) scale(1.05);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-150px, -200px) rotate(-3deg) scale(1.1);
        opacity: 0.75;
    }
    75% {
        transform: translate(-80px, -100px) rotate(3deg) scale(1.05);
        opacity: 0.7;
    }
    100% { 
        transform: translate(0, 0) rotate(-3deg) scale(0.95);
        opacity: 0.6;
    }
}

/* Theme Toggle */
.theme-toggle {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    background: rgba(255, 106, 0, 0.2) !important;
    border: 1px solid rgba(255, 106, 0, 0.4) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
}

.theme-toggle:hover {
    background: rgba(255, 106, 0, 0.3) !important;
    border-color: rgba(255, 106, 0, 0.6) !important;
    transform: scale(1.05) !important;
}

.theme-toggle i {
    font-size: 18px !important;
    color: #FF6A00 !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.light-mode .theme-toggle {
    background: rgba(255, 106, 0, 0.1) !important;
    border-color: rgba(255, 106, 0, 0.3) !important;
}

body.light-mode .mobile-menu-toggle,
body.light-mode .mobile-menu-toggle-desktop {
    background: rgba(255, 106, 0, 0.1) !important;
    border-color: rgba(255, 106, 0, 0.3) !important;
}

body.light-mode .mobile-menu-toggle span,
body.light-mode .mobile-menu-toggle-desktop span {
    background: #FF6A00 !important;
}

body.light-mode .theme-toggle i {
    color: #FF6A00 !important;
}

/* Esconder menu desktop no mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle-desktop,
    .mobile-sidebar-desktop,
    .mobile-sidebar-overlay-desktop {
        display: none !important;
    }
}

/* Esconder menu mobile no desktop */
.mobile-menu-toggle,
.mobile-sidebar,
.mobile-sidebar-overlay {
    display: none !important;
}

/* Menu Hamburger Desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle-desktop {
        position: fixed !important;
        top: 20px !important;
        right: 70px !important; /* Espaço para o theme-toggle (40px + 10px gap + 20px margin) */
        z-index: 9997 !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 106, 0, 0.2) !important;
        border: 1px solid rgba(255, 106, 0, 0.4) !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu-toggle-desktop:hover {
        background: rgba(255, 106, 0, 0.3) !important;
    }
    
    .mobile-menu-toggle-desktop span {
        width: 22px !important;
        height: 2px !important;
        background: #FF6A00 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu-toggle-desktop.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .mobile-menu-toggle-desktop.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle-desktop.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    .mobile-sidebar-desktop {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
        z-index: 99999 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5) !important;
        display: block !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .mobile-sidebar-desktop::-webkit-scrollbar {
        display: none !important;
    }
    
    .mobile-sidebar-desktop.active {
        left: 0 !important;
    }
    
    .mobile-sidebar-overlay-desktop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 9995 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
        display: block !important;
    }
    
    .mobile-sidebar-overlay-desktop.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .mobile-sidebar-content-desktop {
        padding: 20px 20px 20px !important;
    }
    
    .mobile-sidebar-content-desktop a {
        display: block !important;
        padding: 6px 15px !important;
        color: #FF6A00 !important;
        text-decoration: none !important;
        font-size: 0.8rem !important;
        border-bottom: 1px solid rgba(255, 106, 0, 0.1) !important;
        transition: all 0.2s ease !important;
        line-height: 1.3 !important;
    }
    
    body.light-mode .mobile-sidebar-content-desktop a {
        color: #FF6A00 !important;
    }
    
    .mobile-sidebar-content-desktop a:hover {
        background: rgba(255, 106, 0, 0.1) !important;
        padding-left: 30px !important;
    }
}

/* Menu Hamburger Mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .mobile-menu-toggle,
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: block !important;
    }
    
    /* Menu Hamburger Mobile */
    .mobile-menu-toggle {
        position: fixed !important;
        top: 10px !important;
        right: 48px !important; /* Ajustado para alinhar com theme-toggle */
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 106, 0, 0.2) !important;
        border: 1px solid rgba(255, 106, 0, 0.4) !important;
        border-radius: 8px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        cursor: pointer !important;
        z-index: 100002 !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu-toggle span {
        width: 18px !important;
        height: 2px !important;
        background: #FF6A00 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    /* Menu Lateral */
    .mobile-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
        z-index: 100000 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5) !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .mobile-sidebar::-webkit-scrollbar {
        display: none !important;
    }
    
    .mobile-sidebar.active {
        left: 0 !important;
    }
    
    .mobile-sidebar-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .mobile-sidebar-overlay.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .mobile-sidebar-content {
        padding: 60px 15px 15px !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .mobile-sidebar-content a {
        display: block !important;
        padding: 8px 15px !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        margin-bottom: 6px !important;
        transition: all 0.2s ease !important;
        line-height: 1.4 !important;
    }
    
    body.light-mode .mobile-sidebar-content a {
        color: #333 !important;
    }
    
    .mobile-sidebar-content a:hover {
        background: rgba(255, 106, 0, 0.2) !important;
        transform: translateX(5px) !important;
    }
    
    /* Theme Toggle Mobile */
    .theme-toggle {
        top: 10px !important;
        right: 10px !important;
        width: 32px !important;
        height: 32px !important;
        z-index: 100003 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .theme-toggle i {
        font-size: 14px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Header */
.header {
    text-align: center;
    padding: 80px 20px 30px;
    position: relative;
    z-index: 10;
}

.header-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 106, 0, 0.3));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-logo {
        max-width: 120px;
        max-height: 60px;
    }
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF6A00 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.header p {
    font-size: 1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

body.light-mode .header p {
    color: #666;
}

/* Container Principal */
.utilidades-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Seção de Utilidades - IGUAL AO BUG REPORT */
.utilidades-section {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

body.light-mode .utilidades-section {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 106, 0, 0.3);
}

.utilidades-section h2 {
    color: #FF6A00;
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: center;
}

.utilidades-section h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #FF6A00;
    font-size: 1.2rem;
}

.utilidades-section p {
    color: #ccc;
    margin-bottom: 12px;
    text-align: center;
    font-size: 0.9rem;
}

body.light-mode .utilidades-section p {
    color: #666;
}

.input-group {
    margin-bottom: 12px;
    text-align: center;
}

.input-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
    font-size: 0.95rem;
}

body.light-mode .input-group label {
    color: #333;
}

/* File Upload Area - Compacto */
.file-upload-area {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
    padding: 20px 12px;
    border: 2px dashed rgba(255, 106, 0, 0.5);
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #FF6A00;
    background: rgba(255, 106, 0, 0.1);
    transform: scale(1.01);
}

.file-upload-area.dragover {
    border-color: #FF6A00;
    background: rgba(255, 106, 0, 0.15);
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 1.8rem;
    color: #FF6A00;
    margin-bottom: 6px;
    display: block;
}

.file-upload-text {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #fff;
}

body.light-mode .file-upload-text {
    color: #333;
}

.file-upload-subtext {
    color: #888;
    font-size: 0.9rem;
}

body.light-mode .file-upload-subtext {
    color: #666;
}

.file-upload-area.has-files {
    border-style: solid;
    border-color: rgba(40, 167, 69, 0.6);
    background: rgba(40, 167, 69, 0.1);
}

.input-group textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.8);
    color: #fff;
    font-family: inherit;
    margin: 0 auto;
    display: block;
    min-height: 100px;
    resize: vertical;
}

body.light-mode .input-group textarea {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.utilidades-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF6A00, #ff8c42);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 12px auto;
    width: auto;
    font-size: 0.95rem;
}

.utilidades-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
}

.utilidades-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.result-area {
    margin-top: 12px;
    padding: 12px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    font-size: 0.9rem;
}

body.light-mode .result-area {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 106, 0, 0.3);
}

.status-message {
    margin-top: 8px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
    font-size: 0.9rem;
}

.status-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 2px solid #28a745;
    display: block;
}

.status-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 2px solid #dc3545;
    display: block;
}

.loading {
    display: none;
    text-align: center;
    padding: 10px;
    color: #FF6A00;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.loading.active {
    display: block;
}

/* WhatsApp Button */
.ninja-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.ninja-message {
    background: linear-gradient(135deg, #FF6A00 0%, #ff8c42 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    position: relative;
    white-space: normal;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    will-change: transform, opacity;
    max-width: 200px;
    line-height: 1.3;
}

.ninja-message.show {
    opacity: 1;
    transform: translateX(0);
}

.ninja-message::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #FF6A00;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.ninja-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer !important;
    will-change: transform;
    position: relative;
    pointer-events: auto !important;
}

.ninja-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: ninjaPulse 2s ease-in-out infinite;
}

.ninja-button img {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 6px 20px rgba(255, 106, 0, 0.5));
    transition: transform 0.3s ease;
    will-change: transform;
}

.ninja-whatsapp:hover .ninja-button {
    transform: scale(1.1);
}

.ninja-whatsapp:hover .ninja-button img {
    transform: rotate(10deg);
}

.ninja-whatsapp.active-assistente .ninja-button::before {
    opacity: 1;
    animation: ninjaPulse 1.5s ease-in-out infinite;
}

.ninja-whatsapp.active-assistente .ninja-button img {
    filter: drop-shadow(0 6px 25px rgba(255, 106, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 140, 66, 0.6));
}

@keyframes ninjaPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 80px 15px 30px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header p {
        font-size: 0.85rem;
    }
    
    .utilidades-container {
        padding: 15px;
    }
    
    .utilidades-section {
        padding: 15px;
        margin: 10px 0;
        border-radius: 12px;
    }
    
    .utilidades-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .utilidades-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .utilidades-section p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .file-upload-area {
        padding: 20px 12px;
        max-width: 100%;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .file-upload-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .file-upload-text {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .file-upload-subtext {
        font-size: 0.75rem;
    }
    
    .input-group {
        margin-bottom: 12px;
    }
    
    .input-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .utilidades-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 12px auto;
    }
    
    .result-area {
        max-height: 250px;
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .status-message {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin: 8px 0;
    }
    
    .loading {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .bug-report-section {
        padding: 20px 15px;
        margin: 15px auto;
        border-radius: 15px;
    }
    
    .bug-report-section h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .bug-form input,
    .bug-form textarea,
    .bug-form select {
        padding: 10px;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .bug-form .whatsapp-container {
        flex-direction: row;
        gap: 6px;
    }
    
    .bug-form .whatsapp-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .bug-form .whatsapp-container select {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        padding: 10px 30px 10px 10px;
        font-size: 0.85rem;
    }
    
    .bug-form .whatsapp-container input {
        width: 100%;
    }
    
    .bug-form textarea {
        min-height: 80px;
    }
    
    .ninja-silhouette {
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 300px !important;
        height: 400px !important;
        bottom: auto !important;
        right: auto !important;
        opacity: 0.7 !important;
        z-index: 0 !important;
        animation: none !important;
        filter: grayscale(0%) brightness(0.9) !important;
        display: block !important;
    }
    
    .hero-background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 100% !important;
        background: none !important;
        display: block !important;
        z-index: 0 !important;
    }
    
    .hero-particles {
        display: none !important;
    }
    
    .ninja-button {
        width: 80px;
        height: 80px;
    }
    
    .ninja-button img {
        width: 70px;
        height: 70px;
    }
    
    .ninja-message {
        max-width: calc(100vw - 140px) !important;
    }
    
    .theme-toggle {
        top: 10px !important;
        right: 10px !important;
        width: 32px !important;
        height: 32px !important;
        z-index: 100003 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .theme-toggle i {
        font-size: 14px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Bug Report Section */
.bug-report-section {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    color: #fff;
}

body.light-mode .bug-report-section {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 106, 0, 0.3);
}

.bug-report-section h2 {
    color: #FF6A00;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.bug-form input,
.bug-form textarea,
.bug-form select {
    width: 100%;
    padding: 12px;
        margin-bottom: 15px;
    border: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.8);
    color: #fff;
    font-family: inherit;
}

body.light-mode .bug-form input,
body.light-mode .bug-form textarea,
body.light-mode .bug-form select {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.bug-form .whatsapp-container {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 5px;
}

.bug-form .whatsapp-container select {
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 120px;
    margin-bottom: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6A00' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
    font-size: 0.9rem;
}

.bug-form .whatsapp-container select optgroup {
    font-weight: bold;
    color: #FF6A00;
    background: rgba(20, 20, 20, 0.8);
}

.bug-form .whatsapp-container select option {
    padding: 8px;
    background: rgba(20, 20, 20, 0.8);
    color: #fff;
}

body.light-mode .bug-form .whatsapp-container select optgroup {
    background: rgba(255, 255, 255, 0.9);
    color: #FF6A00;
}

body.light-mode .bug-form .whatsapp-container select option {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.bug-form .whatsapp-container input {
    flex: 1;
    margin-bottom: 0;
}

.bug-form .whatsapp-hint {
    color: #aaa;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
}

body.light-mode .bug-form .whatsapp-hint {
    color: #666;
}

.bug-form textarea {
    min-height: 100px;
    resize: vertical;
}
