@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --bg: #0e0f13;
  --dark: #0e0f13;
  --red: linear-gradient(to right, #2967ec, #5ea3fa);
  --white: #fff;
  --gray: #494c55;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid #242631;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

nav i {
  font-size: 17px;
}

nav a:hover {
   background: rgb(57 133 230 / 20%);
  color: #2967ec;
}

nav a.active {
    background: rgb(57 133 230 / 20%);
    color: #fff;
}

nav a:hover i{
  color: #2967ec;
}
nav a.active i {
  color: white;
}

.Login_Button{
  margin-left: 45%;
}
.DownloadButton{
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #2967ec;
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.search {
  position: relative;
  background-color: #242631;
  padding: 2px 10px;
  border-radius: 10px;
  border: 1px solid #424450;
  transition: border 0.3s, background-color 0.3s;
}

.search i {
  color: var(--gray);
  transition: color 0.3s;
}

.search input {
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: #242631;
  color: var(--white);
  font-size: 14px;
  transition: color 0.3s, background-color 0.3s;
}

.search .search-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.search ::placeholder{
  color: #636363;
  font-size: 12px;
}
.search:hover {
  border: 1px solid 2967ec;
}

.search:hover input {
  color: var(--white);
}

.search:hover i {
  color: var(--white);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: #1a1b23;
  border: 1px solid #424450;
  border-radius: 8px;
  padding: 10px 0;
  color: var(--white);
  font-size: 14px;
  display: none;
  z-index: 10;
}

.search-results.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-item {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid #212229;
  transition: background 0.2s;
}
.search-item_hover{
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--gray);
  font-size: 12px;
  transition: background 0.2s;
}
.search-item:last-child {
  border-bottom: none;
}


.search-item:hover {
  background: #2c2e3a;
}

.search-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-item-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
}

.search-item-type {
  font-size: 11px;
  color: var(--gray);
  font-weight: normal;
  margin-left: 10px;
}

.search-item-description {
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}


/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-border {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin-bottom: 20px;
  background-color: #31323d;
  margin-top: -25px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
  padding: 2rem;

}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}


.highlight {
  color: #2967ec;
}

.hero-content p {
  color: var(--gray);
  font-size: 14px;
  width: 540px;
}

.hero-image {
  position: relative;
  z-index: 1;
  max-width: 50%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.tab {
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: var(--dark);
  color: var(--gray);
  font-weight: 500;
  font-size: 14px;
}

.tab.active {
  background: var(--red);
  color: var(--white);
}

/* PayPal Banner */
.paypal-banner {
  background: #191a1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  height: 90px;
}

.paypal-banner .text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.paypal-banner .text  img{
  width: 60px;
  border-radius: 10px;
}
.paypal-banner .text strong{
  font-size: 14px;
}
.paypal-banner .text p{
  font-size: 12px;
}
.btn {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
  grid-auto-flow: dense;
}

.product {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.product img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #2967ec;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
}

.product:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: var(--white);
}

.overlay-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.overlay-text p {
  font-size: 0.9rem;
  margin: 1px 0 0 0;
  color: #636363;
}

.product.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
  text-align: center;
}

.why-choose .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-choose p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background-color: #1c1d24;
  padding: 2rem 1rem;
  border-radius: 12px;
  transition: background 0.3s;
}

.feature:hover {
  background-color: #22232b;
}

.feature i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Footer Section */
.site-footer {
  background-color: #101114;
  padding: 4rem 0 2rem 0;
  color: var(--white);
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-about img{
 width: 250px;
}
.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.payment-icons i {
  color: var(--gray);
  transition: color 0.3s;
}

.payment-icons i:hover {
  color: var(--red);
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 4rem;
  flex: 1 1 400px;
  flex-wrap: wrap;
}

.link-group h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}
.link-group ul a {
  text-decoration: none;

}
.link-group ul a :hover {
 color:white;

}
.link-group ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.guides-section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.guides-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.guide-tab {
  background: #1a1b23;
  border: none;
  color: var(--gray);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.guide-tab.active {
  background: var(--red);
  color: var(--white);
}

.guide-tab:hover {
  background: var(--red);
  color: var(--white);
}

.guides-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.guide-category {
  display: none;
  flex-direction: column;
  gap: 2rem;
}

.guide-category.active {
  display: flex;
}

.guide-card {
  background: #1a1b23;
  padding: 2rem;
  border-radius: 12px;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guide-header i {
  font-size: 24px;
  color: var(--red);
}

.guide-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.guide-card ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 1rem;
}

.guide-card ul li {
  margin-bottom: 0.8rem;
  color: var(--gray);
  font-size: 14px;
  position: relative;
}

.guide-card ul li::before {
  content: '•'; /* Cambia \\2022 por un simple punto */
  color: var(--red);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}


.guide-note {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--gray);
}


.status-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legend-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.legend {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
}

