:root {
  --primary-color: #0073e6;
  --dark-bg: #0e1117;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.87);
  --border-color: #2a2f3a;
  --font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  --tools-bg: #fafafa;
  --card-bg: #ffffff;
  --card-border: #e0e0e0;
  --text-dark: #333333;
  --text-gray: #666666;
  --badge-best: #00a65a;
  --badge-new: #dc3545;
  --badge-editors: #007bff;
  --badge-top: #9c27b0;
  --badge-trending: #ff9800;
  --feature-color: #00a65a;
  --footer-bg: #0e1117;
  --footer-text: #a0a0a0;
  --footer-link: #d0d0d0;
  --footer-border: #2a2f3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mobile{
  display: none;
}
body {
  font-family: var(--font-family);
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-secondary);
  background-color: black;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}

.logo img {
  height: 24px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary-color);
}

.dropdown i {
  font-size: 0.7rem;
  margin-left: 5px;
}

.login-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  padding: 2.5rem 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button i {
  color: var(--primary-color);
  font-size: 2rem;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.h1-t {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}.

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: var(--primary-color);
  color: white;
  justify-content: center;
}

.primary-btn:hover {
  background-color: #0062c4;
}

.video-btn {
  background-color: white;
  color: #333;
  border: 1px solid #e0e0e0;
  justify-content: center;
}

.video-btn i {
  margin-right: 8px;
  color: var(--primary-color);
}

.video-btn:hover {
  background-color: #f5f5f5;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat h3 {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.stat p {
  font-size: 0.9rem;
  margin: 0;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
  display: flex;
  align-items: baseline;
}

/* AI Tools Section */
.ai-tools {
  background-color: var(--tools-bg);
  padding: 2.5rem 0;
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
     
}

.section-header p {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-card {
  display: flex;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  top: -9px;
  left: -11px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.tool-content {
  flex: 1;
  padding: 1.5rem;
  position: relative;
  display: flex;
}

.tool-logo {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 500px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #00000073;
}

.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-info {
  flex: 1;
}

.tool-badges {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 8px;
  /* margin-bottom: 10px; */
  align-content: center;
}

.tool-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  /* margin-top: 10px; */
  margin-bottom: 10px;
  margin-right: 10px;
}

.best-seller {
  background-color: var(--badge-best);
}

.new {
  background-color: var(--badge-new);
}

.editors-choice {
  background-color: var(--badge-editors);
}

.top-2025 {
  background-color: var(--badge-top);
}

.begginer {
  background-color: #34bf8d;
}

.trending {
  background-color: var(--badge-trending);
}

.tool-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.review-count {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-gray);
  margin-left: 10px;
}

.tool-strategy {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-style: italic;
}

.tool-details {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.25rem;
}

.detail {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
}

.label {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.tool-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature i {
  color: var(--feature-color);
  margin-right: 8px;
  font-size: 1.1rem;
}

.tool-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #f5f7fa;
  min-width: 300px;
  border-left: 1px solid var(--card-border);
}

.rating-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rating-circle span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.rating-circle::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  /* border: 5px solid #e0e0e0; */
}

.rating-circle::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  /* border: 5px solid var(--primary-color); */
  clip-path: polygon(50% 50%, 100% 0%, 100% 50%);
  transform: rotate(var(--rotation));
}

.rating-stats {
  text-align: center;
  margin-bottom: 1rem;
}

.rating-stats p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.rating-stats .value {
  font-weight: 600;
  color: var(--text-dark);
}

.tool-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.tool-btn:hover {
  background-color: #0062c4;
}

/* Footer Styles */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--footer-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--footer-border);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--footer-link);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.copyright {
  text-align: center;
}

