* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  /* Tema claro */
  --bg-color: #9b9595;
  --text-color: #111;
  --card-bg: #ffffff;
  --btn-bg: #ff6969;
  --btn-text: #111;
}

body.dark {
  /* Tema oscuro */
  --bg-color: #121212;
  --text-color: #f1f1f1;
  --card-bg: #1e1e1e;
  --btn-bg: #ff6969;
  --btn-text: #fff;
}
    

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color .25s ease, color .25s ease;
}


.pink {
    color: rgb(255, 105, 105);
}

.white {
    color: #fff;
}

.pink_text {
    color: rgb(255, 105, 105);
}

nav {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .logo_text {
    text-align: left;
    margin-left: 0;
  }

  header, 
  .header, 
  .navbar, 
  .container {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 32px;
    width: 32px;
}

.logo_text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.nav_links {
    display: flex;
    gap: 2rem;
}

.nav_links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav_links a:hover,
.nav_links a.active {
    color: rgb(255, 105, 105);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
    max-width: 600px;
    min-height: 1.5em;
}


.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgb(255, 105, 105);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background: rgb(255, 130, 105);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.content_container {
    flex: 1;
    padding: 4rem 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.page_header {
    margin-bottom: 3rem;
}

.page_header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page_subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.software_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.software_card_modern {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.05), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.software_card_modern:hover {
    transform: translateY(-8px);
    border-color: rgb(255, 105, 180);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.card_header {
    background: rgba(255, 105, 180, 0.1);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.card_header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.slot_badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.slot_number {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(255, 105, 180);
    line-height: 1;
}

.slot_text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card_body {
    padding: 2rem;
}

.info_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info_label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.info_value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.requirements_section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements_section h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.req_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.req_list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.req_list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgb(255, 105, 180);
    font-weight: 700;
}

.progress_section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress_bar_modern {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress_fill_modern {
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 105, 180), rgb(255, 140, 200));
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    transition: width 0.5s ease;
}

.capacity_text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.status_legend_box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.status_legend_box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.legend_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.legend_card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legend_dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse_dot 2s ease-in-out infinite;
}

.legend_text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legend_name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.legend_desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.services_box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.services_box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.services_grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service_card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(8px);
}

.service_left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.service_dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse_dot 2s ease-in-out infinite;
}

.service_name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
}

.service_status_badge {
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dot_green {
    background: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.badge_green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dot_yellow {
    background: #eab308;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.badge_yellow {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.dot_red {
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.badge_red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dot_blue {
    background: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.badge_blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

@keyframes pulse_dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

footer {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content_container {
        padding: 2rem 1.5rem;
    }

    .page_header h1 {
        font-size: 2rem;
    }

    .software_grid {
        grid-template-columns: 1fr;
    }

    .info_section {
        grid-template-columns: 1fr;
    }

    .legend_grid {
        grid-template-columns: 1fr;
    }
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.info_banner_top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    margin: 1.5rem 0 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.info_banner_top svg {
    width: 18px;
    height: 18px;
    color: #ff8269;
    flex-shrink: 0;
}

.software_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.software_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
}

.software_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    color: #ff8269;
}

.software_icon svg {
    width: 100%;
    height: 100%;
}

.software_name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.software_status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.software_status.online {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.software_status.development {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.software_status.updating {
    background: rgba(251, 191, 36, 0.1); 
    color: #fbbf24;
}

.status_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: pulse_animation 2s ease-in-out infinite;
}

.software_status.online .status_dot {
    background: #00ff88;
}

.software_status.development .status_dot {
    background: #3b82f6;
}

.software_status.updating .status_dot {
    background: #fbbf24;
}

@keyframes pulse_animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pricing_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.price_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
}

.price_label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.price_amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff8269;
}

.slots_section {
    margin: 1.2rem 0;
}

.slots_bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.slots_fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8269, #8a3939);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.slots_info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.requirements {
    margin: 1.2rem 0;
}

.req_title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.req_list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.req_item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.req_item svg {
    width: 16px;
    height: 16px;
    color: #00ff88;
}

.software_btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #ff8269, #8a3939);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.software_btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 105, 105, 0.4);
}

