        :root {
            --purple-primary: #8A2BE2;
            --purple-secondary: #9370DB;
            --purple-light: #D8BFD8;
            --pink-primary: #FF69B4;
            --pink-secondary: #FFB6C1;
            --pink-light: #FFE4E9;
            --background: #FAF5FF;
            --card-bg: #FFFFFF;
            --text-dark: #4B0082;
            --text-light: #6A5ACD;
            --shadow: rgba(138, 43, 226, 0.2);
            --text-primary: #333;
            --text-secondary: #666;
            --transition: all 0.3s ease;
        }

        [data-theme="dark"] {
            --purple-primary: #A97EEB;
            --purple-secondary: #8A63D2;
            --purple-light: #4A3B66;
            --pink-primary: #FF85C1;
            --pink-secondary: #B34D7E;
            --pink-light: #5A3A49;
            --background: #1A1A2E;
            --card-bg: #242439;
            --text-dark: #E2DAEB;
            --text-light: #B8B0C2;
            --shadow: rgba(0, 0, 0, 0.3);
            --text-primary: #F0E6FF;
            --text-secondary: #C2B5D6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
            transition: var(--transition);
        }

        body {
            background: linear-gradient(135deg, var(--background) 0%, var(--purple-light) 100%);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            transition: background 0.5s ease;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px;
            background: linear-gradient(135deg, var(--purple-primary) 0%, var(--pink-primary) 100%);
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px var(--shadow);
            color: white;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            font-size: 40px;
            color: white;
            background: var(--pink-secondary);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
        }

        .logo-subtext {
            font-size: 14px;
            opacity: 0.9;
        }

        .header-controls {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            width: 60px;
            height: 32px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 5px;
        }

        .theme-toggle::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            transition: transform 0.3s ease;
        }

        [data-theme="dark"] .theme-toggle::before {
            transform: translateX(28px);
        }

        .theme-toggle i {
            font-size: 14px;
            color: white;
            z-index: 1;
        }

        .theme-toggle .fa-sun {
            margin-right: auto;
        }

        .theme-toggle .fa-moon {
            margin-left: auto;
        }

        .search-box {
            display: flex;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 12px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: white;
            outline: none;
            width: 250px;
            font-size: 16px;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.8);
        }

        .search-box button {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
        }

        .dashboard {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 25px;
        }

        .sidebar {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 20px;
            box-shadow: 0 10px 25px var(--shadow);
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--purple-light);
        }

        .sidebar-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--purple-primary);
        }

        .filter-count {
            background: var(--pink-light);
            color: var(--pink-primary);
            font-size: 14px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .filters label {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
            padding: 12px 10px;
            border-radius: 12px;
            transition: all 0.3s;
            background: var(--pink-light);
        }

        .filters label:hover {
            background: var(--purple-light);
            transform: translateX(5px);
        }

        .filters input {
            margin-right: 12px;
            accent-color: var(--purple-primary);
            width: 20px;
            height: 20px;
        }

        .filter-text {
            font-weight: 600;
            color: var(--text-light);
        }

        .main-content {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 25px var(--shadow);
        }

        .status-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--purple-light);
        }

        .status-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--purple-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .status-title i {
            color: var(--pink-primary);
        }

        .sort-filter {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .sort-select {
            background: var(--pink-light);
            color: var(--text-dark);
            border: 2px solid var(--purple-light);
            border-radius: 12px;
            padding: 10px 15px;
            cursor: pointer;
            font-weight: 600;
        }

        .status-indicators {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .indicator {
            display: flex;
            align-items: center;
            background: var(--pink-light);
            padding: 10px 18px;
            border-radius: 15px;
            font-size: 15px;
            font-weight: 700;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .indicator.online {
            color: #2ecc71;
            background: #eafaf1;
        }

        .indicator.offline {
            color: #ff2e2e;
            background: #ffeaea;
        }

        .indicator.warning {
            color: #f39c12;
            background: #fef5e7;
        }

        [data-theme="dark"] .indicator.online {
            background: rgba(46, 204, 113, 0.2);
        }

        [data-theme="dark"] .indicator.offline {
            background: rgba(255, 46, 46, 0.2);
        }

        [data-theme="dark"] .indicator.warning {
            background: rgba(243, 156, 18, 0.2);
        }

        .updates-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .update-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 25px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 5px 15px var(--shadow);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .update-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--purple-primary) 0%, var(--pink-primary) 100%);
        }

        .update-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px var(--shadow);
            border-color: var(--purple-light);
        }

        .update-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .update-title {
            font-weight: 800;
            font-size: 20px;
            color: var(--purple-primary);
            margin-right: 10px;
        }

        .update-date {
            color: var(--text-light);
            font-size: 14px;
            white-space: nowrap;
            background: var(--pink-light);
            padding: 5px 10px;
            border-radius: 10px;
            font-weight: 600;
        }

        .update-content {
            margin-bottom: 20px;
            color: var(--text-secondary);
            flex-grow: 1;
            line-height: 1.7;
        }

        .update-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 14px;
            color: var(--text-light);
        }

        .update-meta span {
            display: flex;
            align-items: center;
            background: var(--pink-light);
            padding: 6px 12px;
            border-radius: 10px;
            font-weight: 600;
            gap: 5px;
        }

        .loading {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
            grid-column: 1 / -1;
        }

        .loading i {
            font-size: 50px;
            margin-bottom: 20px;
            color: var(--pink-primary);
        }

        .loading-text {
            font-size: 20px;
            font-weight: 700;
        }

        .error-message {
            text-align: center;
            padding: 40px 20px;
            color: #ff2e2e;
            grid-column: 1 / -1;
            background: #ffeaea;
            border-radius: 20px;
        }

        .error-message i {
            font-size: 40px;
            margin-bottom: 15px;
        }

        footer {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            color: var(--text-light);
            font-weight: 600;
        }

        .heart {
            color: var(--pink-primary);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .dashboard {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
                margin-bottom: 20px;
            }
            
            .updates-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            
            .logo {
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .header-controls {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .search-box {
                width: 100%;
                max-width: 400px;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .status-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .status-indicators {
                justify-content: center;
            }
            
            .updates-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }
            
            .logo-text {
                font-size: 24px;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
            
            .update-header {
                flex-direction: column;
            }
            
            .update-date {
                margin-top: 10px;
                align-self: flex-start;
            }
            
            .update-meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .status-title {
                font-size: 22px;
            }
        }