body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
    
}



/* Animación de entrada para menú móvil */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background-color: #3B3B3B;
}

.mobile  {
    display: none;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.377);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.logo {
    width: 600px;
    height: 200px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeInUp 1s ease-in-out;
    
}

.about-us h2 {
    font-size: 3rem;
    margin: 0;
    animation: fadeInUp 1s ease-in-out;
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Minecraft', sans-serif;
    text-align: left;
    text-shadow: 2px 2px #000;
}

p {
    font-size: 1.5rem;
    margin: 20px 0;
    animation: fadeInUp 1.2s ease-in-out;
}

.cta-buttons {
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #fff;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}

.primary-btn {
    background-color: #ff7f50;
}

.secondary-btn {
    background-color: #1e90ff;
}



.btn:hover {
    background-color: #fff;
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mods-section {
    position: relative;
    padding: 50px 20px;
    height: 60vh;
    color: #333;
    text-align: center;
    overflow: hidden;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('gh.webp') no-repeat center center/cover ;
    z-index: -1;
}

@keyframes parallaxScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.mods-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mods-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.mods-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mod-card {
    position: relative;
    width: 590px;
    height: 310px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.mod-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.mod-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(19, 36, 40, 0.727);
    color: #fff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.mod-card:hover .mod-image {
    transform: scale(1.1);
}

.mod-card:hover .mod-overlay {
    transform: translateY(0);
}

.mod-card h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.mod-card p {
    font-size: 1rem;
    margin: 0;
}

.decorative-fox {
    position: absolute;
    top: 20%;
    right: 0.5%;
    width: 350px;
    transform: rotate(-20deg);
    animation: float 6s ease-in-out infinite;
}

.decorative-staff {
    position: absolute;
    bottom: 10%;
    left: 0.5%;
    width: 350px;
    animation: float 8s ease-in-out infinite;
}

.title_mods {
    margin: 50px;
    width: 30%;
}

.title_mods_inside {
    margin-bottom: 20px;
    margin-top: 80px;
    width: 500px;
}

.title_mods_down {
    margin: 5px;
    width: 250px;
}

/* Botón View More */
.button-container {
    margin-top: 30px;
    text-align: center;
}

.view-more-button {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #17aa00, #148d01);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 0 15px #17aa00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-button i {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.view-more-button:hover {
    background: linear-gradient(135deg, #148d01, #17aa00);
    box-shadow: 0 0 20px #17aa00, 0 0 25px #17aa00 inset;
    transform: scale(1.05);
}

.view-more-button:hover i {
    margin-left: 15px;
}

/* Animación de brillo */
.view-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-45deg);
    transition: all 0.5s ease;
}

.view-more-button:hover::before {
    left: 100%;
}

/* Efecto responsivo para el botón */
@media (max-width: 768px) {
    .view-more-button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .view-more-button i {
        margin-left: 5px;
    }
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



@media (max-height: 810px) {
    .hero {
        height: 100%;
    }

    .logo {
       
    }
    .mods-section {
        position: relative;
        padding: 50px 20px;
        height: 115vh;
        color: #333;
        text-align: center;
        overflow: hidden;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin: 10px 0;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .mods-section {
        padding: 20px 10px;
    }

    .mod-card {
            position: relative;
            width: 372px;
        height: 190px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.39);
            transition: transform 0.3s;
            cursor: pointer;
            margin-bottom: 40px;

    }
    #mod2 {

        right: 6%;
        left: 1%;
    }
    .title_mods, .title_mods_inside {
        margin-top: 60px;
        margin-bottom: 100px;
        width: 90%;
        position: relative;
        right: 13%;
    }
    .decorative-fox {
        position: absolute;
        top: 15%;
        left: 64%;
        width: 150px;
        animation: float 8s ease-in-out infinite;
    }

    .title_mods, .title_mods_inside {
      
    }

    .title_mods_down {
      
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .hero {
        height: 100%;
    }

    .logo {
        width: 400px;
        height: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }

    .mod-card {
       
    }

    .decorative-fox, .decorative-staff {
       
    }

    .title_mods{
        margin-top: 60px;
        margin-bottom: 100px;
        width: 50%;
        position: relative;
    }

    .decorative-fox {
        position: absolute;
        top: 15%;
        left: 84%;
        width: 150px;
        animation: float 8s ease-in-out infinite;
    }

    .title_mods_down {
       
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .logo {
        width: 300px;
        height: auto;
    }
    .mods-section {
        position: relative;
        padding: 50px 20px;
        height: 90vh;
        color: #333;
        text-align: center;
        overflow: hidden;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .mod-card {
       
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin: 10px 0;
    }

    .decorative-fox {
        position: absolute;
        top: 10%;
        left: 70%;
        width: 170px;
        animation: float 8s ease-in-out infinite;
    
    }
    .decorative-staff {
        position: absolute;
        bottom: 5%;
        right: 95%;
        width: 170px;
        animation: float 8s ease-in-out infinite;
    
    }

    .title_mods, .title_mods_inside {
        margin-top: 40px;
        margin-bottom: 80px;
        width:80%;
        position: relative;
    }


    .title_mods_down {
        width: 150px;
    }
}

@media (max-width: 380px) {
    .hero {
        height: 80vh;
    }

    .logo {
        width: 300px;
        height: auto;
    }
    .mods-section {
        position: relative;
        padding: 50px 20px;
        height: 90vh;
        color: #333;
        text-align: center;
        overflow: hidden;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .mod-card {
       
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin: 10px 0;
    }

    .decorative-fox {
        position: absolute;
        top: 10%;
        left: 70%;
        width: 170px;
        animation: float 8s ease-in-out infinite;
    
    }
    .decorative-staff {
        position: absolute;
        bottom: 5%;
        right: 95%;
        width: 170px;
        animation: float 8s ease-in-out infinite;
    
    }

    .title_mods {
        margin-top: 0px;
        margin-bottom: 60px;
        width: 90%;
        position: relative;
        right: 8%;
    }


    .title_mods_down {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .logo {
       
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin: 10px 0;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .mods-section {
        padding: 20px 10px;
    }

    .mod-card {
            position: relative;
            width: 372px;
        height: 190px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.39);
            transition: transform 0.3s;
            cursor: pointer;
            margin-bottom: 40px;

    }
    #mod2 {

        right: 6%;
        left: 1%;
    }

    .title_mods, .title_mods_inside {
      
    }

    .title_mods_down {
      
    }
}
@font-face {
    font-family: 'Minecraft';
    src: url('Minecraft-Regular.otf') format('OpenType');
}

.about-us {
    background: url('minecraft-world-scenery-desktop-wallpaper-preview.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
    padding: 50px 20px;
    border-top: 4px solid #4caf50;
    border-bottom: 4px solid #4caf50;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-us h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Minecraft', sans-serif;
    text-align: left;
    text-shadow: 2px 2px #000;
}

.about-us .content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.text-section {
    flex: 1;
    min-width: 300px;
    max-width: 60%;
}

.text-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
    text-indent: 20px;
}

.styled-paragraph {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 30px;
    border-left: 5px solid #4caf50;
    padding-left: 15px;
    position: relative;
}

.styled-paragraph::before {
    content: "▶";
    position: absolute;
    left: -25px;
    color: #4caf50;
    font-size: 1.2em;
}

.text-section .highlight {
    color: #4caf50;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 5px;
    border-radius: 5px;
}

.text-section .bold {
    font-weight: bold;
    color: #ffeb3b;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 5px;
    border-radius: 5px;
}

.text-section .italic {
    font-style: italic;
    color: #ff9800;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 5px;
    border-radius: 5px;
}

.image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.join-btn {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: 'Minecraft', sans-serif;
    margin-top: 20px;
}

.join-btn:hover {
    background: #45a049;
}

.decorative-logo {
    position: absolute;
    bottom: 5%;
    right: 75%;
    width: 330px;
    animation: float 8s ease-in-out infinite;
}

.decorative-logo2 {
    position: absolute;
    top: 10%;
    left: 70%;
    width: 340px;
    animation: float 8s ease-in-out infinite;
}




#app-promo {
    background: url('bg5.jpg')  no-repeat center center fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: rgb(255, 255, 255);
  
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Minecraft', sans-serif;

}


.app-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.app-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.app-details {
    max-width: 600px;
    text-align: left;
}

.app-details p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
    text-indent: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    color: #fff;
    background: #ff5722;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e64a19;
}

.floating-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.block {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('baston.png') no-repeat center/cover;
    animation: floatBlock 10s infinite;
}

.styled-paragraph .highlight {
    color: #4caf50;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 5px;
    border-radius: 5px;
}

.crafting-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2C2C2C;
    border: 3px solid #000;
    padding: 20px;
    box-shadow: 0 0 20px #000;
    position: relative;
}

.title {
    font-size: 36px;
    margin-bottom: 10px;
   color: white;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
   
}

.crafting-table {
    display: grid;
    grid-template-columns: repeat(3, 64px);
    grid-template-rows: repeat(3, 64px);
    gap: 5px;
    padding: 10px;
    background-color: #3B3B3B;
    border: 4px solid #333;
    border-radius: 5px;
    box-shadow: inset 0 0 10px #000;
    margin-bottom: 20px;
}

.slot, .result-slot {
    width: 64px;
    height: 64px;
    background-color: #8B8B8B;
    border: 2px solid #555;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.slot:hover, .result-slot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #FFD700;
}

.result-slot {
    border: 3px solid #FFD700;
    margin-top: 10px;
}

.slot img, .result-slot img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.footer {
    font-size: 16px;
    color: white;
  
    text-align: center;
}

.decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('DWNBTN.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.decoration-left {
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-right {
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
}

.download-button {
    background-color: #FFAA00;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s, transform 0.2s;
}

.download-button:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}


.footer {
    background-color: #282828;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 50px;
    margin-right: 10px;
    color: #ffcc00;
}

.footer-logo h2 {
    margin: 0;
    font-size: 24px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 18px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.footer-column ul li i {
    margin-right: 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
}

.footer-credits {
    text-align: center;
}

.footer-credits p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        padding: 10px 0;
    }
}

@media (max-width: 1690px) {
    .mods-section {
        height: 100%;
    }

    
}

@media (max-width: 768px) {
    .about-us h1 {
        font-size: 2.5em;
        text-align: center;
    }
    .title {
        font-size: 26px;
       
    }

    .mods-section {
        position: relative;
        padding: 50px 20px;
        height: 90vh;
        color: #333;
        text-align: center;
        overflow: hidden;
    }
    .subtitle {
        font-size: 15px;
       
    }
    .image-section img {
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-us .content {
        flex-direction: column;
        align-items: center;
    }

    .text-section {
        max-width: 100%;
        text-align: center;
    }

    .decorative-logo {
        position: absolute;
        right: 65%;
        width: 120px;
        animation: float 8s ease-in-out infinite;
        top: 57%;
    }
    .decorative-logo2 {
        position: absolute;
        top: 20%;
        left: 77%;
        width: 100px;
        animation: float 8s ease-in-out infinite;
    }

    .text-section p {
        margin-right: 3px;
    }

    .text-section p {
        font-size: 1em;
        text-indent: 0;
    }

    .styled-paragraph {
        font-size: 1.2em;
    }

    .image-section {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-us h1 {
        font-size: 2em;
    }

    .text-section p {
        font-size: 0.9em;
    }

    .styled-paragraph {
        font-size: 0.9em;
    }

    .join-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 330px) {
    .about-us h1 {
        font-size: 1.5em;
    }

    .text-section p {
        font-size: 0.7em;
    }

    .text-section p {  
        width: 70%;
    }

    .styled-paragraph {
        font-size: 0.6em;
    }
    .text-section p {
        margin-right: 5px;
    }

    .join-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .image-section img {
        max-width: 220px;
        right: 20%;
    }
}




























.container_pal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

.header_pal {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header_pal h1 {
    font-size: 3.5em;
    margin: 0;
    color: #fff;
    animation: fadeInDown 1s ease-in-out;
}

.header_pal p {
    font-size: 1.5em;
    color: #f1f1f1;
    margin-top: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.section_pal {
    background-color: #282828;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 40px;
    animation: fadeIn 1.5s ease-in-out;
}

.section_pal img {
    width: 100%;
    height: auto;
}

.section-content {
    padding: 40px 30px;
    text-align: center;
}

.section-content h2 {
    font-size: 2.8em;
    margin: 0;
    color: #ffc371;
}

.section-content p {
    font-size: 1.3em;
    color: #ddd;
    line-height: 1.7;
    margin-top: 20px;
}

.section-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #fc3a4a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3em;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-content a:hover {
    background-color: #ff2e4c;
    transform: scale(1.05);
}

.developer-info {
    display: flex;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
    animation: fadeInUp 1.5s ease-in-out;
}

.developer-info img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border: 3px solid #ffc371;
}

.developer-info p {
    font-size: 1.2em;
    color: #f1f1f1;
    margin: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: custom-fadeIn 1s;
}

@keyframes custom-fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.custom-modal-content {
    background-color: #3b3b3b;
    margin: 5% auto;
    padding: 20px;
    border: 3px solid #4CAF50;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    animation: custom-slideDown 0.5s ease-out;
    position: relative;
    color: #e2e2e2;
    background-image: url('modalfondo2.jpg');
    background-size: cover;
    background-blend-mode: overlay;
}

@keyframes custom-slideDown {
    from {transform: translateY(-50%); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.custom-modal-header h2 {
    font-size: 2.8em;
    color: #4CAF50;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #4CAF50;
}

.custom-modal-body p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

.custom-slider {
    position: relative;
    width: 100%;
    max-width: 300px; /* Smaller slider */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.custom-slides img {
    width: 100%;
    display: none;
    animation: custom-slideFade 1s ease-in-out;
}

.custom-slides img.active {
    display: block;
}

@keyframes custom-slideFade {
    from {opacity: 0.5;}
    to {opacity: 1;}
}

.custom-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.custom-nav-btn {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.custom-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.custom-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.custom-btn img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 15px;
}

.custom-btn-fabric {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 0 20px #3b82f6;
}

.custom-btn-forge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 0 20px #f97316;
}

.custom-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(0, 0, 0, 1);
}

.custom-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5em;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}

.custom-close-btn:hover {
    color: #f00;
}


/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .custom-modal-content {
        width: 85%;
        padding: 10px;
        max-width: 85%;
    }

    .custom-modal-header h2 {
        font-size: 1.8em;
    }

    .custom-modal-body p {
        font-size: 1em;
    }

    .custom-slider {
        max-width: 230px;
    }

    .custom-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .custom-btn {
        font-size: 1em;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .custom-close-btn {
        font-size: 2.5em;
        top: 2px;
        right: 7px;
    }
}

@media (max-width: 480px) {
    .custom-modal-content {
        width: 90%;
        padding: 8px;
    }

    .custom-modal-header h2 {
        font-size: 1.5em;
    }

    .custom-modal-body p {
        font-size: 0.9em;
    }

    .custom-slider {
        max-width: 180px;
    }

    .custom-buttons {
        gap: 8px;
    }

    .custom-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .custom-close-btn {
        font-size: 3.5em;
    }
}
/* Estilos generales */
.minecraft-section {
    padding: 40px 20px;
    background-color: #282828a7;
    color: #e2e2e2;
    background-image: url('magicwall.jpg');
    background-size: cover;
    background-blend-mode: overlay;
    border-radius: 20px;
    width: 100%; /* Ocupa todo el ancho de la pantalla */
    margin: 0 auto;
    box-sizing: border-box; /* Evita que los elementos sobresalgan */
}

/* Título centrado */
.minecraft-header {
    text-align: center;
}

.minecraft-header h2 {
    font-size: 3em;
    font-family: 'Minecraft', sans-serif;
    color: #d2d1d1;
    display: inline-block;
    padding-bottom: 10px;
}

/* Contenedor principal */
.minecraft-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Se asegura de que las columnas tengan la misma altura */
    gap: 40px; /* Espacio entre las columnas */
    padding: 0 40px; /* Relleno para separar el contenido de los bordes */
}

/* Igualar el ancho de todas las columnas */
.minecraft-left-content,
.minecraft-center-content,
.minecraft-right-content {
    flex: 1; /* Todas las columnas tendrán el mismo ancho */
    display: flex;
    flex-direction: column;
  
    margin: 10px;
}

/* Columna izquierda */
.minecraft-left-content h3 {
    font-size: 2.1em;
    font-family: 'Minecraft', sans-serif;
    color: #4CAF50;
    margin-bottom: 15px;
}

.minecraft-center-content h3 {
    font-size: 2.1em;
    font-family: 'Minecraft', sans-serif;
    color: #4CAF50;
    margin-bottom: 15px;
}

.minecraft-video iframe {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Slider en el centro */
.minecraft-center-content {
    text-align: center;
}

.minecraft-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px; /* Smaller slider */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Limitar la altura del slider */
.minecraft-slider img {
    width: 100%;
    height: auto;
  
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.minecraft-slider img.active {
    display: block;
    opacity: 1;
}

/* Botones de navegación */
.minecraft-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.minecraft-nav-btn {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.minecraft-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Columna derecha */
.minecraft-right-content h3 {
    font-size: 2.1em;
    color: #4CAF50;
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 5px;
}

.minecraft-right-content p {
    margin-bottom: 5px;
    font-size: 1.5em;
    font-family: 'Minecraft', sans-serif;
}

.minecraft-left-content p {
    margin-bottom: 5px;
    font-size: 1.5em;
    font-family: 'Minecraft', sans-serif;
}

/* Botones de descarga en vertical */
.minecraft-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre los botones */
    margin-top: 30px;
}

.minecraft-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%; /* Asegura que los botones ocupen todo el ancho de la columna */
}

.minecraft-btn img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.minecraft-btn-fabric {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 0 15px #3b82f6;
}

.minecraft-btn-forge {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 0 15px #f97316;
}

.minecraft-btn-bedrock {
    background: linear-gradient(135deg, #17aa00, #148d01);
    box-shadow: 0 0 15px #17aa00;
}


.minecraft-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

iframe {
    width: 560px;
    height: 315px ;
}
/* Estilos responsivos */
@media (max-width: 1024px) {
    .minecraft-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .minecraft-left-content, .minecraft-right-content, .minecraft-center-content {
        max-width: 100%;
    }
    
    .minecraft-buttons-vertical {
        width: 100%;
    }
}

@media (max-width: 1740px) {
   
    iframe {
        width: 370px;
        height: 220px ;
    }

    .minecraft-slider-wrapper {
        position: relative;
        width: 100%;
        max-width: 300px; /* Smaller slider */
        margin: 20px auto;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }
    .minecraft-buttons-vertical {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Espacio entre los botones */
        margin-top: 30px;
    }
    
    .minecraft-btn {
        display: inline-block;
        padding: 8px 12px;
        font-size: 1.3m;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        text-align: center;
        width: 100%; /* Asegura que los botones ocupen todo el ancho de la columna */
    }
    
    .minecraft-btn img {
        width: 35px;
        height: 35px;
        vertical-align: middle;
        margin-right: 10px;
    }
    .minecraft-btn-fabric {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        box-shadow: 0 0 15px #3b82f6;
    }
    
    .minecraft-btn-forge {
        background: linear-gradient(135deg, #f97316, #ea580c);
        box-shadow: 0 0 15px #f97316;
    }
    
    
    
}


@media (max-width: 768px) {
    .minecraft-section {
        padding: 20px 10px; 
        background-size: cover;
        border-radius: 10px; 
        width: 100%; 
        margin: 0 auto;
    }

 
    .minecraft-header h2 {
        font-size: 2em;
        padding-bottom: 8px;
    }

    
    .minecraft-content-wrapper {
        flex-direction: column; 
        gap: 20px; 
        padding: 0 20px; 
    }

   
    .minecraft-left-content,
    .minecraft-center-content,
    .minecraft-right-content {
        flex: none;
        width: 100%; 
        margin: 5px; 
    }

    
    .minecraft-left-content h3,
    .minecraft-center-content h3,
    .minecraft-right-content h3 {
        font-size: 1.6em; 
        text-align: center;
    }

    .minecraft-left-content p,
    .minecraft-right-content p {
        font-size: 1.2em; 
    }

 
    .minecraft-slider-wrapper {
        max-width: 250px; 
        margin: 10px auto; 
    }

    .minecraft-slider img {
        border-radius: 8px;
    }

    
    .minecraft-buttons-vertical {
        gap: 10px; 
    }

    .minecraft-btn {
        padding: 8px 0px; 
        font-size: 0.9em;
    }

    .minecraft-btn img {
        width: 25px; 
        height: 25px;
        margin-right: 5px;
    }

    
    iframe {
        width: 100%;
        height: auto; 
    }
    .no-mobile  {
        display: none;
    }
    .mobile  {
        display: block;
    }
}


  







.register-section {
    background: url('fondo_new.png') no-repeat center center/cover;
    padding: 60px 20px;
    border-top: 4px solid #17aa00;
    border-bottom: 4px solid #17aa00;
    position: relative;
    overflow: hidden;
}


.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.623); 
    z-index: 1;
}


.register-section > * {
    position: relative;
    z-index: 2;
}


.register-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Minecraft', sans-serif;
    font-size: 2.5em;
    color: #fff;
    text-shadow: 2px 2px #000;
    margin-bottom: 15px;
}

.section-header p {
    color: #d2d1d1;
    font-size: 1.2em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #17aa00;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #17aa00;
}

.benefit-icon {
    font-size: 2.5em;
    color: #17aa00;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #fff;
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #d2d1d1;
    font-size: 1em;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    font-size: 1.3em;
    background: linear-gradient(135deg, #17aa00, #148d01);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #17aa00;
    margin: 20px auto;
}

.register-btn i {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, #148d01, #17aa00);
    box-shadow: 0 0 25px #17aa00;
    transform: scale(1.05);
}

.register-btn:hover i {
    margin-left: 15px;
}

.additional-benefits {
    text-align: center;
    color: #d2d1d1;
    font-size: 0.9em;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .register-btn {
        font-size: 1.1em;
        padding: 12px 30px;
    }
}





.explore-section {
    background: url('gh.webp') no-repeat center center/cover;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Overlay oscuro */
.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta la opacidad aquí */
    z-index: 1;
}

/* Asegúrate de que el contenido de .explore-section esté por encima del overlay */
.explore-section > * {
    position: relative;
    z-index: 2;
}


.explore-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Minecraft', sans-serif;
    font-size: 2.5em;
    color: #fff;
    text-shadow: 2px 2px #000;
    margin-bottom: 15px;
}

.section-header p {
    color: #d2d1d1;
    font-size: 1.2em;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.explore-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.java-mods {
    border-color: #ff7f50;
    background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(0,0,0,0.7));
}

.plugins {
    border-color: #1e90ff;
    background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(0,0,0,0.7));
}

.textures {
    border-color: #9b59b6;
    background: linear-gradient(135deg, rgba(155,89,182,0.1), rgba(0,0,0,0.7));
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px;
}

.java-mods:hover {
    box-shadow: 0 0 20px #ff7f50;
}

.plugins:hover {
    box-shadow: 0 0 20px #1e90ff;
}

.textures:hover {
    box-shadow: 0 0 20px #9b59b6;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.java-mods .card-icon {
    color: #ff7f50;
}

.plugins .card-icon {
    color: #1e90ff;
}

.textures .card-icon {
    color: #9b59b6;
}

.explore-card h3 {
    color: #fff;
    font-family: 'Minecraft', sans-serif;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.explore-card p {
    color: #d2d1d1;
    font-size: 1.1em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .explore-card {
        padding: 20px;
        min-height: 200px;
    }
}






.discord-section {
  background: linear-gradient(135deg, #3a231d, #221614, #2c2b2b);
    background-color: rgba(88, 0, 0, 0.3);
    background-blend-mode: multiply;
    padding: 40px 20px;
    border-top: 1.5px solid #943920;
    border-bottom: 1.5px solid #943920;

}

.discord-container {
    max-width: 1200px;
    margin: 0 auto;
}

.discord-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.discord-text h2 {
    font-family: 'Minecraft', sans-serif;
    color: #fff;
    font-size: 2.3em;
    margin: 0;
}

.discord-text h2 i {
    color: #ffffff;
    margin-right: 15px;
}

.discord-text p {
    color: #ffffff;
    font-size: 1.1em;
    margin: 10px 0 0;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff4444, #943920);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
   
   
}

.discord-btn i {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #943920, #ff4444);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.discord-btn:hover i {
    margin-left: 15px;
}

@media (max-width: 768px) {
    .discord-content {
        justify-content: center;
        text-align: center;
    }
    
    .discord-text h2 {
        font-size: 1.8em;
    }
    
    .discord-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}









