        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #1a1a1a;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: #2d2d2d;
            padding: 10px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .logo {
            text-align: center;
            margin-bottom: 10px;
        }

        .logo h1 {
            color: #b71c1c;
            font-size: 2.8rem;
            letter-spacing: 1px;
        }

        .logo p {
            color: #9e9e9e;
            font-size: 1.2rem;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-top: 20px;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 15px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: #b71c1c;
            background-color: rgba(183, 28, 28, 0.1);
        }

        .hero {
            background: linear-gradient(rgba(95, 95, 95, 0.9), rgba(95, 95, 95, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/><path d="M0 0L100 100M100 0L0 100" stroke="%23444" stroke-width="1"/></svg>');
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #f5f5f5;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #cccccc;
        }

        .content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }

        .main-content {
            flex: 2;
            min-width: 300px;
        }

        .sidebar {
            flex: 1;
            min-width: 250px;
            background-color: rgba(95, 95, 95, 0.9);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .section-title {
            color: #b71c1c;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #b71c1c;
        }

        .info-box {
            background-color: #2d2d2d;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .info-box h3 {
            color: #b71c1c;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .redirect-section {
            text-align: center;
            padding: 50px 20px;
            background-color: white;
            border-radius: 8px;
            margin-bottom: 60px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .redirect-section p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            color: #2d2d2d;
        }

        .btn {
            display: inline-block;
            background-color: #b71c1c;
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
            border: 2px solid #b71c1c;
        }

        .btn:hover {
            background-color: transparent;
            color: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
        }

        footer {
            background-color: #2d2d2d;
            padding: 10px 0;
            text-align: center;
            border-top: 2px solid #b71c1c;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h3 {
            color: #b71c1c;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #9e9e9e;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 5px 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
        }
        #nomeCond {
        color: white;
        font-size: 0.75rem;
        }

        .status-container {
            margin: 10px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: Arial, sans-serif;
        }

        #statusServer {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: gray;
        }

        #statusTexto {
            font-size: 14px;
            font-weight: bold;
            color: red;
            display: none;
        }