.copyright p {
  margin-bottom: 1rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  .h1-t {
    font-size: 2.5rem;
  }
  
  .hero-text, .hero-image {
    width: 100%;
  }
  
  .tool-details {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    gap: 3rem;
  }
  
  .footer-column {
    flex-basis: calc(50% - 3rem);
  }
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }
  .mobilerating{
    display: flex;
    gap: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  .h1-t {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    margin-top: 15px;
  }
  
  .hero-stats {
    /* flex-direction: column; */
    gap: 1.2rem;
    text-align-last: center;
    justify-content: center;
  }
  
  .tool-card {
    flex-direction: column;
  }
  
  .tool-content {
    flex-direction: column;
  }
  
  .tool-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .tool-rating {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-left: none;
    border-top: 1px solid var(--card-border);
    padding: 1.25rem;
  }
  
  .rating-circle {
    margin-bottom: 0;
    margin-right: 15px;
    width: 70px;
    height: 70px;
  }
  
  .rating-stats {
    margin-bottom: 0;
    margin-right: 15px;
    text-align: left;
    flex: 1;
  }
  
  .tool-btn {
    width: auto;
    min-width: 100px;
    white-space: nowrap;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
    
  }
  
  .footer-column {
    flex-basis: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .mobile{
    display: block;
  }
  .hero{
    padding: 2rem 0;
  }
  .hero-content {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .container {
    padding: 0 1rem;
  }
  .desktop{
    display: none;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .rank {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: -8px;
    left: -7px;
  }
  
  .tool-rating {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .rating-circle {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 60px;
  }
  
  .rating-circle span {
    font-size: 1.2rem;
  }
  
  .rating-stats {
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
  }
  
  .tool-btn {
    width: 100%;
    padding: 0.75rem;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
  
  .tool-details {
    gap: 0.5rem !important;
    display: contents;
  }
  
  .tool-features {
    gap: 0.4rem;
  }
  
  .feature {
    font-size: 0.85rem;
  }
  
  .feature i {
    font-size: 1rem;
  }
  
  .tool-name {
    font-size: 1.3rem;
  }
  
  .review-count {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    margin-left: 10px;
  }
}

@media (max-width: 400px) {
  .rating-circle {
    width: 50px;
    height: 50px;
  }
  .mobilerating{
    display: flex;
    gap: 15px;
  }
  
  .rating-circle span {
    font-size: 1rem;
  }
  
  .rating-circle::before,
  .rating-circle::after {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-width: 3px;
  }
  
  .rating-stats p {
    font-size: 0.8rem;
  }
  
  .tool-btn {
    font-size: 0.85rem;
  }
}

body {
  
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--rating-size), var(--rating-size))
  );
  gap: var(--bar-size);
  justify-content: start;
}

/* ----- The actual thing ----- */

/* Variables */

:root {
  --rating-size: 60px;
  --bar-size: 4px;
  --background-color: #fff;
  --rating-color-default: #fff;
  --rating-color-background: #fff;
  --rating-color-good: #27ae60;
  --rating-color-meh: #f1c40f;
  --rating-color-bad: #e74c3c;
}

/* Rating item */
.rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  min-width: 60px;
  min-height: 60px;
  background: var(--rating-color-default);
  color: var(--rating-color-default);
  width: var(--rating-size);
  height: var(--rating-size);

  /* Basic style for the text */
  font-size: calc(var(--rating-size) / 3);
  line-height: 1;
}

/* Rating circle content */
.rating span {
  position: relative;
  display: flex;
  font-weight: bold;
  z-index: 2;
}

.rating span small {
  font-size: 0.5em;
  font-weight: 900;
  align-self: center;
}

/* Bar mask, creates an inner circle with the same color as thee background */
.rating::after {
  content: "";
  position: absolute;
  inset: var(--bar-size);
  background: var(--background-color);
  border-radius: inherit;
  z-index: 1;
}

/* Bar background */
.rating::before {
  content: "";
  position: absolute;
  inset: var(--bar-size);
  border-radius: inherit;
  box-shadow: 0 0 0 1rem var(--rating-color-background);
  z-index: -1;
}

/* Classes to give different colors to ratings, based on their score */
.rating.good {
  background: var(--rating-color-good);
  color: var(--rating-color-good);
}

.rating.meh {
  background: var(--rating-color-meh);
  color: var(--rating-color-meh);
}

.rating.bad {
  background: var(--rating-color-bad);
  color: var(--rating-color-bad);
}


.popup-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: inherit;
}

.popup-button:hover {
  background-color: #45a049;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1545415;
}

.popup.show {
  display: flex;
}

