
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: #f1f1f1;
    background: linear-gradient(135deg, #121212, #1c1c1c);
    overflow-x: hidden;
}
.section-title {
    font-size: 2.5rem;
    margin: 30px 0;
    text-align: center;
    font-size: 60px;
    color: #ffcc00;
    text-shadow: 0 2px 5px rgba(255, 204, 0, 0.6);
}

.hero-minigames {
    background: url('fondo1.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    animation: fade-in 1.5s ease-in-out;
}
.hero-minigames::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.hero-minigames h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: slide-in 1s ease-out;
}
.hero-minigames p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fade-in 1.5s ease-in-out;
}
.primary-btn {
    background-color: #ffcc00;
    color: #161b22;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.4s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.5);
}
.primary-btn:hover {
    background-color: #343434 !;
}

.featured-games {
    background: #161b22;
    padding: 50px 20px;
    color: #ffffff;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.featured-card {
    background: linear-gradient(145deg, #1e242d, #202832);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-card:hover {
    transform: scale(1.05) rotateX(5deg);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.6);
    background: linear-gradient(145deg, #ffcc00, #f1e5b8);
}
.featured-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: filter 0.3s;
}
.featured-card:hover .featured-image {
    filter: brightness(1);
}
.featured-info {
    padding: 20px;
    text-align: center;
}


.fun-facts {
    background: radial-gradient(circle, #1f2937, #121212);
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    overflow: hidden;
}
.facts-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.fact-card {
    background: linear-gradient(145deg, #1e242d, #202832);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, background 0.3s;
}
.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
    animation: bounce 2s infinite;
}

.fact-card:hover {
    transform: translateY(-10px) scale(1.1);
    background: linear-gradient(145deg, #ffcc00, #ffe680);
    color: #161b22 ;
}


.cta-btn {
    background: linear-gradient(145deg, #ffcc00, #e6b800);
    color: #161b22;
    padding: 12px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}
.cta-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.8);
    background: linear-gradient(145deg, #ffe680, #ffcc00);
}


@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slide-in {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-minigames {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #f1f1f1;
    background: linear-gradient(180deg, #121212, #1c1c1c);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a {
    color: #ffcc00;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}
a::after {
    content: '';
    display: block;
    height: 2px;
    background: #ffcc00;
    width: 0;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 0;
}
a:hover {
    color: #ffe680;
    transform: scale(1.05);
}
a:hover::after {
    width: 100%;
}


button, .btn {
    display: inline-block;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffcc00, #e6b800);
    color: #161b22;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
button:hover, .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 204, 0, 0.8);
    background: linear-gradient(145deg, #ffe680, #ffcc00);
}
button.glow-btn, .btn.glow-btn {
    background: linear-gradient(145deg, #ffcc00, #e6b800);
    animation: glow 1.5s infinite alternate;
}
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.6);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 204, 0, 1), 0 0 30px rgba(255, 204, 0, 0.9);
    }
}


section {
    padding: 50px 20px;
    position: relative;
}
section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    top: -30px;
    left: 0;
    background: url('wave-top.svg') no-repeat top center;
    background-size: cover;
}
section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30px;
    bottom: -30px;
    left: 0;
    background: url('wave-bottom.svg') no-repeat bottom center;
    background-size: cover;
}


.hero-minigames {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('fondo1.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    animation: fade-in 1.5s ease-in-out;
    overflow: hidden;
}
.hero-minigames h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: slide-in 1s ease-out;
}
.hero-minigames p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fade-in 1.5s ease-in-out;
}
.primary-btn {
    background-color: #ffcc00;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: pulse 2s infinite;
}
.primary-btn:hover {
    transform: scale(1.2) rotate(2deg);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.8);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


.featured-card {
    background: linear-gradient(145deg, #1e242d, #202832);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.featured-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}
.featured-card:hover .featured-info {
    background: linear-gradient(145deg, #ffe680, #ffcc00);
    color: #161b22;
}
.featured-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
.featured-card:hover .featured-image {
    transform: scale(1.1);
}


.fact-card {
    background: linear-gradient(145deg, #1e242d, #202832);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s;
}
.fact-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.8);
    background: linear-gradient(145deg, #ffcc00, #ffe680);
}
.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.container {
    text-align: center;
  }


  .choices {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .choice {
    padding: 15px 30px;
    font-size: 16px;
    margin-top: 20px;
    color: #161b22;
    background: linear-gradient(135deg, #ffcc00, #f1f1f1);
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
    transition: transform 0.2s ease, background 0.3s ease;
  }
  
  .choice.active {
    background: #a48401;
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(158, 153, 24, 0.6);
  }











@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.8rem; 
        margin: 20px 0;
    }

    .hero-minigames {
        padding: 50px 10px;
    }

    .hero-minigames h1 {
        font-size: 2.5rem;
    }

    .hero-minigames p {
        font-size: 1rem; 
    }

    .primary-btn {
        font-size: 0.9rem; 
        padding: 10px 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .featured-card {
        margin: 0 10px;
    }

    .featured-image {
        height: 200px; 
    }

    .facts-grid {
        flex-direction: column; 
        gap: 20px; 
    }

    .fact-card {
        max-width: 100%;
        margin: 0 auto; 
    }

    section {
        padding: 30px 10px;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .choices {
         
        gap: 10px;
    }

    .choice {
        font-size: 14px;
        padding: 10px 20px; 
    }
}

@media (max-width: 480px) {
    .hero-minigames h1 {
        font-size: 2rem; 
    }

    .hero-minigames p {
        font-size: 0.9rem;
    }

    .primary-btn {
        font-size: 0.8rem; 
        padding: 8px 18px;
    }

    .facts-grid {
        gap: 15px; 
    }

    .fact-icon {
        font-size: 2.5rem; 
    }

    .cta-btn {
        font-size: 0.9rem; 
        padding: 8px 18px;
    }

    .choices {
        margin-top: 20px; 
    }

    .choice {
        font-size: 13px; 
        padding: 8px 15px;
    }

    .featured-image {
        height: 150px;
    }

    .featured-card {
        margin: 0 5px;
    }
}























.footer {
    background: linear-gradient(to right, #1c232c, #121212);
    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;
    }
}




.navbar-link::after {
    background-color: #ffcc00 !important; 
}
.navbar-link:hover {
    color: #ffcc00 !important;
}

.navbar-signup {
    background-color: #f5d03c !important;
}
.navbar-signup:hover {
   color: #fff !important;
}

.dropdown-menu li a:hover {
    color:#f5d03c !important;
  }
  
