
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'MiFuenteCustom';
    src: url('/fonts/sampking.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MiFuenteCuerpo'; 
    src: url('/fonts/sampmods.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #05050593; 
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

body {
    font-family: 'MiFuenteCuerpo', sans-serif;
    color: #ffffff;
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased; 
}

p, li, span, a:not(.nav-links a) {
    font-family: 'MiFuenteCuerpo', sans-serif;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: background-image 1.5s ease-in-out; 
    animation: zoomEfecto 20s infinite alternate ease-in-out;
}

@keyframes zoomEfecto {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.438); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 7%; 
    background: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo { 
    width: 45px; 
    transition: 0.3s;
}

@media (min-width: 1024px) {
    .nav-logo { 
        width: 55px; 
    }
}

.nav-logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    align-items: center;
}

.nav-links a { 
    color: #ffffff; 
    text-decoration: none; 
    font-size: 1rem; 
    font-family: 'MiFuenteCustom', 'Orbitron', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease; 
    position: relative; 
    padding: 8px 0;
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 50px;
    }

    .nav-links a { 
        font-size: 1.25rem; 
        letter-spacing: 1.5px;
    }
}

.nav-links a:hover { 
    color: white;
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.8);
    transform: translateY(-2px); 
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; 
    height: 2px;
    bottom: 0;
    left: 0;
    background: #2563eb; 
    box-shadow: 0 0 10px #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; 
}

.menu-mobile-btn { 
    display: none; 
    font-size: 1.8rem; 
    color: white; 
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }

    .menu-mobile-btn {
        display: block; 
    }
    
    .menu-mobile-btn:hover {
        color: #2563eb;
    }
}

.hero {
    height: 70vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
   

.hero h1 { 
    font-family: 'MiFuenteCustom', 'Orbitron', sans-serif; 
    font-size: 4rem;
    margin-bottom: 15px; 
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    color: white;
}

.highlight { 
    color: #2563eb; 
    text-shadow: 0 0 20px rgba(37, 100, 235, 0.212), 0 0 40px rgba(37, 100, 235, 0); 
    display: inline-block; 
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 700px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh; 
    }
    
    .hero h1 {
        font-size: 2.2rem; 
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 20px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px 5%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.icon-main {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid #2563eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    transition: 0.4s;
}

.feature-card h3 {
font-family: 'MiFuenteCustom', 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
}

.feature-card p {
    color: #c5c5c5;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-card:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: #2563eb;
    transform: translateY(-12px);
}

.feature-card:hover .icon-main {
    background: #2563eb;
    color: white;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    transform: rotateY(360deg); 
}

.download-buttons { 
    display: flex; 
    justify-content: center;
    align-items: center;    
    gap: 15px; 
    margin-top: 20px; 
    width: 100%;          
}

.btn {
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-flex;    
    align-items: center;
    gap: 8px;
}

.btn-download { 
    background: #2563eb; 
    color: white; 
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3); 
}

.btn-discord { 
    background: #5865F2; 
    color: white; 
}

.btn:hover { 
    transform: scale(1.05); 
    filter: brightness(1.2); 
}

.rating-card-premium {
    text-align: center;
    margin: 50px auto;
    padding: 40px;
    max-width: 600px;
    background: rgba(128, 198, 255, 0.05);
    border-radius: 30px;
    border: 1px dashed rgba(128, 204, 255, 0.3);
}

.rating-score { font-size: 3rem; font-weight: bold; color: #0099ff; }
.rating-stars { color: #facc15; font-size: 1.5rem; }

footer {
    text-align: center;
    padding: 60px 5%;
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px; 
    margin-bottom: 30px;
}

.footer-links a {
    color: #fafafa; 
    text-decoration: none;
    font-size: 0.85rem;
font-family: 'MiFuenteCustom', 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px; 
}

.footer-links a:hover {
    color: #2563eb; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #2563eb;
    box-shadow: 0 0 8px #2563eb;
    transition: width 0.3s ease; 
}

.footer-links a:hover::after {
    width: 100%;
}

footer p {
    font-size: 0.8rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-top: 15px;
}

.studio-name {
    display: block; 
    margin-top: 10px;
    font-family: 'Orbitron', sans-serif;
    color: #2563eb;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 2px;
}

.section-title, 
#galeria-title, 
#descarga-title, 
.rating-title {
    font-family: 'MiFuenteCustom', 'Orbitron', sans-serif; 
    text-align: center;
    font-size: 2.8rem; 
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px; 
    color: white;
    padding: 0 15px; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 5%;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.089);
    border-radius: 20px;
    padding: 15px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 12px; 
    transition: 0.5s;
}

.gallery-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #2563eb;
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.steps {
    padding: 60px 5%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.step-item {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.step-number {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid #2563eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
    transition: 0.4s;
}

.step-title {
font-family: 'MiFuenteCustom', 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.step-desc {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.6;
}

.step-item:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: #2563eb;
    transform: translateY(-10px);
}

.step-item:hover .step-number {
    background: #2563eb;
    color: white;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    transform: rotateY(360deg);
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px; 
        right: 5%;
        width: 180px;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        padding: 15px;
        border-radius: 15px;
        border: 1px solid #2563eb;
        gap: 15px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.295);
    }

    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s ease;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 5px 0;
    }
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.music-control {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.212);
    backdrop-filter: blur(8px);
    border: 2px solid #2563eb;
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0);
    overflow: hidden;
}