.popup-content {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  min-width: 300px;
  margin-left: 10px;
  color: #333;
  max-width: 500px;
  text-align: -webkit-center;
  margin-right: 10px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.close-button:hover {
  color: #333;
}

h2 {
  margin-top: 0;
  color: #333;
}

.description {
  margin-top: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Bangbaze-style Popup */
.bangbaze-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1545416;
  backdrop-filter: blur(2px);
}

.bangbaze-popup.show {
  display: flex;
}

.bangbaze-popup-content {
  background-color: white;
  border-radius: 12px;
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: bangbazeSlideIn 0.3s ease-out;
}

@keyframes bangbazeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bangbaze-popup-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 30px 40px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

.bangbaze-popup-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.bangbaze-popup-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.bangbaze-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bangbaze-header-title {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  flex: 1;
}

.bangbaze-rocket-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bangbaze-rocket-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bangbaze-close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  z-index: 2;
  line-height: 1;
  transition: transform 0.2s;
}

.bangbaze-close-button:hover {
  transform: scale(1.2);
}

.bangbaze-popup-body {
  padding: 40px;
}

.bangbaze-main-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.bangbaze-content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.bangbaze-content-text strong {
  font-weight: 600;
}

.bangbaze-button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.bangbaze-primary-btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
  display: block;
}

.bangbaze-primary-btn:hover {
  background-color: #45a049;
}

.bangbaze-cancel-btn {
  background-color: #34495e;
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.bangbaze-cancel-btn:hover {
  background-color: #2c3e50;
}

.bangbaze-disclaimer {
  font-size: 0.85rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ecf0f1;
}

@media (max-width: 600px) {
  .bangbaze-popup-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .bangbaze-popup-header {
    padding: 20px 25px;
  }
  
  .bangbaze-header-title {
    font-size: 1.2rem;
  }
  
  .bangbaze-rocket-icon {
    width: 40px;
    height: 40px;
  }
  
  .bangbaze-popup-body {
    padding: 25px;
  }
  
  .bangbaze-main-title {
    font-size: 1.5rem;
  }
  
  .bangbaze-content-text {
    font-size: 0.9rem;
  }
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 5%;
background-color: black;
top: 0;
width: 100%;
z-index: 1000;
backdrop-filter: blur(10px);
    border-bottom: 1px solid #525252;
}

.logo {
font-size: 1.5rem;
font-weight: bold;
letter-spacing: 1px;
}

.create-account {
background-color: var(--primary-color);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: background-color 0.3s ease;
}

.create-account:hover {
background-color: #45a049;
}

.hero {/* padding: 3rem 5% 4rem; */text-align: center;max-width: 1200px;margin: 0 auto;gap: 20px !important;!i;!;}

h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.h1-t {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
}


.subtitle {font-size: 1.2rem;color: var(--text-secondary);max-width: 800px;margin: 0 auto 1rem;}

.highlight {color: #50a7ff;font-weight: 600;}

.cta-button {
background-color: var(--primary-color);
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
margin-bottom: 3rem;
transition: transform 0.3s ease;
}

.cta-button:hover {
transform: translateY(-2px);
}

.video-container {position: relative;width: 100%;max-width: 900px;margin: 0 auto;border-radius: 10px;overflow: hidden;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);}

.video-overlay {
position: absolute;
top: 20px;
left: 20px;
background-color: rgba(0, 255, 0, 0.2);
padding: 0.5rem 1rem;
border-radius: 5px;
color: #fff;
font-size: 0.9rem;
}

.video-placeholder {
width: 100%;
height: auto;
aspect-ratio: 16/9;
object-fit: cover;
}

.register-button {background-color: var(--primary-color);color: white;border: none;padding: 1rem 3rem;border-radius: 5px;font-size: 1.1rem;font-weight: 600;cursor: pointer;margin: 1rem 0;width: 100%;max-width: 400px;}

.ratings {/* margin: 2rem 0; */}

.stars {color: #ffd700;font-size: 0.9rem;margin-bottom: 0.5rem;}

.half-star {
opacity: 0.5;
}

.featured {
margin-top: 4rem;
}

.featured-text {
font-size: 0.9rem;
color: var(--text-secondary);
margin-bottom: 1rem;
}

.logos {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.logo-item {
color: var(--text-secondary);
font-weight: bold;
font-size: 1.2rem;
}

@media (max-width: 768px) {
.navbar {
  
}

.hero {
  padding: 1rem 1.5rem 2rem
}

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

.subtitle {
  font-size: 1rem;
}

.logos {
  gap: 1rem;
}

.logo-item {
  font-size: 1rem;
}
}

@media (max-width: 480px) {
.create-account {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

.cta-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
}


.why-ai-trading {
  /* max-width: 1200px; */
  width: 100%;
  background-color: white;
  padding: 2rem;
  justify-items: center;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  color: black;
}
.h1-t {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  color: black;
}

.content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2rem 0;
  max-width: 1200px;
}

.text-content {
  flex: 1;
}

.text-content p {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.security-features {
  list-style: none;
  margin-bottom: 2rem;
}

.security-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: black;
}

.security-features svg {
  color: var(--icon-color);
  flex-shrink: 0;
}

.cta-button {
  background-color: #1574cc;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #1d4ed8;
}

.image-container {
  flex: 1;
  position: relative;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.image-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--accent-color);
}

@media (max-width: 1024px) {
  .content {
      flex-direction: column;
      gap: 2rem;
  }

  .text-content, .image-container {
      width: 100%;
  }

  h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
  .h1-t {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  body {
      /* padding: 1rem; */
  }

  .why-ai-trading {
      padding: 1rem;
  }

  .text-content p {
      font-size: 1rem;
  }

  .security-features li {
      font-size: 1rem;
  }

  .cta-button {
      width: 100%;
      display: none;
      padding: 0.875rem 1.5rem;
  }
}


.reasons-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 4rem 1rem;
  background-color: white;
}

h1 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  font-weight: 800;
  /* margin-bottom: 20px; */
}
.h1-t {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  font-weight: 800;
  /* margin-bottom: 20px; */
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  justify-self: center;
}

.reason-card {
  background: #fafafa;
  padding: 1rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
      text-align: -webkit-center;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  background-color: var(--icon-background);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: black;
  font-weight: 700;
}
.profit-color{
  color: green;
}

p {
  color: black;
  line-height: 1.7;
  /* font-size: 1rem; */
}
.closed{
  background-color: #f14d4d;
  padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    width: 100%;
}
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 768px) {
  body {
      /* padding: 1rem; */
  }

  .reasons-section {
      padding: 2rem 0.5rem;
  }

  h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
  }
  .h1-t {
      font-size: 2rem;
      margin-bottom: 2rem;
  }

  .reasons-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .reason-card {
      padding: 1.5rem;
  }
}




