   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #121212;
            color: #f0f0f0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background-color: #1e1e1e;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            min-height: 700px;
        }

        .login-section {
            flex: 1;
            padding: 50px 40px;
            background-color: #1a1a1a;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .news-section {
            flex: 1;
            padding: 50px 40px;
            background-color: #252525;
            overflow-y: auto;
        }

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

        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: #C20092;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }

        .logo-icon i {
            font-size: 24px;
            color: #1a1a1a;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #f0f0f0;
        }

        .logo-text span {
            color: #C20092;
        }

        .login-title {
            font-size: 32px;
            margin-bottom: 10px;
            color: #f0f0f0;
            text-align: center;
        }

        .login-subtitle {
            color: #aaa;
            margin-bottom: 40px;
            font-size: 16px;
            text-align: center;
        }

        .tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 2px solid #333;
        }

        .tab {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            cursor: pointer;
            font-weight: 600;
            color: #aaa;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .tab.active {
            color: #C20092;
            border-bottom-color: #C20092;
        }

        .tab:hover {
            color: #f0f0f0;
            background-color: rgba(0, 194, 146, 0.1);
        }

        .form-container {
            display: none;
        }

        .form-container.active {
            display: block;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ccc;
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            background-color: #2a2a2a;
            border: 2px solid #333;
            border-radius: 8px;
            color: #f0f0f0;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: #C20092;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 194, 146, 0.2);
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 40px;
            color: #777;
            font-size: 18px;
        }

        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .remember {
            display: flex;
            align-items: center;
        }

        .remember input {
            margin-right: 8px;
            accent-color: #C20092;
        }

        .forgot-link {
            color: #C20092;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .forgot-link:hover {
            color: #00e6aa;
            text-decoration: underline;
        }

        .login-button {
            width: 100%;
            padding: 16px;
            background-color: #C20092;
            color: #1a1a1a;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }

        .login-button:hover {
            background-color: #00e6aa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 194, 146, 0.3);
        }

        .divider {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            color: #777;
        }

        .divider::before, .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background-color: #444;
        }

        .divider span {
            padding: 0 15px;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #2a2a2a;
            color: #f0f0f0;
            border: 1px solid #444;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-button:hover {
            transform: translateY(-3px);
            border-color: #C20092;
        }

        .signup-link {
            text-align: center;
            margin-top: 30px;
            color: #aaa;
        }

        .signup-link a {
            color: #C20092;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        /* Sección de Noticias */
        .news-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #f0f0f0;
            display: flex;
            align-items: center;
        }

        .news-title i {
            color: #C20092;
            margin-right: 10px;
        }

        .news-subtitle {
            color: #aaa;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .news-card {
            background-color: #2a2a2a;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border-left: 4px solid #333;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-5px);
            border-left-color: #C20092;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .news-card h3 {
            color: #f0f0f0;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .news-card p {
            color: #bbb;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .news-date {
            color: #C20092;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .news-date i {
            margin-right: 5px;
        }

        .news-category {
            display: inline-block;
            padding: 4px 10px;
            background-color: rgba(0, 194, 146, 0.1);
            color: #C20092;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 10px;
        }

        .news-highlight {
            border-left-color: #C20092;
            background-color: rgba(0, 194, 146, 0.05);
        }

        /* Cuenta Regresiva */
        #sCuentaRegresivaDIV {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid rgba(0, 194, 146, 0.3);
            box-shadow: 0 0 20px rgba(0, 194, 146, 0.3);
            display: none;
        }

        .widget-usage {
            text-align: center;
        }

        .widget-usage b {
            color: #C20092;
            font-size: 18px;
            display: block;
            margin-bottom: 15px;
        }

        .widget-usage section {
            color: #f0f0f0;
            font-size: 16px;
        }

        .widget-usage span {
            color: #00e6aa;
            font-weight: bold;
        }

        /* Modal para móviles */
        .mobile-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }

        .mobile-modal-content {
            background-color: #1e1e1e;
            border-radius: 15px;
            padding: 30px;
            width: 90%;
            max-width: 400px;
            border: 2px solid #C20092;
            text-align: center;
        }

        .mobile-modal h2 {
            color: #C20092;
            margin-bottom: 20px;
        }

        .mobile-modal button {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .mobile-modal .browser {
            background-color: #2a2a2a;
            color: #f0f0f0;
            border: 2px solid #C20092;
        }

        .mobile-modal .apk {
            background-color: #C20092;
            color: #1a1a1a;
        }

        .mobile-modal .info {
            background-color: transparent;
            color: #C20092;
            border: 2px solid #C20092;
        }

        .mobile-modal .back {
            background-color: #333;
            color: #f0f0f0;
            margin-top: 20px;
        }

        .mobile-modal button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 194, 146, 0.3);
        }

        .instructions {
            display: none;
        }

        /* Responsividad */
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                max-width: 500px;
            }

            .login-section, .news-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
            .login-section, .news-section {
                padding: 30px 20px;
            }

            .options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }