
:root {
    --primary: #00df8c;
    --primary-dark: #00c27c;
    --text-light: #ffffff;
    --text-muted: #8a8a8a;
    --bg-dark: #0e0e0e;
    --bg-card: #191919;
    --bg-card-hover: #212121;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
  }
  
  body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  
  /* Header */
  header {
    background-color: rgba(14, 14, 14, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    width: 100px;
    height: 30px;
  }
  
  .logo svg {
    height: 28px;
  }
  
  .nav-menu {
    border-radius: 20px;
    display: flex;
    gap: 20px;
    background: #141414;
    padding: 10px 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
  display: block;
}
  
 
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 10px;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0px 5px 15px rgba(0, 255, 102, 0.3);
}

.dropdown a {
  color: white;
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  font-size: 14px;
}

.dropdown a:hover {
  background: #222;
  border-radius: 5px;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
  display: block;
}
  
  .nav-link:hover {
    opacity: 1;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .language-switcher {
    display: flex;
    align-items: center;
  }
  
  .btn-primary {
    background-color: #2ecc71;
    color: black;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
  }
  
  .breadcrumb-item {
    color: var(--text-muted);
    font-size: 13px;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
  }
  
  .breadcrumb-item:last-child {
    color: var(--text-light);
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
  }
  
  .hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
  }
  
  .hero .btn-primary {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .platform-preview {
    margin: 80px 0 40px;
    position: relative;
    perspective: 1000px;
  }
  
  .platform-preview img {
    width: 100%;
    max-width: 1000px;
    transform: rotateX(5deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    border-radius: 8px;
  }
  
  .feature-caption {
    position: absolute;
    bottom: 40px;
    right: 8%;
    text-align: left;
    max-width: 300px;
    z-index: 2;
  }
  
  .feature-caption h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
  }
  
  /* Feature Cards */
  /* .feature-section {
    padding: 100px 0 50px;
  } */
  
  .feature-title {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 80px;
    letter-spacing: -1px;
  }
  
  .feature-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 20px;
    font-weight: 400;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
  }
  
  .feature-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .feature-image {
    /* margin-top: 32px; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Counter animation */
  .counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .counter-digits {
    display: flex;
    align-items: flex-end;
  }
  
  .counter-digit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100px;
    background-color: var(--bg-card-hover);
    color: white;
    border-radius: 8px;
    font-size: 64px;
    font-weight: 700;
    margin: 0 4px;
  }
  
  .counter-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    margin: 0 8px 30px;
  }
  
  /* Clock animation */
  .clock-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
  }
  
  .clock {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #222;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .clock::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: linear-gradient(to bottom, #333, #222);
  }
  
  .clock-marker {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 90px;
    left: 0;
  }
  
  .clock-marker span {
    position: absolute;
    width: 2px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    transform-origin: 50% 100px;
  }
  
  .clock-brand {
    position: absolute;
    top: 60px;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    z-index: 2;
  }
  
  .clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    z-index: 3;
  }
  
  .hour-hand {
    width: 6px;
    height: 50px;
    background-color: white;
    border-radius: 6px;
    transform: translateX(-50%);
  }
  
  .minute-hand {
    width: 4px;
    height: 70px;
    background-color: white;
    border-radius: 4px;
    transform: translateX(-50%);
  }
  
  .second-hand {
    width: 2px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
  }
  
  .clock-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 4;
  }
  
  /* Strategy section */
  .strategy-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .strategy-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .strategy-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
  }
  
  .strategy-icon {
    width: 70px;
    height: 70px;
    background-color: #222;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .strategy-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* SL/TP Card */
  .sltp-card-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
  }
  
  .sltp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .sltp-item:last-child {
    border-bottom: none;
  }
  
  .sltp-checkmark {
    color: var(--primary);
    font-size: 18px;
  }
  
  .sltp-text {
    font-size: 15px;
  }
  
  .sltp-time {
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 8px;
  }
  
  /* Leverage gauge */
  .leverage-gauge {
    width: 200px;
    height: 100px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
  }
  
  .gauge-bg {
    width: 200px;
    height: 200px;
    border-radius: 100px 100px 0 0;
    background: radial-gradient(circle at bottom, transparent 30%, rgba(255,255,255,0.05) 31%, rgba(255,255,255,0.05) 100%);
    position: absolute;
    bottom: 0;
  }
  
  .gauge-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 90px;
    width: 6px;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--primary);
    z-index: 2;
  }
  
  .gauge-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #222;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .gauge-labels {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .gauge-labels span:nth-child(2) {
    color: var(--primary);
  }
  
  /* YouTube Section */
  .youtube-section {
    padding: 40px 0 80px;
    text-align: center;
  }
  
  .youtube-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  
  .youtube-icon {
    color: #FF0000;
  }
  
  .youtube-videos {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .video-card {
    width: 340px;
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .video-card:hover {
    transform: translateY(-5px);
  }
  
  .video-content {
    padding: 20px;
  }
  
  .video-title {
    font-size: 18px;
    font-weight: 600;
  }
  
  .multi-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .dot.active {
    background-color: var(--primary);
  }
  
  /* Tools Section */
  .tools-section {
    padding: 80px 0;
  }
  
  .tools-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .tools-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  
  .tools-subtitle {
    font-size: 24px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
  }
  
  .tools-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .tools-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .tools-card p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .tools-img {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* Easy Trading Section */
  .easy-trading {
    padding: 80px 0;
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  
  .easy-content {
    flex: 1;
  }
  
  .easy-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  
  .easy-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
  }
  
  .feature-list {
    margin-top: 30px;
  }
  
  .feature-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .feature-expand {
    font-size: 20px;
    color: var(--text-muted);
  }
  
  .feature-description {
    padding-top: 10px;
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
    display: none;
  }
  
  .feature-item.active .feature-description {
    display: block;
  }
  
  .easy-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .phone-mockup {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 0 100px;
  }
  
  .cta-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 0;
    display: flex;
    overflow: hidden;
  }
  
  .cta-content {
    flex: 1;
    padding: 60px;
  }
  
  .cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  
  .cta-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 100px;
    display: flex;
    gap: 80px;
  }
  
  .faq-header {
    flex: 1;
  }
  
  .faq-content {
      flex: 1;
  }
  
  .faq-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .faq-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 300px;
  }
  
  .faq-list {
    flex: 2;
  }
  
  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
  }
  
  .faq-icon {
    font-size: 20px;
    color: var(--text-muted);
  }
  
  /* Footer */
  footer {
    padding: 80px 0 40px;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-branding {
    flex: 1 1 200px;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .footer-links {
    flex: 1 1 150px;
  }
  
  .footer-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: var(--text-light);
  }
  
  .footer-qr {
    flex: 1 1 200px;
    text-align: right;
  }
  
  .qr-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .qr-code {
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-top: 20px;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
  }
  
  .copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
  }
  
  .legal-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 20px;
    max-width: 900px;
  }
  
  .legal-links {
    display: flex;
    gap: 24px;
    margin-top: 20px;
  }
  
  .legal-link {
    color: var(--text-muted);
    font-size: 14px;
  }
  
  /* Chat Button */
  .chat-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 223, 140, 0.3);
    z-index: 1000;
    transition: transform 0.2s;
  }
  
  .chat-button:hover {
    transform: scale(1.05);
  }
  
  .chat-icon {
    font-size: 24px;
    color: black;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 1200px) {
    .container {
      padding: 0 20px;
    }
    
    .hero h1 {
      font-size: 56px;
    }
    
    .feature-title, .tools-title, .youtube-title {
      font-size: 48px;
    }
    
    .easy-title {
      font-size: 40px;
    }
  }
  
  @media (max-width: 992px) {
    .feature-grid, .tools-grid {
      grid-template-columns: 1fr;
    }
    
    .hero h1 {
      font-size: 48px;
    }
    
    .feature-title, .tools-title, .youtube-title {
      font-size: 40px;
    }
    
    .easy-trading {
      flex-direction: column;
    }
    
    .easy-image {
      justify-content: center;
      margin-top: 40px;
    }
    
    .cta-card {
      flex-direction: column;
    }
    
    .cta-image {
      height: 300px;
    }
    
    .feature-caption {
      bottom: 20px;
      right: 5%;
      max-width: 250px;
    }
    
    .feature-caption h3 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
    
    .hero h1 {
      font-size: 40px;
    }
    
    .feature-title, .tools-title, .youtube-title {
      font-size: 32px;
    }
    
    .feature-card, .tools-card {
      padding: 30px;
    }
    
    .faq-section {
      flex-direction: column;
      gap: 40px;
    }
    
    .feature-caption {
      position: static;
      margin: 20px auto 0;
      max-width: 100%;
      text-align: center;
    }
    
    .cta-content {
      padding: 40px 30px;
    }
    
    .cta-title {
      font-size: 28px;
    }
    
    .footer-qr {
      text-align: left;
    }
    
    .qr-code {
      margin-left: 0;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 32px;
    }
    
    .feature-card, .tools-card {
      padding: 24px;
    }
    
    .counter-digit {
      width: 60px;
      height: 80px;
      font-size: 48px;
    }
    
    .feature-title, .tools-title, .youtube-title {
      font-size: 28px;
    }
    
    .footer-content {
      gap: 30px;
    }
  }
  
  /* Animations */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .btn-primary {
    animation: pulse 3s infinite;
    margin-top: 10px;
  }
  
  @keyframes clockHand {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      width: 100%;
      max-width: 1200px;
      padding: 24px;
    }
    
    .feature-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 300px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
    }
    
    .fea-title h3, .feature-card div h3 {
      font-size: 28px;
      text-align: center;
      margin-top: 0;
      margin-bottom: 30px;
      font-weight: 600;
      line-height: 1.3;
    }
    
    .fea-title h3 {
      color: var(--text-light);
    }
    
    .fea-title h3 span, .feature-card div h3 span {
      color: var(--text-muted);
    }
    
    .feature-image {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      width: 60%;
    }
    
    /* Counter styles */
    .counter-container {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    
    .counter-digits {
      display: flex;
      align-items: center;
    }
    
    .counter-digit {
      width: 120px;
      height: 150px;
      background: linear-gradient(to bottom, var(--card-darker) 0%, var(--card-darker) 50%, #2a2a2a 50%, #2a2a2a 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 140px;
      font-weight: bold;
      color: white;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .counter-digit::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 1px;
      background-color: rgba(0, 0, 0, 0.5);
      top: 50%;
    }
    
    .counter-dot {
      width: 20px;
      height: 20px;
      background-color: var(--primary);
      border-radius: 50%;
      margin: 0 10px;
      align-self: flex-end;
      margin-bottom: 20px;
    }
    
    /* Clock styles */
    .clock-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
    }
    
    .clock {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background-color: var(--card-darker);
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    
    .clock-marker span {
      position: absolute;
      width: 2px;
      height: 8px;
      background-color: white;
      left: 50%;
      top: 5px;
      transform-origin: bottom center;
    }
    
    .clock-hand {
      position: absolute;
      bottom: 50%;
      left: 50%;
      transform-origin: bottom center;
      background-color: white;
    }
    
    .hour-hand {
      width: 4px;
      height: 50px;
      transform: translateX(-50%) rotate(45deg);
    }
    
    .minute-hand {
      width: 3px;
      height: 70px;
      transform: translateX(-50%) rotate(180deg);
    }
    
    .second-hand {
      width: 2px;
      height: 80px;
      background-color: var(--primary);
      transform: translateX(-50%) rotate(270deg);
    }
    
    .clock-center {
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: var(--primary);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    :root {
      --primary: #4DFF4D; /* Bright green color for accents */
      --dark-bg: #121212;
      --card-bg: #1E1E1E;
      --card-darker: #171717;
      --text-light: #FFFFFF;
      --text-muted: #AAAAAA;
    }
  
    .feature-grid-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }
    
    .feature-card-card {
      background-color: var(--bg-card);
      border-radius: 16px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 300px;
    }
  
    
  
  /* Video Container */
  .video-container {
      position: relative;
      width: 100%;
      max-width: 200px;
      margin: 20px auto;
    }
    
    .video-container video {
      width: 100%;
      border-radius: 10px;
    }
    
    .video-badge {
      position: absolute;
      top: 10px;
      right: -10px;
      background: var(--primary);
      color: black;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 600;
    }
    
    /* Responsive */
    @media (max-width: 600px) {
      .features-container {
        grid-template-columns: 1fr;
      }
    }
  
  
    /* General Styles */
  .feature-section {
      padding: 20px;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .feature-title {
      text-align: center;
      font-size: 2rem;
    }
    
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 24px;
        width: 100%;
        max-width: 1200px;
        padding: 24px;
    }
    
    .feature-card {
      background: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
    }
    
    .feature-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }
    
    .feature-image img {
      max-width: 100%;
      height: auto;
    }
    
    .counter-container, .clock-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .video-container video {
      width: 100%;
      border-radius: 10px;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .feature-grid {
        grid-template-columns: 1fr;
        padding: 0px;
      }
    
      .feature-title {
        font-size: 1.5rem;
      }
    
      .feature-card h3 {
        font-size: 1rem;
      }
    }
  
    
    
    
    
  