.form-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 0.5rem;
}

.form-header h1 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}

.signup-form {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.input-group {
  position: relative;
  margin-bottom: 1rem;
}

.input-field {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
  transition: background 0.2s;
}

.input-field:focus {
  outline: none;
  background: #e8e8e8;
}

.phone-group {
  display: flex;
  gap: 0.5rem;
}

.country-select-container {
  position: relative;
  width: auto;
}

.selected-country {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 1rem;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  height: 100%;
}

.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  max-height: 300px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  overflow: hidden;
}

.country-dropdown.show {
  display: block;
}

.search-container {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

#countrySearch {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.country-list {
  max-height: 250px;
  overflow-y: auto;
}

.country-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.country-item:hover {
  background: #f5f5f5;
}

.country-flag {
  margin-right: 10px;
  font-size: 1.2rem;
}

.country-name {
  flex: 1;
  text-align: left;
  font-size: 14px;
}

.country-dial {
  color: #666;
  font-size: 14px;
}

.phone-input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  background: #f0f0f0;
  border-radius: 5px;
}

.phone-input:focus {
  outline: none;
  background: #e8e8e8;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  background: #50a63c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.2rem;
}

.submit-button:hover {
  opacity: 0.9;
}

.terms {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.terms a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.terms a:hover {
  text-decoration: underline;
}

.preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.preloader-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive styles */
@media (max-width: 480px) {
  .signup-form {
    padding: 1.5rem;
  }
  .load-more-btn
  .form-header h1 {
    font-size: 1.4rem;
    margin-left:20%;
    width: 100%;
  }
  
  .country-dropdown {
    width: 250px;
  }
}

#review-section {
  margin: 0 auto;
  text-align: center;
  background-color: white;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  text-align: left;
}

.review-box:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00b67a;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  font-weight: bold;
  color: #333;
  margin: 0;
}

.bot-name {
  color: #666;
  font-size: 0.875rem;
  margin: 4px 0 0 0;
}

.review-date {
  font-size: 0.875rem;
  color: #666;
  margin: 4px 0 0 0;
}

.stars {
  color: #00b67a;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.review-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.load-more-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #00b67a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  justify-self: center;
  
}

