/* Reset y configuración base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f5f5f5;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1vh 0;
}

/* Contenedor principal - se adapta al viewport sin scroll */
.container {
    width: min(90vw, 600px);
    max-height: 98vh;
    margin: 0 auto;
    padding: clamp(8px, 1.2vh, 15px) clamp(10px, 1.5vw, 18px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Formulario de datos del jugador */
.player-info-section {
    width: 100%;
    background: #f8f9ff;
    border: 2px dashed #b3b7ff;
    border-radius: 12px;
    padding: clamp(12px, 1.5vh, 18px);
    margin-bottom: clamp(10px, 2vh, 18px);
    box-shadow: inset 0 0 0 2px rgba(118, 75, 162, 0.05);
    animation: fadeInText 0.7s ease forwards;
}

.player-info-section h2 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: clamp(6px, 1vh, 10px);
    color: #343a40;
}

.player-info-section p {
    margin-bottom: clamp(8px, 1.2vh, 12px);
    color: #5c6c80;
    opacity: 1;
    font-size: clamp(0.85rem, 2.2vw, 1rem);
}

.player-info-form {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.4vh, 14px);
    width: 100%;
}

.player-info-form label {
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
    text-align: left;
    font-size: clamp(0.85rem, 2.1vw, 0.95rem);
}

.player-info-form input {
    width: 100%;
    padding: clamp(10px, 1.4vh, 12px);
    border: 2px solid #d5d8ff;
    border-radius: 10px;
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.player-info-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.player-info-error {
    color: #d32f2f;
    font-weight: 600;
    text-align: center;
    min-height: clamp(16px, 2vh, 18px);
}

.start-game-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 24px;
    padding: clamp(10px, 1.6vh, 14px);
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(118, 75, 162, 0.35);
}

.player-info-summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eef2ff;
    border: 1px solid #c7ccff;
    border-radius: 10px;
    padding: clamp(8px, 1vh, 12px);
    color: #3f4b8a;
    font-weight: 600;
    margin-bottom: clamp(10px, 1.5vh, 14px);
    gap: clamp(8px, 1vh, 10px);
}

.player-info-summary button {
    padding: 6px 12px;
    border-radius: 16px;
    border: none;
    background: #764ba2;
    color: white;
    cursor: pointer;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    transition: background 0.2s ease;
}

.player-info-summary button:hover {
    background: #5c4096;
}

.hidden {
    display: none !important;
}

.question-display {
    font-size: clamp(0.95em, 2.3vw, 1.15em);
    font-weight: 600;
    color: #2d3a60;
    background: #e8ecff;
    border: 1px solid #c5cbff;
    border-radius: 10px;
    padding: clamp(8px, 1vh, 12px);
    margin-bottom: clamp(6px, 1vh, 10px);
    width: 100%;
}

.info-note {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: #6c757d;
}

/* Header y título */
header {
    width: 100%;
    margin-bottom: clamp(3px, 0.5vh, 6px);
}

header h1 {
    /* font-family y color se controlan desde el panel de admin */
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.25),
        3px 3px 0 #ff0080,
        -3px -3px 0 #00ffff;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
    line-height: 1;
}

header h1:hover {
    color: #ff00c8;
    text-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.5),
        4px 4px 0 #00ffff,
        -4px -4px 0 #ff0080;
}

/* Párrafos e instrucciones */
p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: clamp(0.7rem, 1.3vw, 0.85rem);
    line-height: 1.3;
    color: #222222;
    letter-spacing: 0.02em;
    margin-bottom: clamp(3px, 0.5vh, 6px);
    text-align: center;
    opacity: 0;
    animation: fadeInText 1s ease forwards;
    padding: 0 5px;
    width: 100%;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Contenedor del dibujo del ahorcado */
.hangman-container {
    background-color: #f3f4f6;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: clamp(4px, 0.6vh, 8px);
    margin: clamp(3px, 0.5vh, 6px) auto;
    width: fit-content;
    max-width: 100%;
}