.status_page_header {
    text-align: center;
    margin-bottom: 3rem;
}

.status_legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.legend_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend_dot.online {
    background: #00ff88;
}

.legend_dot.updating {
    background: #fbbf24;
}

.legend_dot.maintenance {
    background: #ef4444;
}

.legend_dot.development {
    background: #3b82f6;
}

.legend_dot.updating {
    background: #fbbf24;
}

.status_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.status_card_new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.status_card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status_icon {
    width: 50px;
    height: 50px;
    color: #ff8269;
}

.status_icon svg {
    width: 100%;
    height: 100%;
}

.status_info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.status_info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.status_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status_badge.online {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.status_badge.development {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status_badge.updating {
    background: rgba(251, 191, 36, 0.1); 
    color: #fbbf24;

}

.pulse_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse_animation 2s ease-in-out infinite;
}

.status_badge.online .pulse_dot {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status_badge.updating .pulse_dot {
    background: #fbbf24;
    box-shadow: 0 0 15px #fbbf24, 0 0 30px #fbbf24;
}


.status_badge.development .pulse_dot {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

@media (max-width: 768px) {
    .software_grid {
        grid-template-columns: 1fr;
    }
    
    .status_grid {
        grid-template-columns: 1fr;
    }
    
    .status_legend {
        gap: 1rem;
    }
}


.roulette_section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.roulette-wrapper {
    position: relative;
    width: 550px;
    height: 130px;
    overflow: hidden;
    border: 2px solid rgb(255, 105, 105);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(255, 105, 105, 0.3);
    margin-top: 2rem;
}

.roulette-strip {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 4s cubic-bezier(0.2, 0.85, 0.3, 1);
}

.item {
    width: 100px;
    height: 100px;
    margin: 0 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.item.key {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.indicator {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid rgb(255, 105, 105);
    z-index: 10;
}

.result {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Contenido */
.modal_content {
  background: #111;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  width: 300px;
  box-shadow: 0 0 20px rgba(255, 105, 105);
}

.modal_content h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.modal_content input {
  width: 100%;
  padding: 15px 15px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: none;
  background: #1a1a1a;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.modal_content input::placeholder {
  color: #aaa;
  opacity: 0.7;
  transition: color 0.25s ease;
}

.modal_content input:hover {
  background: #262626;
}

.modal_content input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 8px #ff6969;
  background: #1f1f1f;
}

.modal_content input:focus::placeholder {
  opacity: 0.5;
}

.modal_content input:not(:placeholder-shown) {
  background: #202020;
  border-color: #333;
}


.modal_content input:focus {
  border: 1px solid #FF6969;
}

.modalbtn {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgb(255, 105, 105);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.modalbtn:hover {
    background: rgb(255, 130, 105);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

/* ====== Botón de cambio de tema ====== */
.theme-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #1e1e1e;
  border-radius: 10px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.theme-toggle button {
  border: none;
  background: transparent;
  color: #cfcfcf;
  font-size: 1.1rem;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle button.active {
  background: #2b2b2b;
  color: #fff;
}

.theme-toggle svg {
  display: block;
  stroke: #bbb;
  transition: stroke 0.2s ease;
}

.theme-toggle button.active svg {
  stroke: #fff;
}
/* === Adaptación de color a tema === */
.software_card_modern,
.software_card,
.service_card,
.status_card_new,
.modal_content,
.status_legend_box,
.services_box,
.roulette-wrapper {
  background: var(--card-bg) !important;
  color: var(--text-color) !important;
}

.btn,
.modalbtn,
.software_btn {
  background: var(--btn-bg) !important;
  color: var(--btn-text) !important;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover,
.modalbtn:hover,
.software_btn:hover {
  background: var(--text-color) !important;
  color: var(--bg-color) !important;
}

/* ================================
   LIGHT MODE (solo colores)
   ================================ */

/* Fondo + texto global */
body:not(.dark){
  background:#f4f4f4;
  color:#111;
}

/* Navbar */
body:not(.dark) nav{
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

/* Logo y “welcome to prague.ltd” */
body:not(.dark) .pink{  /* "prague" */
  color:#ff6969;
}
body:not(.dark) .white{ /* ".ltd" -> negro */
  color:#111;
}

/* Links del menú */
body:not(.dark) .nav_links a{
  color:rgba(0,0,0,.70);
}
body:not(.dark) .nav_links a:hover,
body:not(.dark) .nav_links a.active{
  color:#ff6969;
}

/* Footer: solo texto negro (sin bloque oscuro) */
body:not(.dark) footer{
  background:transparent;
  color:#111;
  border-top:1px solid rgba(0,0,0,.10);
}
body:not(.dark) footer a{ color:#111; }
body:not(.dark) footer a:hover{ color:#ff6969; }

/* Texto animado del hero: negro en LIGHT */
body:not(.dark) .hero #typed,
body:not(.dark) .hero #typing,
body:not(.dark) .hero [id*="typed"],
body:not(.dark) .hero .typed,
body:not(.dark) .hero .typing,
body:not(.dark) .hero p,
body:not(.dark) .hero .white {
  color: #111 !important;
}

/* cursor de la animación (si existe) */
body:not(.dark) .typed-cursor {
  color: #111 !important;
  border-color: #111 !important;
}
/* =========================================
   Toggle rojo (igual al color principal)
   ========================================= */
.theme-toggle {
  background: #ff6969 !important;   /* fondo rojo */
  border: none !important;          /* sin borde */
}

.theme-toggle button {
  color: #fff !important;           /* íconos blancos */
}

.theme-toggle button.active {
  background: rgba(255,255,255,0.15); /* leve brillo para el activo */
  }
  /* ====== Iconos del toggle por tema (versión final) ====== */

/* ICONOS NEGROS en modo CLARO */
body:not(.dark) .theme-toggle button svg path,
body:not(.dark) .theme-toggle button svg circle,
body:not(.dark) .theme-toggle button svg line,
body:not(.dark) .theme-toggle button svg g {
  stroke: #111 !important;
  color: #111 !important;
  fill: none !important;
}

/* ICONOS BLANCOS en modo OSCURO */
body.dark .theme-toggle button svg path,
body.dark .theme-toggle button svg circle,
body.dark .theme-toggle button svg line,
body.dark .theme-toggle button svg g {
  stroke: #fff !important;
  color: #fff !important;
  fill: none !important;
}

/* === Nav layout y visibilidad de enlaces (fix “discord”) === */
nav{
  display:flex;
  align-items:center;
  justify-content:space-between; /* logo | links | (toggle está fixed, así que no ocupa) */
}

/* la lista de enlaces visible y en fila */
.nav_links{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:nowrap;
  overflow:visible;   /* que no recorte el último enlace */
}

/* asegurar que el último link no esté oculto por alguna regla previa */
.nav_links a{
  display:inline-block !important;
  visibility:visible !important;
  opacity:1 !important;
}
.nav_links a:last-child{
  display:inline-block !important;  /* fuerza “discord” visible */
}

/* el toggle va fijo; que no tape los enlaces */
.theme-toggle{
  position:fixed;
  top:12px;
  right:12px;
  z-index:1000;
  pointer-events:auto;
}

/* === NAVBAR FIX — alineación y espaciado === */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px; /* margen horizontal general */
  height: 60px;
}

/* Logo y links distribuidos en fila */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sección central con links */
.nav_links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 30px; /* deja espacio para el toggle */
}

/* Toggle a la derecha de todo */
.theme-toggle {
  position: relative;
  top: -2px; /* sube un poco el toggle */
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ff6969;
  border-radius: 8px;
  padding: 4px 6px;
}

/* Botones dentro del toggle */
.theme-toggle button {
  color: #fff;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

/* Active con leve fondo */
.theme-toggle button.active {
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

/* ================================
   STATUS PAGE — MODO CLARO
   ================================ */
body:not(.dark) .status_page_header h1,
body:not(.dark) .status_page_header span,
body:not(.dark) .status_legend span,
body:not(.dark) .status_card_new h3,
body:not(.dark) .status_card_new p,
body:not(.dark) .status_badge {
  color: #111 !important; /* texto negro */
}

/* Si tus puntos de color (dots) cambian de color, no toques eso */
body:not(.dark) .status_legend .legend_dot {
  filter: brightness(1); /* mantiene color original */
}

/* ================================
   STATUS PAGE — MODO CLARO (ajustado)
   ================================ */
body:not(.dark) .status_page_header h1 {
  color: #111 !important; /* "software" en negro */
}

body:not(.dark) .status_page_header .pink {
  color: #ff6969 !important; /* mantiene "status" en rojo */
}

/* Otros textos en negro */
body:not(.dark) .status_legend span,
body:not(.dark) .status_card_new h3,
body:not(.dark) .status_card_new p,
body:not(.dark) .status_badge {
  color: #111 !important;
}

/* Los puntos de color (legend_dot) siguen igual */
body:not(.dark) .status_legend .legend_dot {
  filter: brightness(1);
}

 /* =========================
   SOFTWARE PAGE — LIGHT MODE
   ========================= */

/* Texto base más nítido en claro */
body:not(.dark) {
  color:#111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* H1 “available software”: negro + acento rojo */
body:not(.dark) .page_header h1 { color:#111 !important; font-weight:800; }
body:not(.dark) .page_header .pink { color:#ff6969 !important; }

/* Banner superior */
body:not(.dark) .info_banner_top {
  background:#eaeaea !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.10) !important;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}

/* Cards contenedoras */
body:not(.dark) .software_card {
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.12) !important;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

/* Títulos / subtítulos dentro de card */
body:not(.dark) .software_name { color:#111 !important; font-weight:700; }
body:not(.dark) .req_title { color:#111 !important; font-weight:700; }
body:not(.dark) .req_item,
body:not(.dark) .req_list li { color:#111 !important; }

/* Icono de la card */
body:not(.dark) .software_icon svg { stroke:#ff8a7a !important; }

/* Badge de estado (online / in update) → texto negro sobre chip de color */
body:not(.dark) .software_status { color:#111 !important; }

/* Bloques de precio */
body:not(.dark) .pricing_section .price_card {
  background:#f6f6f7 !important;
  border:1px solid rgba(0,0,0,.10) !important;
  color:#111 !important;
}
body:not(.dark) .price_label { color:#111 !important; font-weight:600; }
body:not(.dark) .price_amount { color:#ff7a7a !important; font-weight:700; }

/* Botones */
body:not(.dark) .software_btn,
body:not(.dark) .btn,
body:not(.dark) .cta {
  background:#ff6969 !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,.10) !important;
}
body:not(.dark) .software_btn:hover,
body:not(.dark) .btn:hover,
body:not(.dark) .cta:hover { filter:brightness(.96); }

/* Separadores/columnas (si existen) */
body:not(.dark) .column_divider { border-color:rgba(0,0,0,.10) !important; }

/* Evita “adelgazamiento” por opacidades heredadas */
body:not(.dark) .software_card * { opacity:1 !important; }

/* Toggle: que los iconos sean negros en light (por si aún no los pintás por JS) */
body:not(.dark) .theme-toggle svg,
body:not(.dark) .theme-toggle svg * { stroke:#111 !important; color:#111 !important; }


/* =========================
   TIPOGRAFÍA CONSISTENTE EN AMBOS MODOS
   ========================= */

/* Mejora legibilidad general */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 500; /* base un poco más fuerte */
}

/* Encabezados principales */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800 !important; /* mismo en claro/oscuro */
  letter-spacing: -0.02em;
}

/* Títulos internos de cards y labels */
.software_name,
.req_title,
.price_label {
  font-weight: 700 !important;
}

/* Valores (precio, estado, etc.) */
.price_amount,
.software_status {
  font-weight: 700 !important;
}

/* Texto pequeño pero nítido */
.req_item,
.req_list li,
.nav_links a,
footer p {
  font-weight: 500 !important;
}

/* Evita que el cambio de tema altere el grosor visual */
body.dark,
body:not(.dark) {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Y un poco más de contraste en el dark */
body.dark {
  color: #f5f5f5;
}
body.dark .software_card {
  color: #f5f5f5 !important;
}

/* ==== Roulette: “borde” por casillero en LIGHT sin romper layout ==== */

/* Usa el ID real (#rouletteStrip) y la clase (.roulette-strip) por las dudas */
body:not(.dark) #rouletteStrip .item,
body:not(.dark) .roulette-strip .item {
  /* “borde” sin cambiar tamaño ni la animación */
  box-shadow: inset 0 0 0 2px #3a3a3a41 !important; /* borde interno tipo 2px negro */
  border-radius: 8px;
  background: #fff;              /* ayuda a que se note el borde sobre fondo claro */
}



/* ===== Currency Switcher ===== */
.currency-switcher {
  position: relative;
  margin-left: 12px;
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  background: var(--curr-bg);
  color: var(--curr-fg);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--curr-border);
  background: var(--curr-bg);
  box-shadow: 0 8px 22px rgba(0,0,0,.15);
  z-index: 30;
}

.currency-menu button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--curr-fg);
  font-weight: 600;
}
.currency-menu button:hover {
  background: var(--curr-hover);
}

/* Light */
body:not(.dark) {
  --curr-bg: #ffffff;
  --curr-fg: #111;
  --curr-border: rgba(0,0,0,.12);
  --curr-hover: #f4f4f6;
}

/* Dark */
body.dark {
  --curr-bg: #1c1c1c;
  --curr-fg: #f5f5f5;
  --curr-border: rgba(255,255,255,.14);
  --curr-hover: #262626;
}

/* Si el switcher vive dentro de nav con layout flex, empujalo a la derecha: */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo a izq, links y toggles a der */
  gap: 16px;
}
.nav_links { gap: 24px; display: flex; align-items: center; }

/* Pequeño ajuste visual para que el switcher esté alineado con el theme toggle */
.theme-toggle { margin-left: 10px; }

body:not(.dark) {
  --accent-pink: #ff6969;
}
body.dark {
  --accent-pink: #ff8080; /* un rosa más suave si querés */
}

.currency-btn svg {
  color: var(--accent-pink);
}

/* ====== Modal Discord: inputs ====== */

/* Modo CLARO */
body:not(.dark) .modal_content {
  background: #ffffff;
  color: #111;
}
body:not(.dark) .modal_content h2 {
  color: #111;
}
body:not(.dark) .modal_content input {
  background: #f3f3f4;
  color: #111;                /* texto que escribís */
  border: 1px solid rgba(0,0,0,.15);
}
body:not(.dark) .modal_content input::placeholder {
  color: #6b6b6b;             /* placeholder visible en claro */
  opacity: 1;
}
/* soporte extra por si algún navegador lo pide */
body:not(.dark) .modal_content input::-webkit-input-placeholder { color:#6b6b6b; }
body:not(.dark) .modal_content input:-ms-input-placeholder { color:#6b6b6b; }

/* Modo OSCURO (por coherencia) */
body.dark .modal_content input {
  background: #1f1f1f;
  color: #fff;
  border: 1px solid #2a2a2a;
}
body.dark .modal_content input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}
