﻿/* Estilo Dota 2 inspired - Versión Mejorada */
:root {
    --dota-red: #e03c2e;
    --dota-dark: #0f0f13;
    --dota-gold: #c8a165;
    --dota-light: #e2d9c0;
    --dota-white: #ffffff;
}

html {
    overflow-y: auto; /* Solo scroll vertical cuando sea necesario */
}

body {
    position: relative; /* Necesario para el contexto de z-index */
    height: 100vh; /* Altura completa del viewport */
    background-color: #0b0802;
    overflow-x: hidden;
    cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100vh; /* Solo cubrir el viewport */
    z-index: -1; /* Para que quede detrás del contenido */
}

.dota-container {
    padding-bottom: 100px; /* Espacio para el footer */
}


/* Contenedor principal debe permitir scroll */
.main-content-wrapper {
    transition: opacity 0.3s ease;
    min-height: 100vh;
    overflow: visible !important; /* Forzar visibilidad */
    position: relative;
    z-index: 1; /* Encima del video de fondo */

    overflow-y: auto; /* Scroll solo en este contenedor */
    -webkit-overflow-scrolling: touch; /* Scroll suave en móviles */
}

/* Video banner con texto */
.main-header {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: none; /* Eliminamos esta línea sólida */
    /* Elimina estas líneas que hacen el "recorte" visual */
    mask-image: none;
    -webkit-mask-image: none;
}

    .main-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px; /* Altura del degradado */
        background: linear-gradient(to bottom, transparent 0%, black 100%);
        z-index: 0; /* Detrás del texto, pero encima del video */
        pointer-events: none;
    }

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad según necesites */
    z-index: -1; /* Mismo z-index que el video o ligeramente mayor */
}

.banner-text {
    position: absolute;
    bottom: 20%;
    left: 4%; /* Cambiado de 50% a 10% para alinear a la izquierda */
    transform: translateX(0); /* Eliminamos el translateX(-50%) que centraba el texto */
    z-index: 1;
    text-align: left; /* Cambiado de center a left */
    width: auto; /* Cambiado de 100% a auto */
    max-width: 600px; /* Añadido para limitar el ancho */
}

    .banner-text h1 {
        position: relative;
        display: inline-block;
        font-family: 'Cinzel', serif;
        font-size: 2.5rem;
        color: var(--dota-white);
        text-shadow: 0 0 15px rgba(254, 60, 46, 0.7);
        letter-spacing: 3px;
        margin-bottom: 1rem;
        text-transform: uppercase;
        line-height: 1.1; /* Añadido para mejor espaciado */
    }

        .banner-text h1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(224, 60, 46, 0.4) 0%, transparent 70%);
            z-index: -1;
        }

    .banner-text p {
        font-family: 'Radley', serif;
        font-size: 1.5rem;
        color: var(--dota-light);
        text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
        letter-spacing: 1px;
        margin-left: 5px; /* Añadido para pequeño desplazamiento */
    }


.nav-right {
    display: flex;
    gap: 15px; /* Reemplaza margin-left de los botones */
    align-items: center;
    flex-shrink: 0; /* Evita que se compriman */
}

/* Navbar estilo Dota Mejorado */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 30px 60px;
    background: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-bar a {
    color: var(--dota-light);
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2rem; /* Tamaño aumentado */
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

    .nav-bar a:hover {
        color: white;
    }

    .nav-bar a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--dota-red);
        transition: width 0.3s ease;
    }

    .nav-bar a:hover::after {
        width: 100%;
    }

/* Dropdowns funcionando */
.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown:hover .dropdown-content {
        display: block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(15, 15, 19, 0.95);
    min-width: 220px;
    z-index: 2;
    animation: dropdownIn 0.3s ease-out forwards;
    top: 100%;
    left: 0;
}

    .dropdown-content a {
        display: block;
        padding: 12px 20px;
        color: var(--dota-light);
        text-decoration: none;
        transition: all 0.2s ease;
        font-size: 1rem; /* Tamaño aumentado */
    }

        .dropdown-content a:hover {
            color: white;
            background-color: rgba(224, 60, 46, 0.2);
        }

