:root {
    --gold: #ffc83d;
    --orange: #ff9800;
    --orange-dark: #ff5722;
    --purple-glass: rgba(44, 31, 77, 0.55);
    --text-light: #e4e4e4;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--text-light);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('MEDIA_EUM/fondoblur.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}


.main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 300px;
    filter: drop-shadow(0 0 20px rgba(60, 58, 63, 0.9));
}

.main h1 {
    margin-bottom: 35px;
    font-family: 'Minecraft', sans-serif;
    font-size: 5em;
    color: var(--gold);
    text-align: center;
    text-shadow: 6px 6px 10px rgb(206, 117, 0);
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ff9800; }
    to   { text-shadow: 0 0 25px #ff5722; }
}


.menu {
    display: flex;
    gap: 4%;
    margin: 0 2%;
}

.characters-div,
.lore-div,
.preguntas-div,
.form-div {
    background: var(--purple-glass);
    border-radius: 30px;
    padding: 2% 4%;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;

}


.characters-div:hover,
.lore-div:hover,
.preguntas-div:hover,
.form-div:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-soft); 
}



.preguntas-div {
    max-width: 95vw;
    margin: auto;
}

.characters-title,
.lore-title,
.preguntas-title {
    font-family: 'Minecraft', sans-serif;
    text-align: center;
    color: var(--gold);
    font-size: 2em;
    text-shadow: 4px 4px 6px rgb(206, 117, 0);
}


p,
.lore {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
    font-size: 1.15em;
    font-weight: bold;
    line-height: 1.6;
}

.characters-div p {
    text-align: left;
}

ul {
    list-style: none;
    padding: 0;
}

.item1, .item2, .item3 {
    font-family: 'Minecraft', sans-serif;
    color: #eb8633;
    font-size: 1.5em;
    transition: transform 0.2s ease;
}

.item1:hover,
.item2:hover,
.item3:hover {
    transform: translateX(6px);
}


summary {
    font-family: 'Minecraft', sans-serif;
    font-size: 1.4em;
    cursor: pointer;
    color: #eb8633;
    padding: 8px;
}

details p {
    padding-left: 10px;
    font-size: 1.1em;
}

video,
iframe {
    width: 95vw;
    height: 95vh;
    display: flex;
    margin: 15vh auto;
    border-radius: 20px;
    box-shadow:rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn-comprar {
    display: inline-block;
    padding: 10px 32px;
    padding-bottom: 17px;
    font-family: 'Minecraft', sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
    transition: all 0.25s ease;
}

.btn-comprar:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.6);
}

.btn-comprar:active {
    transform: scale(0.95);
}


.nav-bar {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 70px;
    background: linear-gradient(
        to bottom,
        rgba(75, 43, 97, 0.6),
        transparent
    );
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    z-index: 1000;
}

.logo-nav {
    height: 65px;
    width: auto;
    display: block;
}

