/*
DISEÑO WEB DE LA I.A.
//  ========================================
//  🎇 style.css — Diseño Neón Futurista 🎇
//  ========================================
//
// === 🌈 Variables globales === 
:root {
    --bg-dark:        #0a0c1b;
    --bg-overlay:     rgba(10,12,27,0.7);
    --accent-cyan:    #00f9ff;
    --accent-magenta: #e77cff;
    --text-light:     #f0f8ff;
    --text-muted:     #888;
    --border-radius:  8px;
    --transition:     0.3s ease;
    --shadow-glow:    0 0 12px var(--accent-cyan);
    --glass-bg:       rgba(255,255,255,0.04);
    --link-hover:     var(--accent-magenta);
}

// === 🔄 Reset & base === 
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

// === 🚀 Navegación Sticky Neon ===
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-overlay);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 36px;
    filter: drop-shadow(0 0 6px var(--accent-cyan));
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--accent-cyan);
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background var(--transition);
}

.menu a:hover,
.menu a.active {
    color: var(--link-hover);
}

.menu a:hover::after,
.menu a.active::after {
    background: var(--link-hover);
}

// === 🌠 Hero Header === 
header {
    background: linear-gradient(180deg, #111427, var(--bg-dark));
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0.15;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}

header h1 {
    font-size: 3.4rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 16px var(--accent-cyan);
    animation: textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 8px var(--accent-cyan); }
    to   { text-shadow: 0 0 20px var(--accent-magenta); }
}

header p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    animation: fadeIn 1s 0.5s ease-out both;
}

// === 🔘 Principal Button === 
.btn-principal {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-principal:hover {
    background: var(--accent-magenta);
    box-shadow: 0 0 20px var(--accent-magenta);
    transform: scale(1.05);
}

// === 📦 Secciones Animadas === 
section {
    max-width: 960px;
    margin: 0 auto 2rem;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(4px);
    animation: slideUp 0.8s ease-out both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

section h2 {
    font-size: 2.4rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--accent-cyan);
}

section p {
    color: var(--text-muted);
    font-size: 1rem;
}

// === 🎬 Video Grid NeoCards === 
.video-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}

.video-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, transparent, var(--accent-magenta), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.video-card:hover::before {
    opacity: 0.4;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.video-card p {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    background: var(--bg-overlay);
    text-align: left;
}

// === 🌍 Estado del servidor === 
#status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

#status-icon,
#status-icon.status-online,
#status-icon.status-offline {
    font-size: 1.4rem;
    transition: color var(--transition), transform var(--transition);
}

#status-icon.status-online {
    color: #00ff88;
    transform: scale(1.2);
}

#status-icon.status-offline {
    color: #ff5050;
    transform: scale(1.2);
}

#call-to-action {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #00ff66;
    font-weight: 700;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

// === 📬 Footer Centro de Mando === 
footer {
    background: var(--bg-dark);
    padding: 2.5rem 1rem;
    text-align: center;
    border-top: 2px solid var(--accent-cyan);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

footer .social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

footer .social a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 0.3rem 0.6rem;
    transition: color var(--transition), text-shadow var(--transition);
}

footer .social a:hover {
    color: var(--link-hover);
    text-shadow: 0 0 8px var(--link-hover);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

// === 📱 Responsive & Mobile === 
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .menu {
        position: absolute;
        top: 100%;
        right: 2rem;
        background: var(--bg-overlay);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        border-radius: var(--border-radius);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height var(--transition), opacity var(--transition);
    }
    .menu.show {
        max-height: 300px;
        opacity: 1;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu a {
        padding: 0.5rem 0;
    }
}

// === 🔧 Utilidades & Extras === 
::selection {
    background: var(--accent-cyan);
    color: #111;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-magenta);
    color: #000;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    box-shadow: 0 0 12px var(--accent-magenta);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

// === 🧱 Sección Minecraft — Estilo Rede de Neón === 
#minecraft {
    background: var(--glass-bg);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0,249,255,0.2);
    position: relative;
    overflow: hidden;
}

#minecraft::before {
    // Sutil animación de brillo detrás de todo 
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-magenta) 0%, transparent 70%);
    opacity: 0.05;
    animation: brilloMinecraft 15s linear infinite;
    pointer-events: none;
}

@keyframes brilloMinecraft {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}

#minecraft h2 {
    color: var(--accent-magenta);
    text-shadow: 0 0 8px var(--accent-magenta);
    margin-bottom: 1rem;
}

#minecraft p,
#minecraft strong {
    color: var(--text-light);
    font-size: 1rem;
}

#minecraft button {
    display: inline-block;
    background: var(--accent-magenta);
    color: var(--bg-dark);
    padding: 0.8rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0 12px var(--accent-magenta);
    cursor: pointer;
    transition: var(--transition), transform var(--transition);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

#minecraft button:hover {
    background: var(--accent-cyan);
    box-shadow: 0 0 16px var(--accent-cyan);
    transform: translateY(-3px) scale(1.04);
}

#minecraft button:active {
    transform: translateY(-1px) scale(1.02);
}

#minecraft #status {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

#minecraft #call-to-action {
    margin-top: 1rem;
    font-size: 1.2rem;
}

*/
/*
body {
background: linear-gradient(to right,
  #ff0000, #ff1a00, #ff3300, #ff4d00, #ff6600, // 🔥 Rojo fuego 
  #000000,                                   // ⚫ Negro 
  #0000ff, #1a00ff, #3300ff, #4d00ff, #6600ff // 🔥 Azul fuego 
);

}

.navbar.bg-body-tertiary {
    background-color: blue !important;
}

.form-control.me-2 {
    background;
}



.navbar-brand img {
    max-height: 38px;
}

*/



body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #ccc;
}
.navbar-brand img {
    height: 40px;
}
.hero {
    background: linear-gradient(to right, #ff0000, #000, #0000ff);
    padding: 80px 0;
}
.hero .lukhez {
    color: #00ffcc;
}
.tech-card {
    background-color: #111;
    color: #0ff;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}
.tech-card:hover {
    transform: scale(1.05);
    background-color: #222;
}
footer {
    font-size: 0.9rem;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