/* Botones con marco blanco - Versión mejorada */
/* Botones - REEMPLAZAR ESTA SECCIÓN COMPLETA */
.nav-button {
    pointer-events: auto;
    display: inline-flex; /* Mejor alineación del icono y texto */
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dota-white);
    padding: 12px 35px; /* Espaciado interno aumentado */
    background: transparent;
    color: var(--dota-white);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.85;
    border-radius: 2px;
    box-sizing: border-box;
    min-width: 120px; /* Ancho mínimo para consistencia */
    margin: 0; /* Elimina cualquier margen */
    z-index: 1;
}

    .nav-button:hover {
        color: white !important;
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        opacity: 1;
        transform: translateY(-1px);
        box-shadow: 0 0 15px rgba(224, 60, 46, 0.7);
    }

    /* Iconos - MEJOR ALINEACIÓN */
    .nav-button::before {
        content: '';
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-right: 10px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s ease;
        position: absolute;
        top: -1px; /* Ajuste fino de alineación */
    }
/* Botones de Login/Register estilo Dota 2 */

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-bar {
        padding: 25px 40px;
    }

    .logo {
        font-size: 2.2rem;
    }

    .nav-bar a {
        font-size: 1.1rem;
        margin: 0 15px;
    }
}

@media (max-width: 992px) {
    .nav-bar {
        flex-direction: column;
        padding: 20px;
    }

    .banner-text {
        left: 5%;
        bottom: 30%;
    }

        .banner-text h1 {
            font-size: 3rem;
        }

    .logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-right {
        margin-top: 15px;
    }

    .banner-text h1 {
        font-size: 3rem;
    }

    .banner-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-bar a {
        font-size: 1rem;
        margin: 0 10px;
    }

    .banner-text {
        left: 20px;
        bottom: 25%;
        max-width: 80%;
    }

        .banner-text h1 {
            font-size: 2.5rem;
        }

        .banner-text p {
            font-size: 1.2rem;
        }

    .nav-button {
        padding: 8px 15px;
        font-size: 1rem;
    }

    .banner-text h1 {
        font-size: 2.5rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .dropdown-content {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .main-header {
        height: 600px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 0.9rem;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-bar a {
        margin: 5px 0;
    }

    .nav-right {
        margin-top: 10px;
    }
}

/* Animación dropdown */
@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenido principal */



.blood-red-btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #7b0000; /* Rojo sangre */
    border: none;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.7);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

    /* Desactivar estilos azules de enlaces al hacer clic */

    /* Hover suave */
    .blood-red-btn:hover {
        transform: scale(1.05);
    }

    /* Reflejo blanco que se mueve de izquierda a derecha */
    .blood-red-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 100% );
        transform: skewX(-20deg);
        animation: shine 1.5s infinite;
        z-index: 1;
    }

    /* Para que el texto esté por encima del brillo */
    .blood-red-btn span {
        position: relative;
        z-index: 2;
    }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Estilos para el footer */
.site-footer {
    position: relative;
    text-align: center;
    padding: 6px 0;
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #b89859, transparent);
    width: 80%;
    margin: 0 auto 15px auto;
}

.footer-text {
    color: #b89859;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* MENÚ HAMBURGUESA - VERSIÓN COMPACTA */







/* MENÚ HAMBURGUESA - VERSIÓN FINAL */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 15px;
    margin-left: auto;
    transition: all 0.3s ease;
    z-index: 100;
}

    .hamburger:hover {
        color: var(--gold);
        transform: scale(1.1);
    }

/* Contenedor del menú móvil */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 57%;
    transform: translateX(-50%);
    width: 280px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(5px);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    border: 1px solid rgba(216, 143, 34, 0.3);
    border-top: none;
}

    .mobile-nav.show {
        max-height: 500px; /* Aumentado para mostrar todos los botones */
        opacity: 1;
    }

    /* Elementos del menú */
    .mobile-nav a {
        color: #ffffff; /* Blanco puro */
        padding: 12px 20px;
        margin: 0 10px;
        text-decoration: none;
        font-size: 0.95rem;
        font-family: 'Cinzel', serif;
        display: block;
        transition: all 0.25s ease;
        border-radius: 4px;
        border-left: 2px solid transparent;
    }

        .mobile-nav a:hover {
            color: #ffffff !important; /* Blanco siempre en hover */
            background: rgba(216, 143, 34, 0.3); /* Fondo dorado al hover */
            border-left: 2px solid var(--gold);
            transform: translateX(5px);
        }

    /* Botones de login/register */
    .mobile-nav .nav-button {
        background: rgba(216, 143, 34, 0.2);
        margin: 8px 10px;
        text-align: center;
        border: 1px solid var(--gold);
        border-radius: 4px;
        color: white !important;
    }

        .mobile-nav .nav-button:hover {
            background: rgba(216, 143, 34, 0.4);
        }


