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

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .logo {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .brand {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .theme-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .maintenance-section {
            background: white;
            border-radius: 16px;
            padding: 4rem 3rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        .warning-icon {
            font-size: 5rem;
            margin-bottom: 2rem;
            display: inline-block;
            animation: pulse 2s infinite;
            color: #dc2626;
        }

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

        .maintenance-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 1.5rem;
        }

        .site-url {
            font-size: 1.25rem;
            color: #dc2626;
            font-weight: 600;
            margin-bottom: 2rem;
            background: #fef2f2;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            border: 2px solid #fecaca;
        }

        .warning-message {
            font-size: 1.5rem;
            color: #dc2626;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .description {
            font-size: 1.125rem;
            color: #64748b;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .info-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
            background: white;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #991b1b);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
        }

        .info-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .info-description {
            color: #64748b;
            line-height: 1.6;
        }

        .contact-section {
            background: #fef2f2;
            border: 2px solid #fecaca;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 1rem;
        }

        .contact-info {
            color: #64748b;
            margin-bottom: 1rem;
        }

        .contact-email {
            color: #dc2626;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.125rem;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        .footer {
            background: #1e293b;
            color: white;
            padding: 2rem 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }

        .footer-text {
            color: #94a3b8;
            font-size: 0.875rem;
        }

        /* Dark Theme Styles */
        [data-theme="dark"] {
            background: #0f172a;
            color: #e2e8f0;
        }

        [data-theme="dark"] .header {
            background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
        }

        [data-theme="dark"] .maintenance-section,
        [data-theme="dark"] .info-card {
            background: #1e293b;
            border-color: #334155;
            color: #e2e8f0;
        }

        [data-theme="dark"] .info-card {
            background: #334155;
            border-color: #475569;
        }

        [data-theme="dark"] .info-card:hover {
            background: #475569;
        }

        [data-theme="dark"] .maintenance-title,
        [data-theme="dark"] .warning-message,
        [data-theme="dark"] .contact-title {
            color: #ef4444;
        }

        [data-theme="dark"] .site-url {
            background: #7f1d1d;
            color: #fca5a5;
            border-color: #991b1b;
        }

        [data-theme="dark"] .description,
        [data-theme="dark"] .info-description,
        [data-theme="dark"] .contact-info {
            color: #94a3b8;
        }

        [data-theme="dark"] .info-title {
            color: #f1f5f9;
        }

        [data-theme="dark"] .contact-section {
            background: #1e293b;
            border-color: #991b1b;
        }

        [data-theme="dark"] .contact-email {
            color: #ef4444;
        }

        [data-theme="dark"] .footer {
            background: #020617;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .main-container {
                padding: 2rem 1rem;
            }

            .maintenance-section {
                padding: 3rem 2rem;
            }

            .maintenance-title {
                font-size: 2rem;
            }

            .warning-icon {
                font-size: 4rem;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }
        }