.legend.green { background: #2ecc7023; }
.legend.yellow { background: #ffcc0123; }
.legend.orange { background: #fc780423; }
.legend.blue { background: #3498db23; }
.legend.red { background: #ff1a0128; }

.filter-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-tab {
  background: #1a1b23;
  border: none;
  color: var(--gray);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.filter-tab.active {
  background: var(--red);
  color: white;
}

.category {
  margin-top: 2rem;
}

.category h2 {
  font-size: 18px;
  color: var(--red);
  margin-bottom: 1rem;
}

.status-item {
  background: #1a1b23;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.status-left {
  display: flex;
  flex-direction: column;
}

.status-left strong {
  font-size: 1rem;
}

.status-left span {
  font-size: 13px;
  color: var(--gray);
}

.release {
  color: var(--red);
  font-weight: bold;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.status-page{
  margin-bottom: 50px;
}
.badge {
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 10px;
  background: #2ecc7023;
  color: rgba(0, 255, 149, 0.541);
}
.badge.green { background: #2ecc7023;  color: rgba(0, 255, 149, 0.541);}
.badge.yellow { background: #ffcc0123; color: rgba(255, 251, 0, 0.541);}
.badge.orange { background: #fc780423; color: rgba(255, 115, 0, 0.541);}
.badge.blue { background: #3498db23; color: rgba(0, 140, 255, 0.541);}
.badge.red { background: #ff1a0128; color: rgba(255, 8, 0, 0.541);} 

.purchase {
  background: var(--red);
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: white;
  font-weight: 500;
  transition: background 0.3s;
}

.purchase:hover {
  background: #7e6dbb;
}

.reseller-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding-top: 4rem;
}

.reseller-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.reseller-icon {
  background: #393de62c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.reseller-content h1 {
  font-size: 2rem;
  font-weight: 700;
}

.reseller-content p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 400px;
}

.checkout-page {
  padding: 3rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  color: var(--white);
}

.checkout-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.checkout-image {
  flex: 1 1 400px;
  padding: 0.5rem;
  border-radius: 12px;
}

.checkout-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.checkout-thumbnail img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-details {
  flex: 1 1 400px;
}

.checkout-details h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.checkout-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 12px;
  background: #242631;
  color: var(--white);
}

.tag.red {
  background: #1d212b;
}

.tag.green {
  background: #2ecc71;
}

.checkout-details h2 {
  font-size: 1.6rem;
  margin: 1rem 0;
}

.checkout-options h3 {
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1rem;
}

.duration-buttons {
  display: flex;
      gap: 0.5rem;
      width: 100%;
      justify-content: space-between;
}

.duration {
  padding: 0.7rem 1rem;
  background: #1c1d24;
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.duration.active {
  background: var(--red);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-control input {
  width: 50px;
  text-align: center;
  border: none;
  background: #1c1d24;
  color: var(--white);
  border-radius: 6px;
  font-size: 1rem;
  height: 30px;
}

.quantity-btn {
  background: #1c1d24;
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.buy-now-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* Eliminar flechas en inputs type="number" */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.product-info {
  margin-top: 60px;
  text-align: center;
}

.info-button {
  background: #2967ec;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background 0.3s;
}

.info-button:hover {
  background: #856ccd;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.info-card {
  background: #1c1d24;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: background 0.3s;
}

.info-card:hover {
  background: #24262f;
}

.info-card h3 {
  color: #2967ec;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  position: relative;
  padding-left: 18px;
  color: #b0b3b8;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s;
}

.info-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #2967ec;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.info-card ul li:hover::before {
  transform: scale(1.4);
  background: #ff4d4f;
}

.info-card ul li:hover {
  color: #ffffff;
}

.error-code {
  font-size: 120px;
  color: var(--red);
  font-weight: 700;
  position: relative;
  margin-bottom: -75px;
}

.error-code::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
}
.reseller-icon404{
  background: #5539e62c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex
;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
  margin-bottom: -2rem;
}
.error-text {
  font-size: 32px;
  margin-top: 20px;
  color: var(--red);
  margin-bottom: -35px;
}

.error-subtext {
  color: #bbb;
  margin-top: 10px;
  font-size: 16px;
}

.back-btn {
  margin-top: 30px;
  background-color: #6539e6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-btn:hover {
  background-color: #7765df;
}

.back-btn i {
  font-size: 18px;
}

.account-section {
  padding: 100px 0;
  min-height: 70vh;
}

.account-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.account-content h1 {
  font-size: 32px;
  margin-bottom: -10px;
  color: var(--red);
}

.account-content p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.login-panel input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: 1px solid transparent; /* evita el borde blanco inicial */
  outline: none;
  border-radius: 8px;
  background: #242631;
  color: #eee;
  font-size: 14px;
  transition: border 0.2s ease;
  margin-bottom: 10px;
}

.login-panel input[type="email"]:hover,
.login-panel input[type="email"]:focus {
  border: 1px solid var(--red);
}

.login-panel input[type="email"]::placeholder {
  color: #636363;
  font-size: 12px;
}


.formCreate input[type="email"],
.formCreate input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 8px;
  background: #242631;
  color: #eee;
  font-size: 14px;
  transition: border 0.2s ease;
  margin-bottom: 10px;
}

.formCreate input[type="email"]:hover,
.formCreate input[type="email"]:focus,
.formCreate input[type="text"]:hover,
.formCreate input[type="text"]:focus {
  border: 1px solid var(--red);
}

.formCreate input[type="email"]::placeholder,
.formCreate input[type="text"]::placeholder {
  color: #636363;
  font-size: 12px;
}

.button-admin{
  padding: 10px 10px;
  border-radius: 10px;
  color: white;
  background: #242631;
  border: 1px solid #434657;
  font-size: 13px;
}

.login-panel input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: 1px solid transparent; /* evita el borde blanco inicial */
  outline: none;
  border-radius: 8px;
  background: #242631;
  color: #eee;
  font-size: 14px;
  transition: border 0.2s ease;
  margin-bottom: 10px;
}

.login-panel input[type="text"]:hover,
.login-panel input[type="text"]:focus {
  border: 1px solid var(--red);
}

.login-panel input[type="text"]::placeholder {
  color: #636363;
  font-size: 12px;
}
.login-panel input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: 1px solid transparent; /* evita el borde blanco inicial */
  outline: none;
  border-radius: 8px;
  background: #242631;
  color: #eee;
  font-size: 14px;
  transition: border 0.2s ease;
  margin-bottom: 10px;
}

.login-panel input[type="password"]:hover,
.login-panel input[type="password"]:focus {
  border: 1px solid var(--red);
}

.login-panel input[type="password"]::placeholder {
  color: #636363;
  font-size: 12px;
}
.login-panel input[type="checkbox"] {
  transform: scale(1.2);
}

.login-panel label {
  font-size: 12px;
  color: #636363;
}

.buy-now-btn2 {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--red);
  color: white;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
}
.buy-now-btn3 {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--red);
  color: white;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
}
.buy-now-btn3:hover {
  background-color: #594993;
}

.buy-now-btn2:hover {
  background-color: #594993;
}

#licenseInfo p {
  text-align: left;
  margin-bottom: 10px;
  color: #ddd;
}

.panel-details {
  padding: 30px;
  border-radius: 12px;
}

.dashboard-section {
  padding: 100px 0;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-size: 20px;
  color: white;
}
.dashboard-header h1 span {
  font-size: 20px;
  color: var(--red);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.dashboard-card {
  background: #242631;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.dashboard-card i {
  font-size: 32px;
  color: #2967ec;
  margin-bottom: 10px;
}

.dashboard-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #fff;
}

.dashboard-card p {
  font-size: 14px;
  color: #ccc;
}
.tos-section {
  margin-top: 40px;
  background: #242631;
  padding: 40px;
  border-radius: 12px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tos-section h2 {
  margin-top: 30px;
  color: #6539e6;
  font-size: 20px;
}

.swal2-popup {
  border-radius: 14px !important;
  box-shadow: 0 0 25px rgb(255 230 0 / 8%) !important;
}

.modern-input {
  background: rgb(58 58 77) !important;
  color: #eee !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  font-size: 14px;
  padding: 10px 14px !important;
}

.modern-btn {
  background: #6539e6 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-weight: bold;
}

.modern-btn-cancel {
  background: #3e414f  !important;
  color: #ccc !important;
  border-radius: 10px !important;
  font-weight: normal;
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }
  .Login_Button{
    margin-left: 0px;
  }
  .dashboard-header{
  flex-direction: column;
  }
  .dashboard-header h1{
    font-size: 12px;
    }
    .dashboard-header h1 span {
      font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .hero-content, .hero-image {
    max-width: 100%;
  }

  .hero-content p {
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .products {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: column;
  }
  .search-mobile {
    display: none;
  }
  .updates{
  display: flex;
  flex-direction: column;
  }
  .Login_Button{
    margin-left: 0px;
  }
  .dashboard-header{
    flex-direction: column;
  }
  .dashboard-header h1{
      font-size: 12px;
      }
      .dashboard-header h1 span {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
  .features, .products {
    grid-template-columns: 1fr;
  }
  .search-mobile {
    display: none;
  }
  .updates{
    display: flex;
    flex-direction: column;
    }
    .Login_Button{
      margin-left: 0px;
    }
    .dashboard-header{
      flex-direction: column;
      }

      .dashboard-header h1{
        font-size: 12px;
        }
        .dashboard-header h1 span {
          font-size: 15px;
      }
}

#navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu-toggle {
  display: none;
}

#navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1a1b23;
    color: var(--white);
    font-size: 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    z-index: 1002;
  }

  .menu-toggle:hover {
    background: #2967ec;
    color: var(--white);
  }

  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1b23;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  #navbar.active {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.5rem;
  }

  .search-mobile {
    display: flex;
    margin-top: 1rem;
    width: 80%;
    display: none;
  }

  .search-mobile input {
    width: 100%;
  }
  .updates{
    display: flex;
    flex-direction: column;
    }

    .Login_Button{
      margin-left: 0px;
    }
    .dashboard-header{
      flex-direction: column;
      }
      .dashboard-header h1{
        font-size: 12px;
        }
        .dashboard-header h1 span {
          font-size: 15px;
      }
}