#hangman-svg {
    width: 100%;
    height: auto;
    max-width: clamp(110px, 25vw, 160px);
    display: block;
    margin: 0 auto;
}

/* Ocultar todas las partes del ahorcado inicialmente */
.hangman-part {
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* La estructura siempre visible */
.hangman-part.base,
.hangman-part.pole,
.hangman-part.top-bar,
.hangman-part.rope {
    opacity: 1;
    stroke-dashoffset: 0;
}

/* Animación de dibujo progresivo para partes del cuerpo */
.hangman-part.show {
    animation: drawLine 0.8s ease-out forwards, fadeIn 0.5s ease-out forwards;
}

/* Animación especial para la cabeza (círculo) */
.hangman-part.head.show {
    animation: drawCircle 0.8s ease-out forwards, fadeIn 0.5s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Estilos para la calavera */
.hangman-skull {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

/* Animación de derrota - Calavera aparece */
.game-over .hangman-skull {
    opacity: 1;
    animation: skullFadeIn 1s ease-in-out forwards;
}

/* Animación de derrota - Cabeza desaparece */
.game-over #head-circle {
    animation: headFadeOut 0.8s ease-out forwards;
}

/* Animación de temblor para todo el muñeco */
.game-over #hangman-svg {
    animation: shake 0.5s ease-in-out 0.8s;
}

@keyframes headFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes skullFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px) rotate(-2deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px) rotate(2deg);
    }
}

/* Display de la palabra a adivinar */
.word-display {
    letter-spacing: clamp(3px, 1.2vw, 6px);
    font-size: clamp(1.1em, 2.5vw, 1.5em);
    margin: clamp(3px, 0.5vh, 6px) 0;
    font-weight: bold;
    color: #333;
    min-height: clamp(25px, 3.5vh, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Área de input y teclado */
.input-area {
    margin: clamp(3px, 0.5vh, 6px) 0;
    width: 100%;
}

/* Teclado Virtual */
.keyboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(26px, 3.5vw, 35px), 1fr));
    gap: clamp(3px, 0.6vw, 5px);
    max-width: 100%;
    margin: clamp(3px, 0.5vh, 6px) auto;
    padding: 0;
}