/* Responsive - Cierre automático al cambiar tamaño */
@media (min-width: 769px) {
    .mobile-nav.show {
        display: none !important;
        max-height: 0;
        opacity: 0;
    }

    .hamburger.is-active {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links,
    .nav-right,
    .dropdown-content {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 240px;
        top: 60px;
    }

        .mobile-nav a {
            padding: 10px 15px;
            font-size: 0.85rem;
        }
}



/* Estilo del overlay de batalla épica */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 10, 30, 0.6) 0%, rgba(10, 5, 20, 1) 100%);
    background-color: #0a0514;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    overflow: hidden;
    animation: backgroundPulse 0.8s ease-in-out infinite;
}
/* Grietas de energía animadas */
.energy-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 6px);
    animation: energyLines 1s linear infinite;
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
}

/* Efecto de runas flotantes */
.transition-overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237d3cb370"><path d="M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z"/></svg>');
    background-size: 50px;
    opacity: 0.15;
    animation: runes 1s linear infinite;
}

/* Efectos de impacto */
.battle-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .battle-effects::before {
        content: "";
        position: absolute;
        width: 300%;
        height: 300%;
        background: radial-gradient(circle, rgba(255,200,0,0.1) 0%, transparent 70%);
        animation: shockwave 1s linear infinite;
        opacity: 0;
    }

/* Animaciones épicas */
@keyframes runes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 5px 5px;
    }
}

@keyframes energyLines {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 5px 5px;
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }

    50% {
        filter: brightness(1.18);
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(0px) rotate(1deg);
    }
}

/* Estado oculto */
.transition-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0.1, 0), visibility 0s 1s;
}

.content-loading {
    opacity: 0;
    transition: opacity 0.7s ease;
}


.magic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
    animation: particlesMove 20s linear infinite;
    z-index: 100;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

@keyframes particlesMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.mist-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/fog.png');
    opacity: 0.05;
    animation: mistFlow 60s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes mistFlow {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}












/* Dota 2 Style Modal */
.dota-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.dota-modal-content {
    position: relative;
    margin: 5% auto;
    width: 450px;
    background: #0c0d10;
    border: 1px solid #1e1f25;
    box-shadow: 0 0 30px rgba(201, 33, 39, 0.3);
    overflow: hidden;
}

.dota-modal-header {
    background: linear-gradient(to right, #1a1b20, #2a0f11, #1a1b20);
    padding: 20px;
    border-bottom: 2px solid #c92127;
    position: relative;
}

.dota-modal-title {
    position: relative;
    text-align: center;
}

.dota-title-text {
    color: #e2d7b6;
    font-family: 'Radley', serif;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(201, 33, 39, 0.7);
    display: inline-block;
    position: relative;
}

.dota-title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #c92127;
    box-shadow: 0 0 10px #c92127;
}

.dota-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

    .dota-close-modal:hover {
        transform: rotate(90deg);
    }

.dota-close-icon {
    width: 24px;
    height: 24px;
    fill: #e2d7b6;
    opacity: 0.7;
    transition: all 0.3s;
}

.dota-close-modal:hover .dota-close-icon {
    opacity: 1;
    fill: #c92127;
}

.dota-modal-body {
    padding: 30px;
    position: relative;
}

.dota-form-container {
    position: relative;
    z-index: 2;
}

.dota-form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Images/Modal/texture.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.dota-form-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0c0d10 70%);
}

.dota-form-group {
    margin-bottom: 25px;
    position: relative;
}

.dota-input-label {
    display: block;
    position: relative;
}

.dota-label-text {
    color: #e2d7b6;
    font-family: 'Radley', serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
}

