        :root {
            --primary-color: #6366f1;
            --secondary-color: #4f46e5;
            --light-color: #1e1b4b;
            --light-color: #f9fafb;
            --gray-color: #6b7280;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f3f4f6;
            color: #1f2937;
            padding-bottom: 60px; /* Space for mobile navbar */
        }
        
        /* Mobile Status Bar */
        .mobile-status-bar {
            background-color: var(--light-color);
            color: white;
            padding: 8px 15px;
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            position: sticky;
            top: 0;
            z-index: 1100;
        }
        
        .mobile-status-bar .time {
            font-weight: bold;
        }
        
        .mobile-status-bar .icons i {
            margin-left: 8px;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        
        .nav-item-mobile {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            color: var(--gray-color);
            transition: all 0.3s ease;
            width: 20%;
            text-decoration: none;
        }
        
        .nav-item-mobile.active {
            color: var(--primary-color);
        }
        
        .nav-item-mobile i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 40px 20px;
            border-radius: 0 0 30px 30px;
            margin-bottom: 30px;
        }
        
        .hero-content {
            text-align: center;
        }
        
        /* Cards */
        .card {
            border-radius: 16px;
            overflow: hidden;
            border: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 16px;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        
        .card-header {
            font-weight: 600;
            padding: 15px;
            background-color: #fff;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        /* Count Section */
        .count-section {
            margin-top: -50px;
            margin-bottom: 30px;
        }
        
        .count-box {
            background-color: white;
            border-radius: 16px;
            padding: 20px 15px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .count-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .count-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
            display: block;
        }
        
        /* Feature Cards */
        .features-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Server Cards */
        .server-card {
            border-radius: 16px;
            border: none;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .server-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .server-card .badge {
            font-size: 0.7rem;
            padding: 5px 10px;
            border-radius: 30px;
        }
        
        /* Buttons */
        .btn {
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        
        .btn-outline-light {
            border: 2px solid white;
            color: white;
        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        /* Server Tab Design */
        .nav-tabs {
            border: none;
            display: flex;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .nav-tabs .nav-link {
            border: none;
            border-radius: 50px;
            padding: 8px 16px;
            margin-right: 10px;
            color: var(--gray-color);
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Product Cards */
        .card-img-container {
            overflow: hidden;
            cursor: pointer;
        }
        
        .card-img-container img {
            transition: transform 0.5s ease;
        }
        
        .card-img-container:hover img {
            transform: scale(1.05);
        }
        
        .btn-shopee {
            background-color: #ee4d2d;
            color: white;
        }
        
        .btn-tokopedia {
            background-color: #42b549;
            color: white;
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fadeInUp-animation {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        /* Page transitions */
        .page-section {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.5s ease;
        }
        
        .page-section.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Loading spinner */
        .loading-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 0;
        }
        
        .loading-indicator p {
            margin-top: 10px;
            color: var(--gray-color);
        }
        
        /* Footer */
        .footer {
            background-color: var(--light-color);
            color: white;
            padding: 40px 0 100px; /* Extra padding to account for mobile nav */
        }
        
        /* Notification badge */
        .notification-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: var(--danger-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: bold;
        }
        
        /* Server status indicators */
        .status-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        
        .status-active {
            background-color: var(--success-color);
            box-shadow: 0 0 5px var(--success-color);
            animation: blink 2s infinite;
        }
        
        .status-inactive {
            background-color: var(--danger-color);
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        
        /* Floating action button */
        .fab {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .fab:hover {
            transform: scale(1.1);
            background-color: var(--secondary-color);
        }
        
        .fab i {
            font-size: 1.5rem;
        }
        
        /* App drawer animation */
        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        .app-drawer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-radius: 20px 20px 0 0;
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
            z-index: 1100;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .app-drawer.open {
            transform: translateY(0);
            animation: slideUp 0.3s ease forwards;
        }
        
        .drawer-indicator {
            width: 50px;
            height: 5px;
            background-color: #e5e7eb;
            border-radius: 3px;
            margin: 0 auto 15px;
        }
                /* Mobile Navbar Styles */
        .mobile-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1a237e; /* Deep indigo color */
            color: white;
            height: 70px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            padding: 0.5rem 0;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 100%;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            padding: 1rem;
            width: 20%;
            text-decoration: none;
        }
        
        .nav-item.active {
            color: white;
        }
        
        .nav-item i {
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }
        
        .nav-item span {
            font-size: 0.7rem;
            text-align: center;
            white-space: nowrap;
        }
        
        /* Badge for the notification */
        .badge-circle {
            position: absolute;
            top: 5px;
            right: 50%;
            transform: translateX(10px);
            background-color: #f44336;
            color: white;
            border-radius: 50%;
            padding: 0.25rem 0.45rem;
            font-size: 0.65rem;
            font-weight: bold;
        }
        
        /* Active item indicator */
        .nav-item::after {
            content: '';
            display: block;
            width: 0;
            height: 3px;
            background: #4fc3f7;
            transition: width 0.3s;
            margin-top: 5px;
        }
        
        .nav-item.active::after {
            width: 60%;
        }
        
        /* Center item with a different style */
        .nav-item-center {
            background-color: #4fc3f7;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transform: translateY(-15px);
            color: #1a237e;
        }
        
        .nav-item-center i {
            font-size: 1.8rem;
            margin: 0;
        }
        
        /* Mobile Status Bar */
        .mobile-status-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #1a237e;
            color: white;
            padding: 0.5rem 1rem;
            display: flex;
            justify-content: space-between;
            z-index: 1000;
            font-size: 0.8rem;
            height: 30px;
        }
        
        .time {
            font-weight: bold;
        }
        
        .icons i {
            margin-left: 0.5rem;
        }
         .poll-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            padding: 20px;
            margin-bottom: 20px;
        }
        .poll-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .server-option {
            flex: 1 0 calc(33.333% - 15px);
            min-width: 200px;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .server-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-color: #3498db;
        }
        .server-option.selected {
            background-color: #e1f0fa;
            border-color: #3498db;
            position: relative;
        }
        .server-option.selected::after {
            content: "✓";
            position: absolute;
            top: 5px;
            right: 10px;
            color: #3498db;
            font-weight: bold;
        }
        .server-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #2980b9;
        }
        .submit-btn:disabled {
            background-color: #95a5a6;
            cursor: not-allowed;
        }
        .other-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-top: 10px;
            display: none;
        }
        .results-container {
            margin-top: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
            display: none;
        }
        .results-title {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        .result-bar {
            height: 25px;
            background-color: #3498db;
            margin-bottom: 10px;
            border-radius: 3px;
            transition: width 1s ease-in-out;
        }
        .result-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .thank-you {
            text-align: center;
            padding: 20px;
            display: none;
        }
        .thank-you h2 {
            color: #27ae60;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .server-option {
                flex: 1 0 calc(50% - 15px);
            }
        }
        @media (max-width: 576px) {
            .server-option {
                flex: 1 0 100%;
            }
        }