  * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #1f2937;
      color: #fff;
    }
a {

text-decoration:none;
}
    .header {
     position: sticky;
      top: 0;
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      background-color: #0b0e11;
      border-bottom: 1px solid #1e1e1e;
      z-index: 30;
    }
    .header-left {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .logo img {
      height: 26px;
    }
    .menu-toggle { display: none; font-size: 22px; cursor: pointer; color: #fff; }
    .auth-toggle { display: none; gap: 8px; }
    .login-btn, .signup-btn {
      border: none;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
    }
    .login-btn { background: #1e2329; color: #fff; }
    .signup-btn { background: #fcd535; color: #000; font-weight: bold; }
    .desktop-nav {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .desktop-nav .nav-item {
      position: relative;
    }
    .desktop-nav .nav-item > a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .desktop-nav .dropdown {
      display: none;
      position: absolute;
      top: 38px;
      left: 0;
      background: #1e1e1e;
      border: 1px solid #2c2c2c;
      border-radius: 6px;
      min-width: 160px;
      z-index: 1000;
    }
    .desktop-nav .nav-item:hover .dropdown {
      display: block;
    }
    .desktop-nav .dropdown a {
      color: #ccc;
      padding: 10px;
      display: block;
      text-decoration: none;
      font-size: 13px;
    }
    .desktop-nav .dropdown a:hover {
      background-color: #333;
    }
    .desktop-auth {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .mobile-wrapper,
    .auth-toggle {
      display: none;
    }
    @media (max-width: 992px) {
      .menu-toggle { display: block; }
      .desktop-nav, .desktop-auth { display: none; }
      .auth-toggle { display: flex; }
      .mobile-wrapper {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0f1114;
        z-index: 100;
        transition: right 0.3s ease;
        flex-direction: column;
        overflow-y: auto;
        box-shadow: -2px 0 5px rgba(0,0,0,0.6);
      }
      .mobile-wrapper.active { right: 0; }
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px;
        border-bottom: 1px solid #202225;
        background-color: #0d0f13;
      }
      .mobile-header img { height: 24px; }
      .close-icon { font-size: 20px; color: #fff; cursor: pointer; }
      .mobile-auth {
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #202225;
      }
      .mobile-nav {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .nav-item {
        display: flex;
        flex-direction: column;
        background: #1a1c20;
        margin: 0 14px;
        border-radius: 6px;
        overflow: hidden;
        transition: background 0.3s ease;
      }
      .nav-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        font-size: 15px;
        color: #eee;
        text-decoration: none;
      }
      .nav-item > a:hover { background-color: #24272c; }
      .nav-item.open > a { background: #24272c; }
      .nav-item.open i.fa-chevron-down { transform: rotate(180deg); transition: transform 0.3s ease; }
      .nav-item i.fa-chevron-down { transition: transform 0.3s ease; }
      .dropdown {
        max-height: 0;
        overflow: hidden;
        background: #15171b;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        transition: max-height 0.3s ease;
      }
      .nav-item.open .dropdown {
        max-height: 500px;
        padding-top: 4px;
        padding-bottom: 10px;
      }
      .dropdown a {
        padding: 10px;
        font-size: 14px;
        color: #aaa;
        text-decoration: none;
        border-bottom: 1px solid #222;
      }
      .dropdown a:last-child { border-bottom: none; }
      .dropdown a:hover { color: #fff; }
      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 90;
        display: none;
      }
      .overlay.active { display: block; }
    }
	
	    .dark-hero {
      background: #1f2937;
      color: #fff;
      padding: 60px 20px;
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .hero-left {
      display: flex;
      gap: 20px;
      flex: 1 1 40%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-left img {
      width: 100%;
      border-radius: 24px;
      /* box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5); */
    }

    .hero-right {
      flex: 1 1 50%;
      max-width: 500px;
      padding: 20px;
    }

    .hero-right h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .hero-right h1 span {
      color: #fcd535;
    }

    .hero-right p {
      font-size: 1rem;
      color: #bbb;
      margin-bottom: 30px;
    }

    .hero-right form {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-right input[type="email"] {
      flex: 1;
      min-width: 250px;
      padding: 12px 16px;
      border-radius: 8px;
      border: 1px solid #333;
      background-color: #1a1a1a;
      color: #fff;
    }

    .hero-right button {
      background: #2962ff;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .hero-container {
        flex-direction: column;
        text-align: center;
      }

      .hero-left {
        flex-direction: column;
        gap: 16px;
      }

      .hero-right {
        padding: 0;
        margin-top: 30px;
      }

      .hero-right form {
        flex-direction: column;
        gap: 10px;
      }

      .hero-right input[type="email"],
      .hero-right button {
        width: 100%;
        max-width: 100%;
      }
    }
	
	 .market-section {
      padding: 60px 20px;
      background-color: #1f2937;
      max-width: 1200px;
      margin: auto;
    }
    .market-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
    }
    .market-top {
      flex: 1;
      min-width: 280px;
    }
    .market-top h2 {
      font-size: 2.2rem;
      margin-bottom: 16px;
      max-width: 600px;
    }
    .market-top p {
      color: #bbb;
      margin-bottom: 24px;
      font-size: 1rem;
      max-width: 600px;
    }
    .market-top button {
      background: #2962ff;
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 24px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }
    .market-top button:hover {
      background: #1c4ed8;
    }
    .crypto-toggle {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .crypto-toggle button {
      padding: 8px 18px;
      border-radius: 20px;
      background: #222;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
    }
    .crypto-toggle .active {
      background: #fcd535;
      color: #000;
    }
    .market-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
    }
    .crypto-card {
      background: #1e1e1e;
      border-radius: 16px;
      padding: 18px 14px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
    }
    .crypto-card:hover {
      transform: translateY(-4px);
    }
    .crypto-card img {
      width: 36px;
      height: 36px;
      margin-bottom: 10px;
    }
    .crypto-card h4 {
      margin: 6px 0 4px;
      font-size: 1.1rem;
    }
    .crypto-card p {
      color: #aaa;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }
    .crypto-card .change {
      font-weight: bold;
      font-size: 0.95rem;
    }
    .down { color: #ff4b4b; }
    .up { color: #4caf50; }
    .neutral { color: #ccc; }
	
	    .market {
      padding: 40px 16px;
      max-width: 1000px;
      margin: auto;
    }
    .market h2 {
      font-size: 2.4rem;
      margin-bottom: 32px;
      text-align: center;
      color: #ffffff;
    }
    .market-main2{
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .market-box, .gainers-box {
      background-color: #161b22;
      padding: 7px;
      border-radius: 20px;
      flex: 1;
      min-width: 320px;
      box-shadow: 0 0 12px rgba(0,0,0,0.5);
    }
    .market-tabs {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      border-bottom: 1px solid #2c2f36;
    }
    .market-tabs button {
      background: none;
      border: none;
      color: #aaa;
      font-weight: 600;
      padding: 10px 0;
      cursor: pointer;
      transition: color 0.3s;
    }
    .market-tabs .active {
      color: #fcd535;
      border-bottom: 3px solid #fcd535;
    }
    .market-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }
    .market-table th, .market-table td {
      padding: 12px 10px;
      text-align: left;
    }
    .market-table th {
      color: #888;
      font-size: 0.85rem;
      text-transform: uppercase;
    }
    .coin-row td {
      border-top: 1px solid #222;
    }
    .green { color: #4caf50; }
    .red { color: #ff4b4b; }
    .neutral { color: #ccc; }
    .trade-btn {
      background: #fcd535;
      border: none;
      color: #000;
      font-weight: 600;
      border-radius: 6px;
      padding: 6px 14px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .trade-btn:hover {
      background: #e6bd00;
    }
    .side-section h4 {
      margin: 16px 0 12px;
      font-size: 1rem;
      color: #fcd535;
      border-bottom: 1px solid #2c2f36;
      padding-bottom: 6px;
    }
    .side-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .side-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-top: 1px solid #222;
      font-size: 0.95rem;
      transition: background 0.3s;
    }
    .side-list li:hover {
      background-color: #1f232a;
    }
    .side-list li img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      border-radius: 50%;
    }
    .side-list li span:first-child {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cta {
      margin-top: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cta button {
      background: #fcd535;
      color: #000;
      font-weight: bold;
      padding: 14px 28px;
      border: none;
      border-radius: 32px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }
    .cta button:hover {
      background: #e6bd00;
    }
    .cta p {
      margin: 0;
      font-size: 1rem;
      color: #bbb;
    }
    @media (max-width: 768px) {
      .market-main2{
        flex-direction: column;
      }
      .cta {
        flex-direction: column;
        text-align: center;
      }
    }
	
	    .faq-wrapper {
      max-width: 700px;
      margin: 60px auto;
      padding: 0 16px;
    }
    .faq-title {
      font-size: 1.9rem;
      text-align: center;
      margin-bottom: 32px;
      color: #fcd535;
    }
    .faq-item {
      border-bottom: 1px solid #2c2f33;
      padding: 14px 0;
    }
    .faq-question {
      font-size: 1rem;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .faq-question:hover {
      color: #fcd535;
    }
    .faq-icon {
      transition: transform 0.3s ease;
    }
    .faq-question.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95rem;
      color: #c9d1d9;
      margin-top: 8px;
    }
    .faq-answer.show {
      opacity: 1;
      max-height: 500px;
    }
    @media (max-width: 600px) {
      .faq-title {
        font-size: 1.6rem;
      }
      .faq-question {
        font-size: 0.95rem;
      }
      .faq-answer {
        font-size: 0.85rem;
      }
    }
	
	
	    .get-started {
      text-align: center;
      padding: 60px 20px;
     
      backdrop-filter: blur(6px);
    }

    .get-started h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 60px;
      background: linear-gradient(90deg, #ffb347, #ffcc33);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .steps {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .step-box {
       
       
      border-radius: 20px;
      padding: 40px 25px;
      width: 300px;
      position: relative;
      
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .step-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    }

 

    .step-box img {
      width: 60px;
      margin-bottom: 18px;
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    }

    .step-box h3 {
      margin: 10px 0 8px;
      font-size: 20px;
      font-weight: 600;
    }

    .step-box p {
      font-size: 14px;
      color: #c9d1d9;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .step-box button {
      background: linear-gradient(to right, #ffd700, #ffb347);
      color: #000;
      border: none;
      padding: 12px 22px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 14px rgba(255, 208, 0, 0.4);
    }

    .step-box button:hover {
      filter: brightness(1.1);
    }

    @media screen and (max-width: 768px) {
      .get-started h2 {
        font-size: 24px;
        margin-bottom: 40px;
      }

      .step-box {
        width: 100%;
        max-width: 340px;
      }
    }
	
	    .blog-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .blog-header h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .blog-header p {
      font-size: 16px;
      color: #c9d1d9;
      max-width: 700px;
      margin: 0 auto;
    }

    .blog-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .blog-card {
      background-color: #161b22;
      border-radius: 12px;
      overflow: hidden;
      flex: 1 1 30%;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-title {
      font-size: 18px;
      font-weight: bold;
      margin: 0 0 12px;
      color: #fff;
    }

    .blog-description {
      font-size: 14px;
      color: #c9d1d9;
      flex-grow: 1;
      margin-bottom: 16px;
    }

    .blog-date {
      font-size: 13px;
      color: #8b949e;
    }

    @media screen and (max-width: 992px) {
      .blog-card {
        flex: 1 1 45%;
      }
    }

    @media screen and (max-width: 600px) {
      .blog-card {
        flex: 1 1 100%;
      }

      .blog-card img {
        height: 160px;
      }

      .blog-header h2 {
        font-size: 24px;
      }

      .blog-header p {
        font-size: 14px;
      }
    }
	
	
	    footer.site-footer {
      background-color: #1f2937;
      color: #fff;
      font-size: 14px;
      padding: 40px 20px 0;
    }

    .footer-container {
      max-width: 1300px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 30px;
    }

    .footer-logo img {
      height: 40px;
    }

    .footer-column,
    .footer-contact {
      flex: 1 1 220px;
    }

    .footer-column h4 {
      margin-bottom: 12px;
      font-size: 15px;
      color: #ffffff;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-size: 13px;
    }

    .footer-column ul li a:hover {
      text-decoration: underline;
    }

    .footer-contact p {
      margin: 0 0 8px;
      line-height: 1.5;
      font-size: 13px;
    }

    .footer-contact a {
      color: #fff;
      font-weight: bold;
      text-decoration: none;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      margin-right: 10px;
      font-size: 18px;
      color: #fff;
    }

    .footer-bottom {
      max-width: 1300px;
      margin: auto;
      padding: 20px 0;
      font-size: 13px;
      line-height: 1.6;
      color: #d1d5db;
      text-align: center;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .footer-column,
      .footer-contact {
        width: 100%;
      }

      .social-icons a {
        font-size: 20px;
      }
    }
	
	
	
	
	  .languagedropdown {
      position: relative;
      display: inline-block;
    }

    .languagedropdown-toggle {
      background: #1a1f2a;
      color: #fff;
      font-size: 13px;
      padding: 6px 12px;
      border-radius: 6px;
      border: 1px solid #333;
      cursor: pointer;
    }

    .languagedropdown-toggle:hover {
      background-color: #111827;
    }

    .languagedropdown-menu {
      display: none;
      position: absolute;
      background-color: #1f2937;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
      padding: 10px;
      border-radius: 8px;
      z-index: 999;
      top: 100%;
      right: 0;
      min-width: 180px;
    }

    .languagedropdown-menu a {
      display: flex;
      align-items: center;
      padding: 6px 8px;
      color: #fff;
      text-decoration: none;
      font-size: 13px;
      border-radius: 4px;
    }

    .languagedropdown-menu a:hover {
      background-color: #2d3748;
    }

    .languagedropdown-menu img {
      margin-right: 6px;
      height: 14px;
    }

    .languagedropdown:hover .languagedropdown-menu {
      display: block;
    }
	
	
	.about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    h1 {
      font-size: 36px;
      color: #fff;
      margin-bottom: 20px;
    }

    .intro p {
      font-size: 18px;
      color: #b0b3b8;
      line-height: 1.6;
      max-width: 700px;
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      margin-top: 50px;
      gap: 30px;
    }

    .stat-item {
      flex: 1 1 250px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .stat-item img {
      width: 48px;
      height: 48px;
    }

    .stat-text {
      display: flex;
      flex-direction: column;
    }

    .stat-text strong {
      font-size: 18px;
      color: #fff;
    }

    .stat-text small {
      color: #8b949e;
      font-size: 14px;
    }

    .mission {
      margin-top: 80px;
    }

    .mission h2 {
      font-size: 32px;
      color: #fff;
      margin-bottom: 20px;
    }

    .mission p {
      font-size: 17px;
      color: #b0b3b8;
      max-width: 800px;
      line-height: 1.6;
    }

    .btn-yellow {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 24px;
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 40px 16px;
      }

      h1 {
        font-size: 28px;
        text-align: center;
      }

      .intro p {
        font-size: 16px;
        text-align: center;
        margin: auto;
      }

      .stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .stat-item {
        justify-content: center;
        text-align: center;
      }

      .mission h2 {
        font-size: 24px;
        text-align: center;
      }

      .mission p {
        font-size: 16px;
        text-align: center;
        margin: auto;
      }

      .btn-yellow {
        display: block;
        margin: 20px auto 0;
      }
    }
	
	
	    .protection-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      padding: 60px 20px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .protection-image {
      position: relative;
      max-width: 300px;
    }

    .protection-image img {
      width: 100%;
    }

    .protection-icon {
      position: absolute;
      top: -20px;
      right: -20px;
      background-color: #fcd535;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .protection-icon i {
      font-size: 32px;
      color: #0b0e11;
    }

    .protection-content {
      max-width: 500px;
    }

    .protection-content h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .protection-content p {
      font-size: 16px;
      color: #b0b3b8;
      line-height: 1.6;
    }

    .btn-yellow {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .protection-section {
        flex-direction: column;
        text-align: center;
      }

      .protection-icon {
        top: -10px;
        right: 50%;
        transform: translateX(50%);
      }

      .protection-content h2 {
        font-size: 22px;
      }

      .protection-content p {
        font-size: 15px;
      }
    }
	
	    .regulators-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      padding: 60px 20px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .regulators-content {
      max-width: 520px;
    }

    .regulators-content h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .regulators-content p {
      font-size: 16px;
      color: #b0b3b8;
      line-height: 1.6;
    }

    .regulators-image {
      max-width: 350px;
      position: relative;
    }

    .regulators-image img {
      width: 100%;
      height: auto;
    }

    .icon-tag {
      position: absolute;
      background-color: #fcd535;
      padding: 10px;
      border-radius: 4px;
      top: 0;
    }

    .icon-tag i {
      color: #0b0e11;
    }

    .icon-tag.right {
      right: 0;
    }

    .icon-tag.left {
      left: 0;
      top: 100px;
    }

    
    @media (max-width: 768px) {
      .regulators-section {
        flex-direction: column;
        text-align: center;
      }

      .regulators-content h2 {
        font-size: 24px;
      }

      .regulators-content p {
        font-size: 15px;
      }

      .icon-tag.left {
        top: 10px;
        left: 10px;
      }

      .icon-tag.right {
        top: 10px;
        right: 10px;
      }
    }
	
	    .market-overview {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    h1 {
      font-size: 26px;
      margin-bottom: 20px;
    }
    .section-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      font-size: 18px;
      margin-bottom: 30px;
    }
    .section-tabs span {
      color: #888;
      cursor: pointer;
    }
    .section-tabs span.active {
      color: #fff;
      font-weight: bold;
    }
    .card-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .card {
      background-color: #161b22;
      border-radius: 12px;
      padding: 16px;
      width: 100%;
      max-width: 260px;
      flex: 1 1 240px;
    }
    .card h4 {
      margin: 0 0 10px;
      font-size: 15px;
      color: #aaa;
    }
    .card .row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 8px 0;
    }
    .coin-name {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .coin-name img {
      width: 20px;
      height: 20px;
    }
    .price {
      color: #ddd;
    }
    .change-pos {
      color: #0f0;
    }
    .change-neg {
      color: #f44;
    }
    .card .more {
      text-align: right;
      font-size: 13px;
      color: #999;
      margin-top: 10px;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .card-grid {
        flex-direction: column;
        align-items: center;
      }
    }
	
	    section.intro {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }
    .intro-left {
      flex: 1 1 400px;
    }
    .intro-left h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    .intro-left h1 span {
      color: #fcd535;
    }
    .intro-left p {
      font-size: 16px;
      color: #bbb;
      line-height: 1.6;
    }
    ul.features {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    ul.features li {
      margin-bottom: 15px;
      font-size: 16px;
    }
    ul.features li i {
      color: #fcd535;
      margin-right: 10px;
    }
    .open-account {
      display: inline-block;
      padding: 12px 20px;
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      margin-top: 20px;
    }
    .intro-right {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .info-box {
      background-color: #161b22;
      color: #fff;
      border-radius: 12px;
      padding: 20px;
    }
    .info-box h2 {
      margin-top: 0;
      color: #fcd535;
    }
    .info-box ul {
      list-style: none;
      padding: 0;
    }
    .info-box ul li {
      margin-bottom: 10px;
    }
    .info-box ul li i {
      color: #fcd535;
      margin-right: 10px;
    }
    @media (max-width: 768px) {
      .intro-left h1 {
        font-size: 32px;
      }
    }
	
	    section.copytrade-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }
    .copytrade-left {
      flex: 1 1 400px;
    }
    .copytrade-left h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }
    .copytrade-left h1 span {
      color: #fcd535;
    }
    .copytrade-left p {
      font-size: 16px;
      color: #bbb;
      line-height: 1.6;
    }
    ul.copytrade-features {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    ul.copytrade-features li {
      margin-bottom: 15px;
      font-size: 16px;
    }
    ul.copytrade-features li i {
      color: #fcd535;
      margin-right: 10px;
    }
    .copytrade-button {
      display: inline-block;
      padding: 12px 20px;
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      margin-top: 20px;
    }
    .copytrade-right {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .copytrade-box {
      background-color: #161b22;
      color: #fff;
      border-radius: 12px;
      padding: 20px;
    }
    .copytrade-box h2 {
      margin-top: 0;
      color: #fcd535;
    }
    .copytrade-box ul {
      list-style: none;
      padding: 0;
    }
    .copytrade-box ul li {
      margin-bottom: 10px;
    }
    .copytrade-box ul li i {
      color: #fcd535;
      margin-right: 10px;
    }
    @media (max-width: 768px) {
      .copytrade-left h1 {
        font-size: 32px;
      }
    }
	
	    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }
    .contact-form {
      background-color: #161b22;
      color: #fff;
      border-radius: 16px;
      padding: 30px;
      max-width: 420px;
      flex: 1;
      box-shadow: 0 0 15px rgba(0,0,0,0.5);
    }
    .contact-form h2 {
      margin-top: 0;
      font-size: 24px;
      margin-bottom: 20px;
      color: #fcd535;
    }
    .contact-form label {
      font-weight: 600;
      font-size: 14px;
      display: block;
      margin-bottom: 6px;
      color: #ccc;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #2c2f36;
      font-size: 14px;
      font-family: inherit;
      background-color: #0b0e11;
      color: #fff;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #fcd535;
    }
    .contact-form textarea {
      resize: vertical;
      height: 100px;
    }
    .send-button {
      background-color: #fcd535;
      color: #000;
      padding: 14px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      width: 100%;
      cursor: pointer;
      font-size: 15px;
      transition: background-color 0.3s ease;
    }
    .send-button:hover {
      background-color: #e6c300;
    }
    .contact-info {
      flex: 1;
      max-width: 500px;
    }
    .contact-info h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .contact-info h1 span {
      color: #fcd535;
    }
    .contact-info p {
      font-size: 16px;
      color: #bbb;
      line-height: 1.6;
    }
    .cta-buttons {
      margin-top: 20px;
      display: flex;
      gap: 12px;
    }
    .cta-buttons a {
      text-decoration: none;
      background-color: #fcd535;
      color: #000;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: bold;
    }
    .cta-buttons a:hover {
      background-color: #e6c300;
    }
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        text-align: center;
      }
      .cta-buttons {
        justify-content: center;
      }
    }
	
	    .account-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }
    .account-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      flex: 1 1 60%;
    }
    .account-card {
      background-color: #161b22;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
    .account-card h3 {
      margin-top: 10px;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .account-card p {
      font-size: 14px;
      color: #bbb;
      line-height: 1.6;
    }
    .account-icon {
      position: absolute;
      top: -20px;
      left: 20px;
      background-color: #fcd535;
      padding: 8px 12px;
      border-radius: 12px;
      color: #000;
      font-size: 18px;
    }
    .account-info {
      flex: 1 1 35%;
    }
    .account-info small {
      background-color: #1d2024;
      color: #fcd535;
      padding: 4px 12px;
      border-radius: 16px;
      font-size: 13px;
      text-transform: uppercase;
    }
    .account-info h1 {
      font-size: 32px;
      margin: 20px 0 10px;
    }
    .account-info h1 span {
      color: #fcd535;
    }
    .account-info p {
      font-size: 15px;
      color: #bbb;
      line-height: 1.6;
    }
    .account-info ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
    .account-info ul li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      font-size: 14px;
    }
    .account-info ul li i {
      color: #fcd535;
      margin-right: 8px;
    }
    .create-btn {
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
    }
    .create-btn:hover {
      background-color: #e6c300;
    }
    @media (max-width: 768px) {
      .account-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
      }
    }
	
	    .plan-price {
      font-size: 30px;
      font-weight: bold;
      margin: 16px 0 8px;
    }
    .plan-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      font-size: 14px;
      color: #ccc;
    }
    .plan-card ul li {
      margin-bottom: 6px;
    }
    @media (max-width: 768px) {
      .account-section, .plan-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
      }
    }
	
	     .plan-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }
  .plan-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      flex: 1 1 100%;
    }
.plan-card {
       
      border-radius: 12px;
      padding: 20px;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
  plan-card h3 {
      margin-top: 10px;
      font-size: 18px;
      margin-bottom: 10px;
    }
   .plan-card p {
      font-size: 14px;
      color: #bbb;
      line-height: 1.6;
    }
	
	 .plan-section h2 {
      font-size: 32px;
      margin: 20px 0 10px;
      width: 100%;
      text-align: center;
    }
	
	    .subscribe-btn {
      background-color: #fcd535;
      color: #000;
      font-weight: bold;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      width: 100%;
    }
  .subscribe-btn:hover {
      background-color: #e6c300;
    }
	
	   .news-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }
    .news-section h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 40px;
      color: #fcd535;
    }
    .news-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    .news-left {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .news-card {
      background-color: #161b22;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }
    .news-card:hover {
      transform: translateY(-5px);
    }
    .news-card img {
      width: 100%;
      height: 180px;
      object-fit: contain;
      background: #fff;
    }
    .news-card .text {
      padding: 16px;
    }
    .news-card .badge {
      background: #1d2024;
      color: #fcd535;
      padding: 3px 10px;
      font-size: 12px;
      border-radius: 16px;
      margin-bottom: 8px;
      display: inline-block;
    }
    .news-card h4 {
      font-size: 16px;
      margin-bottom: 8px;
    }
     
 .news-card a {
      color:#fff;
    }


    .news-card .meta {
      font-size: 13px;
      color: #3fcf8e;
    }
    .news-sidebar {
      flex: 1;
      padding-left: 20px;
    }
    .sidebar-block h4 {
      font-size: 20px;
      margin-bottom: 16px;
      border-bottom: 2px solid #fcd535;
      padding-bottom: 6px;
      display: inline-block;
    }
    .sidebar-block ul {
      list-style: none;
      padding-left: 0;
      font-size: 15px;
    }

.sidebar-block ul li a {
     color:#fff;
    }

    .sidebar-block ul li {
      margin-bottom: 10px;
      padding: 6px 12px;
       
      border-radius: 8px;
      color: #ccc;
      transition: background 0.3s;
    }
    .sidebar-block ul li:hover {
      background-color: #2a2e35;
      color: #fcd535;
    }
    .latest-post {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }
    .latest-post img {
      width: 50px;
      height: 50px;
      margin-right: 12px;
      object-fit: contain;
      background: #fff;
      padding: 5px;
      border-radius: 8px;
    }
    .latest-post-text {
      font-size: 13px;
      color: #ccc;
    }
    .latest-post-text strong {
      display: block;
      color: #fff;
      margin-bottom: 4px;
    }
    @media (max-width: 768px) {
      .news-content {
        flex-direction: column;
      }
      .news-sidebar {
        padding-left: 0;
      }
      .news-section h2 {
        font-size: 28px;
      }
      .sidebar-block h4 {
        font-size: 18px;
      }
    }
	
	    .article-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    .article-left {
      flex: 2;
    }
    .article-left h1 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #fff;
    }
    .article-left img {
      width: 100%;
      border-radius: 12px;
      background: #fff;
    }
    .article-meta {
      margin: 16px 0;
      font-size: 14px;
      color: #3fcf8e;
    }
    .badge {
      background: #1d2024;
      color: #fcd535;
      padding: 3px 10px;
      font-size: 12px;
      border-radius: 16px;
      display: inline-block;
      margin-right: 10px;
    }
    .article-left h2 {
      font-size: 24px;
      color: #ccc;
    }
    .sidebar {
      flex: 1;
    }
    .sidebar h4 {
      font-size: 20px;
      margin-bottom: 16px;
      border-bottom: 2px solid #fcd535;
      padding-bottom: 6px;
      display: inline-block;
    }
    .sidebar ul {
      list-style: none;
      padding-left: 0;
    }
    .sidebar ul li {
      margin-bottom: 10px;
      padding: 6px 12px;
      background-color: #1d2024;
      border-radius: 8px;
      color: #ccc;
      transition: background 0.3s;
    }

.sidebar ul li a {
color:#fff;
    }

    .sidebar ul li:hover {
      background-color: #2a2e35;
      color: #fcd535;
    }
    .latest-post {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }
    .latest-post img {
      width: 50px;
      height: 50px;
      margin-right: 12px;
      object-fit: contain;
      background: #fff;
      padding: 5px;
      border-radius: 8px;
    }
    .latest-post-text {
      font-size: 13px;
      color: #ccc;
    }
    .latest-post-text strong {
      display: block;
      color: #fff;
      margin-bottom: 4px;
    }
    @media (max-width: 768px) {
      .article-section {
        flex-direction: column;
      }
      .article-left h1 {
        font-size: 28px;
      }
      .sidebar h4 {
        font-size: 18px;
      }
    }
	
	
	    .policy-section {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }
    .policy-section h1 {
      font-size: 36px;
      margin-bottom: 30px;
      color: #fcd535;
      text-align: center;
    }
    .policy-section h2 {
      font-size: 24px;
      color: #fcd535;
      margin-top: 30px;
    }
    .policy-section p {
      font-size: 16px;
      color: #ccc;
      margin-bottom: 20px;
    }
    @media (max-width: 768px) {
      .policy-section h1 {
        font-size: 28px;
      }
      .policy-section h2 {
        font-size: 20px;
      }
    }