.dota-input-field {
    width: 100%;
    padding: 12px 10px;
    background: rgba(26, 27, 32, 0.7);
    border: 1px solid #2a2c33;
    color: #e2d7b6;
    font-family: 'Radley', serif;
    font-size: 16px;
    transition: all 0.3s;
}

    .dota-input-field:focus {
        outline: none;
        border-color: #c92127;
        box-shadow: 0 0 10px rgba(201, 33, 39, 0.5);
    }

.dota-input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c92127;
    transition: all 0.3s;
}

.dota-input-field:focus ~ .dota-input-underline {
    width: 100%;
}

.dota-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dota-button-primary {
    background: linear-gradient(to right, #8a181b, #c92127, #8a181b);
    color: #e2d7b6;
    border: 1px solid #5a1012;
    box-shadow: 0 0 10px rgba(201, 33, 39, 0.5);
}

    .dota-button-primary:hover {
        background: linear-gradient(to right, #9a282b, #d93137, #9a282b);
        box-shadow: 0 0 20px rgba(201, 33, 39, 0.8);
        transform: translateY(-2px);
    }

    .dota-button-primary:active {
        transform: translateY(1px);
    }

.dota-form-actions {
    text-align: center;
    margin-top: 30px;
}

.dota-validation-error {
    color: #f6ae1f;
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    display: block;
    font-family: 'Radley', serif;
}

.dota-message {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 10px;
    font-family: 'Radley', serif;
    font-size: 16px;
    border-radius: 3px;
    color: aquamarine;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Estilos para el mensaje de éxito */
.success-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.success-message-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #c92127;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.3s ease-in-out;
}

.success-message-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(201, 33, 39, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


/* Verification Page Styles */
.verification-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.verification-container {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #c92127;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 20px rgba(201, 33, 39, 0.3);
}

.verification-icon {
    font-size: 72px;
    color: #c92127;
    margin-bottom: 20px;
}

.verification-title {
    font-family: 'Cinzel', serif;
    color: #e2d7b6;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.verification-message {
    display: block;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .verification-container {
        padding: 30px 20px;
    }

    .verification-icon {
        font-size: 60px;
    }

    .verification-title {
        font-size: 24px;
    }
}


/* Estilos adicionales para el login */
.dota-form-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.dota-link {
    color: #c92127;
    text-decoration: none;
    transition: color 0.3s;
}

    .dota-link:hover {
        color: #e2d7b6;
        text-decoration: underline;
    }

.dota-link-separator {
    color: #555;
    margin: 0 10px;
}








/* Estilo para el panel de usuario logueado */
.nav-welcome {
    color: #fff;
    margin-right: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.3em;
    text-shadow: 2px 2px 3px #000;
}

/* Estilo para el botón de logout */
.nav-button.logout {
    background-color: #8B0000; /* Rojo oscuro */
    border: 1px solid #600;
    text-align: center;
}

    .nav-button.logout:hover {
        background-color: #A52A2A;
        border-color: #800;
        text-align: center;
    }

/* Transición suave para los cambios */
.nav-right > div {
    transition: opacity 0.3s ease;
}


/* Botones flotantes */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .floating-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }

    .floating-button.whatsapp {
        background: #25D366;
    }

    .floating-button.discord {
        background: #5865F2;
    }

    .floating-button i {
        transition: all 0.3s ease;
    }

    .floating-button:hover i {
        transform: scale(1.1);
    }

    /* Efecto de onda al hacer clic */
    .floating-button:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
        background-repeat: no-repeat;
        background-position: 50%;
        transform: scale(10, 10);
        opacity: 0;
        transition: transform .5s, opacity 1s;
    }

    .floating-button:active:after {
        transform: scale(0, 0);
        opacity: .3;
        transition: 0s;
    }

/* Responsive para móviles */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        left: 15px;
    }

    .floating-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Estilos para botones desactivados en modales */
.dota-modal .dota-button[disabled] {
    cursor: not-allowed;
    background-color: #3a3a3a !important;
    color: #777 !important;
}

/* Spinner en botones modales */
.dota-modal .btn-spinner {
    margin-left: 8px;
    font-size: 14px;
    animation: fa-spin 2s infinite linear;
}

/* Animación del spinner */
@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/* Mensajes de error en modales */
.dota-modal .dota-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: block;
    text-align: center;
}

