/* global styles */

/* =========================================
   Footer (Main Footer)
   Used in: registro.html, login.html, boveda.html
   ========================================= */
.main-footer {
    width: 100%;
    background-color: #0a0a0a;
    border-top: 1px solid #222222;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
    box-sizing: border-box;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-copy {
    color: #444444;
    font-size: 0.8em;
    letter-spacing: 1px;
}

/* =========================================
   Top Navbar
   Used in: index.html, boveda.html
   ========================================= */
.top-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo {
    display: block;
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-login:hover {
    color: #d4af37;
}

.lang-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    color: #aaaaaa;
    font-family: inherit;
    font-size: 1em;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.lang-btn.active,
.lang-btn:hover {
    color: #ffffff;
    font-weight: bold;
}

.lang-separator {
    color: #777777;
    cursor: default;
}

@media (max-width: 600px) {
    .top-navbar {
        padding: 15px 20px;
    }

    .nav-controls {
        gap: 15px;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   Auth Containers (Login, Registro)
   Used in: login.html, registro.html
   ========================================= */
.auth-container {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 50px 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth-container:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.auth-container h2 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 5px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, outline 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: #666666;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: inherit;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #f5d76e;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
    transform: scale(0.98);
}

.auth-links {
    margin-top: 25px;
    font-size: 0.9em;
    color: #cccccc;
    line-height: 1.5;
}

.auth-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #f5d76e;
    text-decoration: underline;
}

.back-home {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #d4af37;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 40px 20px;
    }

    .back-home {
        top: 20px;
        left: 20px;
    }
}

/* =========================================
   Index Styles
   Used in: index.html
   ========================================= */
body.index-body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    align-items: center;
}

.text-content {
    flex: 1;
    padding-right: 50px;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    font-weight: normal;
    text-transform: uppercase;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 2em;
    color: #cccccc;
}

.btn-comenzar {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-comenzar:hover {
    background-color: #c4a030;
}

.btn-comenzar:active {
    transform: scale(0.98);
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rules-section {
    width: 90%;
    max-width: 1200px;
    padding: 80px 0;
    text-align: center;
}

.rules-section h2 {
    font-size: 2.5em;
    margin-bottom: 2em;
    font-weight: normal;
    text-transform: uppercase;
    color: #d4af37;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 200px;
    background-color: #111111;
    padding: 40px 20px;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #d4af37;
}

.card p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vault-section {
    width: 90%;
    max-width: 800px;
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
}

.vault-section h2 {
    font-size: 2.5em;
    margin-bottom: 2em;
    font-weight: normal;
    text-transform: uppercase;
    color: #d4af37;
}

.pricing-card {
    background-color: #111111;
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    color: #ffffff;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-card .price {
    font-size: 3em;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing-card p {
    color: #cccccc;
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-comprar {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-comprar:hover {
    background-color: #f5d76e;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-comprar:active {
    transform: scale(0.98);
}

.btn-agotado {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.3em;
    font-weight: bold;
    color: #555555;
    background-color: #222222;
    border: 1px solid #333333;
    border-radius: 5px;
    cursor: not-allowed;
    text-transform: uppercase;
    text-decoration: line-through;
    font-family: inherit;
    letter-spacing: 2px;
}

.faq-section {
    width: 90%;
    max-width: 800px;
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 2em;
    font-weight: normal;
    text-transform: uppercase;
    color: #d4af37;
}

.accordion {
    text-align: left;
}

.accordion-item {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: #ffffff;
    font-size: 1.2em;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #1a1a1a;
}

.accordion-header::after {
    content: '+';
    color: #d4af37;
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #0a0a0a;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    color: #cccccc;
    font-size: 1.1em;
    line-height: 1.5;
    border-top: 1px solid #333333;
}

.roadmap-section {
    width: 90%;
    max-width: 1000px;
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
}

.roadmap-section h2 {
    font-size: 2.5em;
    margin-bottom: 2em;
    font-weight: normal;
    text-transform: uppercase;
    color: #d4af37;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #333333;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -11px;
    background-color: #000000;
    border: 3px solid #d4af37;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -11px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #111111;
    position: relative;
    border-radius: 8px;
    border: 1px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #d4af37;
    font-size: 1.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.timeline-content p {
    margin: 0;
    font-size: 1.1em;
    color: #cccccc;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 2.5em;
    }
}

.scarcity-container {
    width: 100%;
    max-width: 600px;
    background-color: #222222;
    border-radius: 10px;
    margin: 15px auto;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.scarcity-bar {
    height: 14px;
    width: 92%;
    background: linear-gradient(90deg, #8b0000, #ff4c4c);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 76, 76, 0.6);
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {
    0% {
        box-shadow: 0 0 10px rgba(255, 76, 76, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 76, 76, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 76, 76, 0.4);
    }
}

.scarcity-label {
    color: #ff4c4c;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 76, 76, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scarcity-wrapper {
    margin-bottom: 60px;
    text-align: center;
    padding: 30px;
    background-color: #111111;
    border: 1px solid #ff4c4c;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 76, 76, 0.1);
}

.phase-genesis {
    border-color: #d4af37 !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6) !important;
    animation: pulse-genesis 2s infinite;
}

@keyframes pulse-genesis {
    0% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.9);
    }

    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
}

.phase-locked {
    opacity: 0.5;
    border-color: #222 !important;
    background-color: #050505 !important;
}

.lock-icon {
    display: block;
    margin-bottom: 15px;
    color: #555555;
}

.roadmap-warning {
    margin: 50px auto 0;
    max-width: 800px;
    color: #ff4c4c;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 76, 76, 0.6);
    padding: 25px;
    border: 1px solid #ff4c4c;
    border-radius: 8px;
    background: rgba(255, 76, 76, 0.05);
}

/* =========================================
   Login/Auth Specific Styles
   Used in: login.html, registro.html
   ========================================= */
body.auth-body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.forgot-password {
    display: block;
    margin-top: 15px;
    font-size: 0.85em;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #111111;
    color: #ffffff;
    border-left: 4px solid #d4af37;
    padding: 15px 25px;
    font-size: 1em;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Global Loading Overlay for Auth Redirects */
.global-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.global-loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.auth-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.global-loading-text {
    color: #d4af37;
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    animation: pulseText 1.5s infinite alternate;
}

@keyframes pulseText {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #111111;
    border: 1px solid #d4af37;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.modal-header {
    font-size: 1.5em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.modal-body {
    overflow-y: auto;
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 15px;
    text-align: left;
}

.modal-body h3 {
    color: #d4af37;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Scrollbar custom for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #111;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.btn-deny {
    padding: 12px 25px;
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-deny:hover {
    border-color: #ff4c4c;
    color: #ff4c4c;
}

.btn-accept {
    padding: 12px 25px;
    background-color: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-accept:hover {
    background-color: #f5d76e;
}

.btn-accept:disabled {
    background-color: #333;
    color: #666;
    cursor: not-allowed;
}

/* Boveda Specific Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.boveda-container {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

.boveda-container h1 {
    font-size: 3em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #ffffff;
    display: none;
}

.boveda-desc {
    color: #aaaaaa;
    font-size: 1.1em;
    margin-bottom: 40px;
    display: none;
}

.carousel-wrapper {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.carousel-inner {
    width: 300px;
    height: 640px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.egg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    pointer-events: none;
}

.egg-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.egg-img {
    width: 150px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0px 15px 15px rgba(212, 175, 55, 0.2));
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.egg-img:hover {
    transform: translateY(-10px);
}

.egg-name {
    font-size: 1.8em;
    font-weight: bold;
    color: #d4af37;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.egg-price {
    font-size: 1.2em;
    color: #cccccc;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.btn-buy {
    background-color: #d4af37;
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: serif;
    letter-spacing: 1px;
}

.btn-buy:hover {
    background-color: #f8cf46;
    transform: scale(1.05);
}

.btn-buy:active {
    transform: scale(0.95);
}

.nav-arrow {
    background: none;
    border: none;
    color: #555555;
    font-size: 3em;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0 20px;
}

.nav-arrow:hover {
    color: #d4af37;
    transform: scale(1.2);
}

.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #333333;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #d4af37;
}

@media (max-width: 768px) {
    .carousel-inner {
        width: 250px;
    }

    .egg-img {
        width: 150px;
        height: 200px;
    }

    .boveda-container h1 {
        font-size: 2.2em;
    }

    .boveda-container {
        padding: 20px;
    }
}

.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-modal.show {
    display: flex;
    opacity: 1;
}

.checkout-content {
    background-color: #111111;
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.checkout-content::-webkit-scrollbar {
    width: 6px;
}

.checkout-content::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.5);
    border-radius: 10px;
}

.checkout-content::-webkit-scrollbar-thumb {
    background: #555555;
    border-radius: 10px;
}

.checkout-content::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

.checkout-modal.show .checkout-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #aaaaaa;
    font-size: 2em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #d4af37;
}

.checkout-egg-img {
    width: 120px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0px 10px 10px rgba(212, 175, 55, 0.2));
    margin-bottom: 20px;
}

.checkout-egg-name {
    font-size: 1.5em;
    color: #d4af37;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.checkout-price {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

#paypal-button-container {
    margin-top: 20px;
    min-height: 150px;
}

@keyframes latido-vida {

    0%,
    100% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.05) rotate(3deg);
    }

    10% {
        transform: scale(1) rotate(-3deg);
    }

    15% {
        transform: scale(1.02) rotate(1deg);
    }

    20% {
        transform: scale(1);
    }
}

.egg-alive {
    animation: latido-vida 4s infinite ease-in-out;
}

.loading-dots::after {
    content: '';
    animation: animacion-puntos 1.5s steps(4, end) infinite;
}

@keyframes animacion-puntos {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

@keyframes pulso-texto {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.incubating-text {
    animation: pulso-texto 1.5s infinite;
}

.empty-slot {
    width: 150px;
    height: 180px;
    border: 2px dashed #333333;
    border-radius: 15px;
    background-color: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
}

.empty-slot-text {
    color: #ff4c4c;
    font-weight: bold;
    font-size: 1.5em;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(-10deg);
    border: 2px solid #ff4c4c;
    padding: 8px 15px;
    background: rgba(255, 76, 76, 0.05);
    box-shadow: 0 0 15px rgba(255, 76, 76, 0.2);
}

.btn-sold-out {
    background-color: #222222 !important;
    color: #555555 !important;
    border: 1px solid #333333 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    transform: none !important;
    box-shadow: none !important;
}

.stock-wrapper {
    margin: 15px 0 10px 0;
    padding: 0 5px;
}

.stock-container {
    width: 100%;
    height: 8px;
    background-color: #222222;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #333333;
}

.stock-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #ff4c4c);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.5);
}

.stock-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #aaaaaa;
    margin-top: 5px;
    font-family: monospace;
    letter-spacing: 1px;
}

.btn-locked {
    background-color: #333333 !important;
    color: #777777 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
    border: 1px solid #444 !important;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #333;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85em;
    color: #888;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    fill: #d4af37;
}

.promo-banner {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-banner-text {
    color: #d4af37;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-icons {
    display: flex;
    gap: 10px;
    opacity: 0.7;
}

.promo-icons svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.boveda-faq-section {
    margin-top: 60px;
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.faq-title {
    color: #d4af37;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #555;
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-size: 1.1em;
}

.faq-question:after {
    content: '+';
    color: #d4af37;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: #aaa;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px 20px;
    max-height: 300px;
}