.key {
    background-color: #ffffff;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: clamp(5px, 1vh, 8px) clamp(2px, 0.5vw, 4px);
    font-size: clamp(0.7em, 1.8vw, 0.95em);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    user-select: none;
    color: #333;
    min-height: clamp(28px, 4vh, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.key:hover:not(.disabled):not(.correct):not(.incorrect) {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #000;
}

.key:active:not(.disabled) {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

/* Estados del teclado - MÁXIMA VISIBILIDAD */
.key.correct {
    background-color: #4caf50;
    color: #ffffff;
    border: 3px solid #2e7d32;
    cursor: not-allowed;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 3px 6px rgba(76, 175, 80, 0.4);
}

.key.incorrect {
    background-color: #f44336;
    color: #ffffff;
    border: 3px solid #c62828;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    cursor: not-allowed;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 3px 6px rgba(244, 67, 54, 0.4);
}

.key.disabled {
    cursor: not-allowed;
}

/* Botón de Nuevo Juego */
.reset-button {
    padding: clamp(6px, 1vh, 10px) clamp(14px, 2.5vw, 20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: clamp(0.8em, 1.8vw, 0.95em);
    font-weight: bold;
    margin-top: clamp(3px, 0.5vh, 6px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: auto;
    min-width: clamp(110px, 28vw, 140px);
}

.reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.reset-button:active {
    transform: translateY(0);
}

/* Letras usadas */
.used-letters {
    margin-top: clamp(3px, 0.5vh, 6px);
    font-size: clamp(0.8em, 1.8vw, 0.95em);
}

/* Mensajes */
.message {
    font-size: clamp(0.95em, 2.2vw, 1.2em);
    margin: clamp(3px, 0.5vh, 6px) 0;
    font-weight: bold;
    min-height: clamp(22px, 3.5vh, 30px);
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Opcional: mantener el estilo antiguo para compatibilidad */
.hangman {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre;
    text-align: center;
    display: block;
    line-height: 1.2;
    margin: 10px auto;
    color: #222;
    font-size: 0.9rem;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    border: 2px dashed #ccc;
    width: fit-content;
}

/* ============================================
   RESPONSIVE DESIGN - Media Queries
   ============================================ */

/* Tablets y pantallas medianas (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: min(85vw, 650px);
        padding: clamp(15px, 2.5vh, 25px);
    }

    header h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .keyboard {
        max-width: 550px;
    }
}

/* Móviles en orientación vertical (max-width: 768px) */
@media (max-width: 768px) {
    body {
        padding: 0.3vh 0;
    }

    .container {
        width: 96vw;
        max-height: 99vh;
        padding: clamp(6px, 1vh, 12px) clamp(8px, 1.2vw, 12px);
        border-radius: 10px;
        overflow-y: hidden;
    }

    header h1 {
        font-size: clamp(1.8rem, 7vw, 3.5rem);
        margin-bottom: clamp(3px, 0.5vh, 8px);
    }

    p {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
        margin-bottom: clamp(3px, 0.8vh, 8px);
        text-align: center;
    }

    .hangman-container {
        padding: clamp(5px, 0.8vh, 10px);
        margin: clamp(3px, 0.8vh, 8px) auto;
    }

    #hangman-svg {
        max-width: clamp(100px, 32vw, 160px);
    }

    .word-display {
        font-size: clamp(1em, 3.5vw, 1.5em);
        margin: clamp(3px, 0.8vh, 8px) 0;
        min-height: clamp(28px, 4vh, 35px);
    }

    .keyboard {
        grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
        gap: clamp(3px, 0.6vw, 5px);
        margin: clamp(3px, 0.8vh, 8px) auto;
    }

    .key {
        min-height: clamp(30px, 4.5vh, 38px);
        font-size: clamp(0.7em, 2.2vw, 0.9em);
        padding: clamp(5px, 1vh, 8px) clamp(2px, 0.5vw, 5px);
    }

    .reset-button {
        font-size: clamp(0.8em, 2.2vw, 0.95em);
        padding: clamp(7px, 1.2vh, 10px) clamp(14px, 2.5vw, 20px);
        min-width: clamp(110px, 28vw, 140px);
        margin-top: clamp(3px, 0.8vh, 8px);
    }

    .message {
        font-size: clamp(0.9em, 2.8vw, 1.2em);
        min-height: clamp(22px, 3.5vh, 30px);
        margin: clamp(3px, 0.8vh, 8px) 0;
    }
}

/* Móviles pequeños (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        width: 98vw;
        max-height: 99vh;
        padding: clamp(5px, 0.8vh, 8px) clamp(6px, 1vw, 8px);
        border-radius: 8px;
        overflow-y: hidden;
    }

    header h1 {
        font-size: clamp(1.4rem, 7vw, 2.5rem);
    }

    p {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
        text-align: center;
        margin-bottom: 2px;
    }

    .keyboard {
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
    }

    .key {
        min-height: 28px;
        padding: 4px 2px;
        font-size: clamp(0.65em, 2.2vw, 0.75em);
        border-width: 1.5px;
    }

    #hangman-svg {
        max-width: clamp(85px, 35vw, 120px);
    }

    .reset-button {
        min-width: 100px;
        font-size: 0.75em;
        padding: 5px 12px;
    }
    
    .word-display {
        min-height: 24px;
        font-size: clamp(0.95em, 2.2vw, 1.2em);
    }
    
    .message {
        min-height: 20px;
        font-size: clamp(0.85em, 2vw, 1em);
    }
}

/* Pantallas muy grandes (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 650px;
        padding: 25px;
    }

    .keyboard {
        max-width: 550px;
    }

    header h1 {
        font-size: 4rem;
    }
}

/* ============================================
   OPTIMIZACIÓN ESPECÍFICA PARA LAPTOPS 15.6"
   HP Pavilion 15-eg0000 / Lenovo IdeaPad 3 15ITL6
   Resolución: 1920x1080 (Full HD)
   Panel: IPS/TN
   ============================================ */

/* Media Query para resolución 1920x1080 (Full HD) */
@media (min-width: 1920px) and (max-width: 1920px) and (min-height: 1080px) and (max-height: 1080px) {
    body {
        padding: 2vh 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .container {
        width: 750px;
        max-height: 96vh;
        padding: 30px 35px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    header h1 {
        font-size: 4.5rem;
        margin-bottom: 8px;
    }

    p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .hangman-container {
        padding: 12px;
        margin: 12px auto;
    }

    #hangman-svg {
        max-width: 200px;
    }

    .word-display {
        font-size: 2rem;
        letter-spacing: 10px;
        margin: 15px 0;
        min-height: 45px;
    }

    .keyboard {
        grid-template-columns: repeat(9, 1fr);
        gap: 8px;
        max-width: 650px;
        margin: 15px auto;
    }

    .key {
        min-height: 50px;
        font-size: 1.15rem;
        padding: 12px 8px;
        border-radius: 8px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }

    .key:hover:not(.disabled):not(.correct):not(.incorrect) {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }

    .reset-button {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 1.15rem;
        margin-top: 15px;
        border-radius: 24px;
    }

    .message {
        font-size: 1.4rem;
        min-height: 40px;
        margin: 15px 0;
    }

    .used-letters {
        font-size: 1.1rem;
        margin-top: 12px;
    }
}

/* Optimización para pantallas 1920x1080 - Rango amplio */
@media (min-width: 1800px) and (max-width: 1920px) and (min-height: 1000px) and (max-height: 1080px) {
    body {
        padding: 2vh 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .container {
        width: 720px;
        max-height: 95vh;
        padding: 28px 32px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    header h1 {
        font-size: 4.2rem;
        margin-bottom: 8px;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .hangman-container {
        padding: 12px;
        margin: 12px auto;
    }

    #hangman-svg {
        max-width: 190px;
    }

    .word-display {
        font-size: 1.9rem;
        letter-spacing: 9px;
        margin: 14px 0;
        min-height: 42px;
    }

    .keyboard {
        grid-template-columns: repeat(9, 1fr);
        gap: 7px;
        max-width: 630px;
        margin: 14px auto;
    }

    .key {
        min-height: 48px;
        font-size: 1.1rem;
        padding: 11px 7px;
        border-radius: 7px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }

    .key:hover:not(.disabled):not(.correct):not(.incorrect) {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }

    .reset-button {
        min-width: 170px;
        padding: 13px 26px;
        font-size: 1.1rem;
        margin-top: 14px;
        border-radius: 22px;
    }

    .message {
        font-size: 1.35rem;
        min-height: 38px;
        margin: 14px 0;
    }

    .used-letters {
        font-size: 1.05rem;
        margin-top: 12px;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        padding: 0;
    }

    .container {
        max-height: 99vh;
        padding: clamp(3px, 0.5vh, 5px) clamp(8px, 1.2vw, 10px);
        margin: 0.5vh auto;
        overflow-y: hidden;
    }

    header h1 {
        font-size: clamp(1.3rem, 5vw, 2.5rem);
        margin: 0;
    }

    p {
        font-size: clamp(0.6rem, 1.5vw, 0.75rem);
        margin-bottom: clamp(2px, 0.5vh, 5px);
    }

    .hangman-container {
        padding: clamp(3px, 0.6vh, 6px);
        margin: clamp(2px, 0.5vh, 5px) auto;
    }

    #hangman-svg {
        max-width: clamp(80px, 20vw, 110px);
    }

    .word-display {
        font-size: clamp(0.9em, 2.5vw, 1.2em);
        margin: clamp(2px, 0.5vh, 5px) 0;
        min-height: clamp(22px, 3vh, 28px);
    }

    .keyboard {
        grid-template-columns: repeat(9, 1fr);
        gap: 2px;
        margin: clamp(2px, 0.5vh, 5px) auto;
    }

    .key {
        min-height: clamp(26px, 3.5vh, 30px);
        padding: clamp(3px, 0.8vh, 5px) 2px;
        font-size: clamp(0.6em, 1.8vw, 0.75em);
    }

    .reset-button {
        padding: clamp(5px, 1vh, 8px) clamp(12px, 2vw, 16px);
        font-size: clamp(0.7em, 1.8vw, 0.85em);
        margin-top: clamp(2px, 0.5vh, 5px);
        min-width: 100px;
    }

    .message {
        font-size: clamp(0.8em, 2vw, 1em);
        margin: clamp(2px, 0.5vh, 5px) 0;
        min-height: clamp(20px, 2.5vh, 25px);
    }
}

/* Confetti - Efecto de victoria */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: red;
    top: 0;
    animation: fall 3s linear infinite;
    border-radius: 50%;
    z-index: 9999;
    opacity: 0.8;
    transform: rotate(45deg);
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================================================
   👨‍💻 Desarrollado con ❤️ por
   
   **Nicolás Sagastegui - NASC.DEV 🚀**
   
   ¡Hola! 👋 Soy programador y futuro analista de sistemas. Me apasiona crear 
   soluciones web innovadoras que realmente marquen la diferencia. Si te gustó 
   este proyecto o tenés alguna idea en mente, ¡no dudes en contactarme! 
   Siempre estoy abierto a colaborar en nuevos proyectos. 💡✨
   
   ### 🌐 Conectemos en Redes Sociales
   ¿Querés ver más de mi trabajo? ¡Seguime en mis redes! 🎯
   
   - IG Dev: @nasc_dev (https://www.instagram.com/nasc_dev)
   - IG Personal: @nico_sagas (https://www.instagram.com/nico_sagas/)
   - Facebook: @nico.sagastegui.7 (https://www.facebook.com/nico.sagastegui.7)
   - X: @NASCdev (https://x.com/NASCdev)
   - GitHub: @nicosagas1 (https://github.com/nicosagas1)
   - TikTok Personal: @nico_sagas (https://www.tiktok.com/@nico_sagas)
   - TikTok Dev: @nasc_dev (https://www.tiktok.com/@nasc_dev)
   
   ### 🌟 Más sobre mí
   - 🌐 Mi Web: mipropiapaginaweb.onrender.com (https://mipropiapaginaweb.onrender.com)
   - 💬 WhatsApp: +54 9 11 4673-7100 (https://wa.me/5491146737100) — ¡Hablemos de tu proyecto!
   
   ### 🛠️ Tecnologías Utilizadas
   
   Este proyecto está desarrollado con las siguientes tecnologías:
   
   **Backend:**
   - 🐍 **Python 3.8+** - Lenguaje de programación
   - 🌶️ **Flask 3.0.0** - Framework web
   - 🗄️ **SQLite** - Base de datos
   - 🔐 **PBKDF2** - Hash seguro de contraseñas
   - 📦 **python-dotenv** - Gestión de variables de entorno
   
   **Frontend:**
   - 📜 **JavaScript Vanilla** - Sin frameworks, JavaScript puro
   - 🎨 **CSS3** - Estilos y animaciones
   - 🖼️ **SVG** - Gráficos vectoriales del ahorcado
   - 📱 **HTML5** - Estructura semántica
   
   **Herramientas:**
   - 🔧 **Werkzeug** - Utilidades de Flask
   - 📊 **CSV** - Exportación de datos
   - 🎵 **HTML5 Audio** - Reproducción de sonidos en el juego
   ============================================================================ */