.dota-modal .dota-validation-error {
    color: #f6ae1f;
    font-size: 18px;
    margin-top: 5px;
    display: block;
}



.button-loading {
    position: relative;
    opacity: 0.8;
}

    .button-loading::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border: 2px solid #fff;
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.dota-input-label button[type="button"] {
    color: #8e8e8e;
    font-size: 16px;
    padding: 0 8px;
    transition: color 0.3s;
}

    .dota-input-label button[type="button"]:hover {
        color: #b71c1c; /* Color rojo sangre para hover */
    }

    .dota-input-label button[type="button"] i {
        font-size: 18px;
    }

.floating-button.teamspeak {
    background-color: #2581C4; /* Color característico de TeamSpeak */
    /* Otros estilos para que coincida con tus otros botones flotantes */
}


/* Estilo del modal */
/* Estilo del modal - Versión DOTA 2 Elegante */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.65);
    animation: fadeIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.modal-content {
    background: rgba(20, 22, 25, 0.85);
    margin: 12% auto;
    padding: 2.5rem;
    border-radius: 4px;
    width: 85%;
    max-width: 420px;
    color: #e1e1e1;
    text-align: center;
    border: 1px solid rgba(101, 119, 134, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    font-family: 'Radiance', 'Arial Narrow', sans-serif;
}

    .modal-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.03), transparent );
        transition: 0.6s;
    }

    .modal-content:hover::after {
        left: 100%;
    }

.close {
    color: #8e9ba8;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close:hover {
        color: #d9e3ed;
    }

h3 {
    color: #d9e3ed;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
}

    h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, #4a5c6b, transparent);
        margin: 1rem auto;
    }

.ts3-link-container {
    display: flex;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

    .ts3-link-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid rgba(101, 119, 134, 0.3);
        pointer-events: none;
    }

#ts3Link {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: rgba(30, 35, 40, 0.7);
    color: #f0f0f0;
    font-family: 'Consolas', monospace;
    font-size: 0.95rem;
    outline: none;
}

#copyBtn {
    padding: 0 1.8rem;
    background: rgba(45, 55, 65, 0.7);
    color: #d9e3ed;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

    #copyBtn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.1), transparent );
        transition: 0.6s;
    }

    #copyBtn:hover {
        background: rgba(55, 70, 85, 0.7);
        color: #fff;
    }

        #copyBtn:hover::before {
            left: 100%;
        }

.small-text {
    font-size: 0.8rem;
    color: #8e9ba8;
    margin-top: 1.5rem;
    font-style: italic;
}

    .small-text a {
        color: #8e9ba8;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        font-style: normal;
    }

        .small-text a:hover {
            color: #d9e3ed;
        }

        .small-text a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -1px;
            left: 0;
            background: #8e9ba8;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .small-text a:hover::after {
            transform: scaleX(1);
        }

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto al copiar */
.copied-effect {
    position: relative;
}

    .copied-effect::after {
        content: '✓';
        position: absolute;
        right: 0.5rem;
        opacity: 0;
        animation: checkFade 2s ease;
    }

@keyframes checkFade {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    20% {
        opacity: 1;
        transform: translateX(0);
    }

    80% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

.error-effect {
    background-color: rgba(255, 0, 0, 0.1) !important;
    color: #ff6b6b !important;
    border-color: #ff3a3a !important;
}

#ts3Link:focus {
    outline: 1px solid rgba(101, 119, 134, 0.5);
    box-shadow: 0 0 5px rgba(101, 119, 134, 0.3);
}

/* Cambia el cursor a uno personalizado */
.action-btn {
    cursor: url('/css/cursors/Cursor_Normal.cur'), pointer;
}

    /* Mantiene el mismo cursor durante el hover */
    .action-btn:hover {
        cursor: url('/css/cursors/Cursor_Normal.cur'), pointer;
    }


button,
.nav-button, .nav-button:hover,
.dota-button, .dota-button:hover,
.dropdown:hover,
.ajax-link:hover,
.hamburger:hover {
    cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
}

.nav-bar .nav-links a {
    cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
}

.blood-red-btn {
    cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
}

    .blood-red-btn:hover {
        cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
    }

.floating-button:hover {
    cursor: url('/css/cursors/Cursor_Normal.cur'), auto;
}
