 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .main-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 15px;
        }
        
        .container {
            max-width: 800px;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        /* HEADER COMPACTO */
        header {
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
            color: white;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Eliminamos el efecto de fondo flotante para simplificar */
        /* header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s linear infinite;
        } */
        
        .logo {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        h1 {
            font-size: 2rem;
            margin-bottom: 8px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        
        .tagline {
            font-size: 0.95rem;
            opacity: 0.9;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.5;
        }
        
        .tagline small {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        .url-shortener {
            padding: 30px;
        }
        
        /* MENSAJE DE ERROR POR SEGURIDAD (ROJO INTENSO) */
        .security-error {
            background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 5px solid #9b2c2c;
            animation: slideDown 0.4s ease-out;
            box-shadow: 0 8px 20px rgba(245, 101, 101, 0.25);
        }
        
        .security-error-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .security-error-header i {
            font-size: 1.6rem;
            color: #fed7d7;
        }
        
        .security-error-header h3 {
            font-size: 1.3rem;
            margin: 0;
            color: white;
        }
        
        .security-details {
            background: rgba(255, 255, 255, 0.15);
            padding: 12px;
            border-radius: 8px;
            margin: 12px 0;
            border: 2px solid rgba(255, 255, 255, 0.25);
            font-size: 0.9rem;
        }
        
        .security-details ul {
            list-style: none;
            padding-left: 0;
        }
        
        .security-details li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .security-details li:last-child {
            border-bottom: none;
        }
        
        /* ESTADO DEL ALIAS EN TIEMPO REAL */
        .alias-status {
            margin-top: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            display: none;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .alias-available {
            background: #c6f6d5;
            color: #22543d;
            border: 2px solid #9ae6b4;
            display: flex;
        }
        
        .alias-taken {
            background: #fed7d7;
            color: #742a2a;
            border: 2px solid #fc8181;
            display: flex;
        }
        
        .alias-loading {
            background: #e2e8f0;
            color: #4a5568;
            border: 2px solid #cbd5e0;
            display: flex;
        }
        
        /* MENSAJE DE ÉXITO (VERDE) */
        .success-message {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 5px solid #2f855a;
            animation: slideDown 0.4s ease-out;
            box-shadow: 0 8px 20px rgba(72, 187, 120, 0.25);
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .success-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .success-header i {
            font-size: 1.6rem;
            color: #c6f6d5;
        }
        
        .success-header h3 {
            font-size: 1.3rem;
            margin: 0;
            color: white;
        }
        
        .success-url {
            background: rgb(255 255 255 / 16%);
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border: 2px solid rgba(255, 255, 255, 0.25);
        }
        
        .url-display {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .url-display a {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            flex: 1;
            word-break: break-all;
            text-shadow: 0 2px 4px rgb(0 0 0 / 80%);
        }
        
        .url-display a:hover {
            text-decoration: underline;
            color: #c6f6d5;
        }
        
        .copy-btn-success {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .copy-btn-success:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .original-url {
            color: #c6f6d5;
            font-size: 0.9rem;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #2d3748;
            font-size: 1rem;
        }
        
        input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #f8fafc;
        }
        
        input:focus {
            outline: none;
            border-color: #4c51bf;
            background: white;
            box-shadow: 0 0 0 3px rgba(76, 81, 191, 0.1);
        }
        
        .btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }
        
        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        /* ESTADÍSTICAS SIMPLES */
        .stats-simple {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px 12px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
        }
        
        .stat-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.5rem;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #2d3748;
            margin: 8px 0;
            line-height: 1;
        }
        
        .stat-label {
            color: #718096;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .stat-subtitle {
            color: #a0aec0;
            font-size: 0.8rem;
            margin-top: 6px;
        }
        
        /* BADGE DE SEGURIDAD */
        .security-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: #f56565;
            color: white;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 8px;
            font-weight: 600;
        }
        
        /* FOOTER SIMPLE Y ELEGANTE */
        footer {
            background: #1a202c;
            color: white;
            padding: 30px 15px 15px;
            margin-top: auto;
            text-align: center;
        }
        
        .footer-bottom {
            max-width: 800px;
            margin: 0 auto;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-bottom p {
            margin-bottom: 8px;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        
        .made-with {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin: 12px 0;
            color: #cbd5e0;
            font-size: 0.95rem;
        }
        
        .heart {
            color: #fc8181;
            animation: heartbeat 1.5s infinite;
        }
        
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .watermark {
            color: rgba(255,255,255,0.3);
            font-size: 0.8rem;
            margin-top: 15px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 15px;
            }
            
            .stats-simple {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            h1 {
                font-size: 1.7rem;
            }
            
            .footer-bottom {
                padding: 15px;
            }
            
            .url-display {
                flex-direction: column;
                align-items: stretch;
            }
            
            .copy-btn-success {
                width: 100%;
                justify-content: center;
            }
            
            header {
                padding: 20px 15px;
            }
            
            .url-shortener {
                padding: 25px;
            }
        }
		 /* MODAL SIMPLE */
        .denuncia-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .denuncia-content {
            background: #1a202c;
            border-radius: 8px;
            padding: 20px;
            width: 100%;
            max-width: 400px;
            border: 1px solid #2d3748;
        }
        
        .denuncia-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: white;
        }
        
        .denuncia-header i {
            color: #f56565;
        }
        
        .denuncia-header h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .form-group-denuncia {
            margin-bottom: 15px;
        }
        
        .form-group-denuncia label {
            display: block;
            margin-bottom: 5px;
            color: #cbd5e0;
            font-size: 0.9rem;
        }
        
        .form-group-denuncia select,
        .form-group-denuncia textarea {
            width: 100%;
            padding: 8px 10px;
            background: #2d3748;
            border: 1px solid #4a5568;
            border-radius: 6px;
            color: white;
            font-size: 14px;
        }
        
        .form-group-denuncia textarea {
            min-height: 60px;
            resize: vertical;
        }
        
        .btn-denunciar {
            background: #f56565;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.95rem;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn-cancelar {
            background: #4a5568;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            margin-top: 8px;
            width: 100%;
        }
        
        /* SECCIÓN DE DENUNCIAS DENTRO DEL FORMULARIO */
        .denuncia-section {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
        }
        
        .denuncia-section h4 {
            color: #a3acb7;
            margin-bottom: 10px;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .denuncia-section h4 i {
            color: #f56565;
        }
        
        .denuncia-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .denuncia-input {
            flex: 1;
            padding: 8px 10px;
            background: #2d3748;
            border: 1px solid #4a5568;
            border-radius: 6px;
            color: black;
            font-size: 0.9rem;
        }
        
        .btn-denuncia {
            background: #f56565;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .denuncia-hint {
            color: #718096;
            font-size: 0.8rem;
        }
        
        .denuncia-hint strong {
            color: #f56565;
        }
        
        /* ENLACE PARA DENUNCIAR EN MENSAJES DE ÉXITO */
        .denuncia-link {
            color: #f56565;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
        }
        
        .denuncia-link:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 640px) {
            .denuncia-input-group {
                flex-direction: column;
            }
            
            .btn-denuncia {
                width: 100%;
            }
        }
		   /* ESTILOS PARA LA SECCIÓN DE INFORMACIÓN */
        .info-section {
            margin-top: 40px;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }
        
        .info-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .info-header h2 {
            color: #2d3748;
            font-size: 1.6rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .info-header h2 i {
            color: #4c51bf;
        }
        
        .info-header p {
            color: #718096;
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .info-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden; /* Añadido para evitar que contenido se salga */
        }
        
        .info-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 2px solid #edf2f7;
        }
        
        .info-card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4c51bf, #434190);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .info-card-header h3 {
            color: #2d3748;
            font-size: 1.2rem;
            margin: 0;
        }
        
        .info-card-content {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .info-card-content p {
            margin-bottom: 12px;
        }
        
        .info-card-content ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        
        .info-card-content li {
            margin-bottom: 6px;
            position: relative;
        }
        
        .info-card-content li:before {
            content: "✓";
            color: #48bb78;
            font-weight: bold;
            position: absolute;
            left: -18px;
        }
        
        .example-box {
            background: #f8f9fa;
            border-left: 4px solid #4c51bf;
            padding: 12px 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
            font-size: 0.85rem;
            color: #2d3748;
            line-height: 1.4;
            word-wrap: break-word;
            word-break: break-all;
            overflow-wrap: break-word;
        }
        
        .example-box strong {
            color: #4c51bf;
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        
        .example-box br {
            margin-bottom: 5px;
            display: block;
            content: "";
        }
        
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            border-left: 4px solid #48bb78;
        }
        
        .benefit-item i {
            color: #48bb78;
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .benefit-content {
            flex: 1;
            min-width: 0; /* Permite que el texto se ajuste */
        }
        
        .benefit-content h4 {
            color: #2d3748;
            margin: 0 0 4px 0;
            font-size: 1rem;
            word-wrap: break-word;
        }
        
        .benefit-content p {
            color: #718096;
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.4;
            word-wrap: break-word;
        }
        
        .tip-box {
            margin-top: 15px;
            padding: 12px;
            background: #e6fffa;
            border-radius: 8px;
            border-left: 4px solid #38b2ac;
            word-wrap: break-word;
        }
        
        .tip-box p {
            margin: 0;
            color: #234e52;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .tip-box i {
            color: #38b2ac;
            font-size: 1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        @media (max-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .info-section {
                padding: 20px;
                margin-top: 30px;
            }
            
            .info-card {
                padding: 15px;
            }
            
            .example-box {
                font-size: 0.8rem;
                padding: 10px;
            }
            
            .benefit-item {
                flex-direction: column;
                gap: 8px;
            }
            
            .benefit-item i {
                align-self: flex-start;
            }
        }
        
        @media (max-width: 480px) {
            .example-box {
                font-size: 0.75rem;
            }
            
            .info-card-header h3 {
                font-size: 1.1rem;
            }
        }
		/* Estilos para Redes Sociales */
.social-section {
    
    padding: 25px 0;
    border-top: 1px solid #4a5568;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.social-container h4 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e2e8f0;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon i {
    font-size: 1.5rem;
}

.social-icon span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Colores específicos para cada red social */
.social-icon.gmail {
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.social-icon.gmail:hover {
    background: rgba(234, 67, 53, 0.2);
    border-color: #ea4335;
}

.social-icon.gmail i {
    color: #ea4335;
}

.social-icon.instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-icon.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #e1306c;
}

.social-icon.instagram i {
    color: #e1306c;
}

.social-icon.facebook {
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
}

.social-icon.facebook i {
    color: #1877f2;
}
/* Estilos para la sección de contacto y redes */
.contact-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ea4335;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #ea4335;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
}

.social-networks {
    text-align: center;
}

.social-title {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-icon.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    transform: scale(1.1);
}

.social-icon.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-social-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}