.music-control:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0);
    background: rgba(37, 99, 235, 0.3);
}

#music-icon {
    font-size: 1.4rem;
    color: #ffffff; 
    transition: all 0.3s ease;
    margin-top: 5px; 
}

.music-on #music-icon {
    color: #2563eb;
    text-shadow: 0 0 15px #07070700, 0 0 5px rgba(255, 255, 255, 0);
    animation: flash 1.5s infinite alternate;
}

.music-waves {
    display: none; 
    align-items: flex-end;
    gap: 2px;
    height: 10px;
    margin-top: 2px;
}

.music-waves span {
    width: 3px;
    background: #2563eb;
    border-radius: 1px;
    animation: bounce 0.5s infinite alternate;
}

.music-on .music-waves {
    display: flex;
}

@keyframes bounce {
    from { height: 2px; }
    to { height: 10px; }
}

@keyframes flash {
    from { opacity: 0.7; transform: scale(1); }
    to { opacity: 1; transform: scale(1.1); }
}

    .reviews-section {
        padding: 60px 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0);
    }

    .reviews-title {
        text-align: center;
        font-family: 'MiFuenteCustom', 'Orbitron', sans-serif;
        font-size: 2.2rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }

    .reviews-container {
        display: flex;
        width: 100%;
    }

    .reviews-track {
        display: flex;
        gap: 20px;
        animation: scroll 25s linear infinite;
        width: calc(350px * 10); 
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-350px * 3)); } 
    }

    .review-card {
        min-width: 330px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(209, 224, 255, 0.2);
        border-radius: 20px;
        padding: 25px;
        transition: 0.3s;
    }

    .review-card:hover {
        border-color: #2563eb;
        background: rgba(37, 100, 235, 0);
        transform: translateY(-5px);
    }

    .review-user {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .review-user img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #2563eb;
    }

    .review-user h4 {
        font-family: 'MiFuenteCustom', 'Orbitron', sans-serif;
        font-size: 1rem;
        color: #ffffff;
    }

    .review-user p {
        font-size: 0.7rem;
        color: #2563eb;
        text-transform: uppercase;
    }

    .review-text {
        font-family: Arial, sans-serif;
        font-size: 0.9rem;
        color: #ffffff;
        line-height: 1.5;
        font-style: italic;
    }

    .stars {
        margin-top: 15px;
        font-size: 0.8rem;
    }

    .reviews-container:hover .reviews-track {
        animation-play-state: paused;
    }

    
    .partners-section {
        padding: 80px 20px;
        text-align: center;
    }

    .partners-title {
        font-family: 'Yourmate', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 50px;
        letter-spacing: 3px;
    }

    .partners-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .partner-card {
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 35px;
        width: 100%;
        max-width: 400px;
        transition: 0.4s ease;
        overflow: hidden;
    }

    .partner-card:hover {
        transform: translateY(-10px);
        border-color: #0084ff;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0);
    }

    .partner-glow {
        position: absolute;
        top: 0; right: 0;
        width: 100px; height: 100px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
        z-index: -1;
    }

    .partner-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        text-align: left;
    }

    .discord-icon-wrapper {
        position: relative;
    }

    .partner-logo {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        border: 2px solid #2563eb;
        object-fit: cover;
    }

    .online-dot {
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        background: #00ff6a;
        border: 3px solid #0a0a0a;
        border-radius: 50%;
    }

    .partner-name h3 {
        font-family: 'Yourmate';
        font-size: 1.1rem;
        color: #fff;
    }

    .partner-name p {
        font-size: 0.7rem;
        color: #2563eb;
        letter-spacing: 1px;
    }

    .partner-stats {
        display: flex;
        justify-content: space-around;
        background: rgba(0, 0, 0, 0.452);
        padding: 15px;
        border-radius: 15px;
        margin-bottom: 25px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-value {
        font-family: 'Yourmate';
        font-size: 1.2rem;
        color: #fff;
    }

    .active-color { color: #00ff6a; text-shadow: 0 0 10px rgba(0, 0, 0, 0); }

    .stat-label {
        font-size: 0.6rem;
        color: #adadad;
        margin-top: 5px;
    }

    .stat-divider {
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-partner {
        display: block;
        background: #5865F2; 
        color: white;
        text-decoration: none;
        padding: 12px;
        border-radius: 12px;
        font-family: 'Yourmate';
        font-size: 0.8rem;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(88, 101, 242, 0);
    }

    .btn-partner:hover {
        background: #4752c4;
        transform: scale(1.02);
        box-shadow: 0 0 20px #5865f200;
    }


.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.verified-icon {
    color: #2563eb;
    font-size: 0.9rem;
    margin-left: 5px;
    text-shadow: 0 0 10px rgba(37, 100, 235, 0);
}

@media (max-width: 768px) {
    .partner-card {
        max-width: 100%;
    }
}