.load-more-btn:hover {
  background-color: #009c68;
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .review-box {
    margin-bottom: 1rem;
  }
}



.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
    border-radius:5px !important;
    justify-self: anchor-center;
}

video {
    width: 100%;
    display: block;
    touch-action: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
        padding-right: 5px;
    padding-left: 5px;
}

.video-container.playing .video-controls {
    opacity: 0;
}

.video-container:hover .video-controls,
.video-container:active .video-controls {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    height: 100%;
    background: #4285f4;
    border-radius: 4px;
    width: 0;
}

.time-display {
    color: white;
    font-size: 14px;
    font-family: Arial, sans-serif;
    min-width: 100px;
    text-align: right;
}

.pause-icon {
    display: none;
}

.mute-icon {
    display: none;
}

.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: block;
}

.muted .volume-icon {
    display: none;
}

.muted .mute-icon {
    display: block;
}

.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(89 89 89 / 55%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.unmute-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.unmute-content {
    text-align: center;
    color: white;
}

.large-mute-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    color: white;
}

.unmute-content p {
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin: 5px 0;
}

/* Mobile improvements */
@media (max-width: 768px) {
    .video-container {
        margin: 0;
        border-radius: 0;
    }
    
    .progress-bar {
        height: 12px;
    }
    
    .control-btn {
        padding: 8px;
    }
    
    .time-display {
        font-size: 16px;
    }
    
    .unmute-content p {
        font-size: 16px;
    }
}

.botSelector2025-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 21, 26, 0.8);
  backdrop-filter: blur(4px);
  z-index: 999999;
}

.botSelector2025-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1000000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#botSelector2025Button {
  background: #1574cc;
  color: white;
  border: none;
  padding: 1em 2em;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
  margin: 2rem auto;
  display: block;
  width: 100%;
    max-width: 450px;
}

#botSelector2025Button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(100, 108, 255, 0.4);
}

.botSelector2025-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5em;
  margin-bottom: 1.5rem;
  color: #2a2d37;
  justify-self: center;
}

.botSelector2025-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.botSelector2025-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s;
  border-radius: 16px;
  margin-bottom: 0.5rem;
}

.botSelector2025-item:hover {
  background-color: rgba(100, 108, 255, 0.05);
}

.botSelector2025-icon {
 width: 68px;
    height: 68px;
    margin-right: 1rem;
    padding: ;
    border-radius: 600px;
    /* background: linear-gradient(135deg, #646cff 0%, #535bf2 100%); */
    display: flex
;
    align-items: center;
    justify-content: center;
    /* color: white; */
    /* font-weight: 600; */
    /* font-size: 1.2em; */
    /* box-shadow: 0 4px 12px rgba(100, 108, 255, 0.2); */
    border: 1px solid #d9d9d9;
}

.botSelector2025-info {
  flex-grow: 1;
  text-align: left;
}

.botSelector2025-name {
  font-weight: 600;
  margin: 0;
  color: #2a2d37;
  font-size: 1.1em;
}

.botSelector2025-details {
  color: #64748b;
  font-size: 0.9em;
  margin: 0.2rem 0 0 0;
}

.botSelector2025-select {
  padding: 0.75rem 1.25rem;
  background: #1574cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(100, 108, 255, 0.2);
      width: auto;
}

.botSelector2025-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
}

/* Scrollbar Styling */
.botSelector2025-popup::-webkit-scrollbar {
  width: 8px;
}

.botSelector2025-popup::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.botSelector2025-popup::-webkit-scrollbar-thumb {
  background: #646cff;
  border-radius: 4px;
}

.botSelector2025-popup::-webkit-scrollbar-thumb:hover {
  background: #535bf2;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .botSelector2025-popup {
           width: 95%;
        padding: 0.4rem;
        border-radius: 10px;
        max-height: 80%;
        padding-top: 20px;
  }

  .botSelector2025-title {
    font-size: 1.3em;
    justify-self: center;
    margin-bottom: 1rem;
  }

  .botSelector2025-item {
    padding: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .botSelector2025-icon {
    width: 70px;
    height: 70px;
    font-size: 1em;
  }

  .botSelector2025-name {
    font-size: 1em;
  }

  .botSelector2025-details {
    font-size: 0.8em;
  }

  .botSelector2025-select {
    padding: 0.6rem 1rem;
    font-size: 0.9em;
  }
}
