@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #121c14;
    color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000c05;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.invite-btn:hover {
    color: #00ff88;
}

.invite-btn {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
}

.header, .features, .team, .cta {
    padding: 60px 20px;
    text-align: center;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.header h1 span {
    color: #00ff88;
}

.btn-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Botón principal */
.btn.primary {
    background: linear-gradient(135deg, #00ff88, #00e676);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #00e676, #00ff88);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* Botón secundario */
.btn.secondary {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.btn.secondary:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.primary {
    background-color: #00ff88;
    color: #000;
}

.secondary {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
}

.features .cards, .team .team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.card, .team-member {
    background: #08100a;
    padding: 25px;
    border-radius: 10px;
    width: 250px;
    transition: box-shadow 0.3s;
}

.card:hover, .team-member:hover {
    box-shadow: 0 0 10px #00ff88;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.contact {
    margin-top: 15px;
    display: inline-block;
    background-color: #00ff88;
    color: #000;
}

footer {
    padding: 15px;
    background-color: #000c05;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
}

span {
    color: #00ff88;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #00ff88;
    background: transparent;
    color: #00ff88;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1em;
}

.tab-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.tab-btn.active {
    background: #00ff88;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.tab-btn.active:hover {
    background: #00ff88;
    color: #000;
}

/* Tab content */
.tab-content {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

.tab-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.tab-content table tr {
    background: rgba(8, 16, 10, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tab-content table tr:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.tab-content table td:first-child {
    font-family: monospace;
    color: #00ff88;
    padding: 12px 20px;
    width: 35%;
}

.tab-content table td:last-child {
    padding: 12px 20px;
    color: #eee;
}

.commands h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commands .highlight {
    color: #00ff88;
}

.commands .sub-text {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing {
    padding: 60px 20px;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.pricing .sub-text {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.pricing-card {
    background: #08100a;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.pricing-card .badge {
    background: #00ff88;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: -15px;
}

.pricing-card h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.pricing-card .price {
    font-size: 1.5em;
    color: #00ff88;
    margin: 10px 0;
}

.pricing-card .price span {
    font-size: 2em;
    font-weight: bold;
}

.pricing-card .description {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: black;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00ff88;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

#currencyLabel {
    font-size: 0.95em;
    color: #cccccc;
}

.bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0c1610;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    border: 2px solid #00ff88;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 280px;
    font-size: 0.9em;
    line-height: 1.4;
    z-index: 9999;
    animation: fadeIn 0.5s ease forwards;
}

.bubble .emoji {
    font-size: 1.5em;
}

.bubble .close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    margin-left: auto;
    margin-top: 2px;
    transition: color 0.2s;
}

.bubble .close-btn:hover {
    color: #ff4c4c;
}

.bubble a {
    color: #00ff88;
    font-weight: 600;
    text-decoration: none;
}

.bubble a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #121c14;
  margin: auto;
  padding: 30px;
  border: 2px solid #00ff88;
  width: 90%;
  max-width: 600px;
  color: #fff;
  border-radius: 10px;
  line-height: 1.6;
}

.modal-content a {
  color: #00ff88;
}

.close-btn {
  color: #00ff88;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #fff;
}