.menu-toggle {
    width: 34px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.link-div {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(49, 28, 58, 0.897);
    backdrop-filter: blur(100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.35s ease;
}

.link-div.active {
    right: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Minecraft', sans-serif;
    font-size: 1.4em;
    transition: color 0.25s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: var(--orange);
    transform: scale(1.05);
}


.social-media:hover {
    transform: scale(1.15);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .link-div {
        position: static;
        flex-direction: row;
        display: flex;
        justify-content: center;
        justify-items: center;
        height: auto;
        width: auto;
        background: none;
        backdrop-filter: none;
        gap: 30px;
    }
}

footer {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.65)
    );
    backdrop-filter: blur(10px);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    color: #fff;
    margin-top: 10vh;
    width: 100vw;;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.footer-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Minecraft', sans-serif;
    font-size: 1em;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-media {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.left-social-media {
    margin-left: 25px;
}

.right-social-media {
    margin-right: 25px;
}


.social-media:hover {
    transform: scale(1.15);
}

.footer-separator {
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    margin: 10px 0;
}

.footer-text {
    font-size: 0.85em;
    opacity: 0.7;
    text-align: center;
}

/* =====================================================
                    RESPONSIVE DESIGN 
   ===================================================== */

@media (max-width: 1024px) {

    .left-social-media {
        margin-left: 0;
    }

    .right-social-media {
        margin-right: 0;
    }


    .body {
        background-image: url(MEDIA_EUM/fondoblur.png);
        background-size: cover;
        background-attachment: fixed;

    }

    .main {
        padding: 90px 16px 40px;
    }

    .logo {
        width: 45vw;
    }

    .main h1 {
        font-size: 2.6em;
        margin-bottom: 25px;
    }

    .menu {
        flex-direction: column;
        gap: 24px;
        margin: 0;
    }

    .characters-div,
    .lore-div,
    .preguntas-div {
        padding: 20px;
        border-radius: 22px;
        margin: 20px;
    }

    .preguntas-div {
        max-width: 100%;
    }

    .characters-title,
    .lore-title,
    .preguntas-title {
        font-size: 1.6em;
    }

    p,
    .lore {
        font-size: 1em;
        line-height: 1.55;
    }

    .item1,
    .item2,
    .item3 {
        font-size: 1.25em;
    }

    summary {
        font-size: 1em;
        list-style: none;
    }

    details p {
        font-size: 1em;
    }

    video,
    iframe {
        width: 95vw;
        height: auto;
        margin: 5vh auto;
        border-radius: 20px;
    }

    .btn-comprar {
        width: 50vw;
        text-align: center;
        padding: 1em 0;
        font-size: 80%;
    }

    .nav-link {
        font-size: 1.25em;
    }

    .social-media,
    .account-icon {
        width: 32px;
        height: 32px;
    }

    footer {
        padding: 30px 16px 18px;
        margin-top: 60px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-link {
        font-size: 0.95em;
    }

    .footer-text {
        font-size: 0.8em;
    }




    .about-hero {
        background-attachment: scroll !important;
        height: 40vh;
        padding: 5em;
    }

    .about-hero h1 {
        font-size: 2em;
    }
    
    .about-hero p {
        font-size: 1em;
    }

    .info-section {
        flex-direction: column;
        gap: 1rem;
        margin: 2em 0;
    }

    .mission-image-container {
        order: -1;
    }

    .vision-image,
    .mission-image,
    .values-image {
        width: 70vw;
        height: 70vh;
    }

    .developers {
        width: 100%;
    }

    .developers h2 {
        font-size: 2em !important;
        margin-bottom: 2rem;
    }

    .developers-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .card {
        width: 80vw !important;
        height: 50vw !important;
        margin-bottom: 10em;
    }

    .card__title {
        font-size: 2em;
    }

    .card__description {
        font-size: 0.5em;
    }



    .form-div {
        width: 85vw !important;
        padding: 2rem 1rem !important;
        overflow-y: auto; 
    }

    .form-div h2 {
        margin-top: 3rem !important;
        font-size: 1.5em !important;
    }

    .form-btn {
        margin: 2em auto !important;
    }
    
}







.aboutus-body {
    background-color: #482F46;
}

.aboutus-body::before {
    display: none;
}

.about-hero {
    background-image: url('MEDIA_EUM/fondoblur.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}   


.about-hero h1 {
    font-family: 'Minecraft', sans-serif;
    font-size: 4em;
    color: var(--gold);
    text-align: center;
    text-shadow: 6px 6px 10px rgb(206, 117, 0);
    z-index: 1;
}

.about-hero p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
    font-size: 1em;
    color: var(--text-light);
    text-align: center;
}

.information {
    width: 90vw;
    margin: auto;
}

.info-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}


.vision-image-container,
.mission-image-container,
.values-image-container {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    max-width: 100%;
}

.vision-image,
.mission-image,
.values-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}


.vision-text-container,
.mission-text-container,
.values-text-container {
    background: var(--purple-glass);
    border-radius: 30px;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 95vw;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}


.vision-text-container:hover,
.mission-text-container:hover,
.values-text-container:hover {
    transform: scale(1.01);
}


h2 {
    font-family: 'Minecraft', sans-serif;
    text-align: center;
    color: var(--gold);
    font-size: 2em;
    text-shadow: 4px 4px 6px rgb(206, 117, 0);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.developers {
    margin-top: 10vh;
    margin-bottom: 10vh;
    width: 100%;
    padding: 0 1em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.developers h2 {
    font-family: 'Minecraft', sans-serif;
    text-align: center;
    color: var(--gold);
    font-size: 3em;
    text-shadow: 4px 4px 6px rgb(206, 117, 0);
    margin: 0 0 3rem 0;
    padding: 0;
    width: 100%;
}



.card {
    position: relative;
    width: 20vw;
    height: 40vh;
    margin: 5vw 2vw;
    border-radius: 30px;
    overflow: hidden;

    background-image: url('MEDIA_EUM/YO.png');
    background-size: cover;
    background-position: center;

    display: inline-block;
    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

.card__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 90%;
    height: 90%;
    padding: 1.5em;
    box-sizing: border-box;

    background-color: rgba(170, 150, 223, 0.55);
    border-radius: 30px;

    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
    backdrop-filter: blur(6px);
}

.card:hover .card__content,
.card__content.active {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
    pointer-events: auto;
}


.card__title {
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.card__description {
    margin-top: 0.5em;
    font-size: 0.9rem;
    color: #eee;
    text-align: center;
    line-height: 1.4;
}







.contact-body {
    display: flex;
    justify-content: center;  
    align-items: center;
    width: 100%;
    padding: 0;
    background: var(--purple-glass);
    box-sizing: border-box;
    flex-direction: column; 
}

.form-div {
    margin: 12vh ;
    height: 75vh;
    width: 25vw;
    background: var(--purple-glass);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.form-tabs {
    display: flex;
    justify-content: space-around;
}

.tab-btn {
    font-family: "Minecraft", sans-serif;
    background: none;
    border: none;
    font-size: 1em;
    padding: 10px;
    cursor: pointer;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.tab-btn.active {
    border-color: var(--orange);
    color: var(--orange);
}

.form_input {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.form_input input {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(15, 23, 42, 0.75);
    color: var(--text-light);
    font-size: 0.95em;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.form_input input::placeholder {
    color: rgba(193, 174, 223, 0.76);
}

/* Glow focus */
.form_input input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.35);
}

.form_input label {
    font-family: 'Minecraft', sans-serif;
    font-size: 0.85em;
    color: var(--gold);
    padding-top: 1em;
}

.checkbox-container { 
    display: inline-block; 
    justify-items: center; 
    margin-top: 1.2em; 
    margin-bottom: 0.5;
} 

.checkbox {
    accent-color: var(--orange); 
    transform: scale(1.15); 
} 

.checkbox-container label {
    font-size: 0.7em;
}

.a-terms { 
    color: #8c73cf; 
    text-decoration: none; 
}

.a-terms:hover {
    color: #594985;
}

.form-div h2 {
    font-family: 'Minecraft', sans-serif;
    text-align: center;
    color: var(--gold);
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 6px rgb(206, 117, 0);
}

.form-btn {
    font-family: sans-serif;
    display: block;
    width: 90%; 
    margin: 1.5em auto;
    padding: 0.7em 0;
    border: none;
    border-radius: 12px;
    background-color: var(--orange);
    color: var(--text-light);
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.form-btn:hover {
    background-color: #ff9800cc;
    transform: scale(1.05); 
}


#login-form {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-div {
    position: relative;
}

#register-form,
#login-form {
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    padding: 0 3em;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#register-form {
    opacity: 1;
    visibility: visible;
}
#login-form {
    opacity: 0;
    visibility: hidden;
}




.form-div textarea {
    margin-top: 2em;
    resize:none;

    min-height: 20em;
    max-height: 70%;


    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(15, 23, 42, 0.75);
    color: var(--text-light);
    font-size: 0.95em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.form-div textarea::placeholder {
    color: rgba(193, 174, 223, 0.76);
}

.form-div textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.35);
}
