  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
              font-family: "Merriweather", serif;
  font-optical-sizing: auto; 
  font-style: normal;
 
        }
        
        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
            padding-bottom: 70px; /* Space for bottom nav */
        }
        
        /* Scrolling text banner */
        .scrolling-banner {
            background-color: black;
            color: whitesmoke;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            font-weight: bold;
        }
        
        .scrolling-text {
            display: inline-block;
            padding-left: 100%;
            animation: scroll 110s linear infinite;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Navigation */
        nav {
            padding: 10px 0;
            background-color: black;
        }
        
        .logo img {
            max-height: 80px;
            width: auto;
        }
        
        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .nav-links {
            display: flex;
            justify-content: center;
            flex-grow: 1;
        }
        
        .nav-links a {
            color: whitesmoke;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0 15px;
            font-size: 18px;
            white-space: nowrap;
        }

        .nav-links a.active{
            color: #ff8c00;
        }
        
        .nav-links a:hover {
            color: #ff8c00;
        }
        
         .auth-buttons {
            display: flex;
            align-items: center;
        }
        
        .btn {
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .login-btn {
            background-color: transparent;
            border: 2px solid #ff8c00;
            color: #ff8c00;
        }
        
        .login-btn:hover {
            background-color: #ff8c00;
            color: #000;
        }
        
        .signup-btn {
            background-color: #ffd700;
            color: #000;
        }
        
        .signup-btn:hover {
            background-color: #ff8c00;
            border-color: #ff8c00;
        } 
        
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            width: 100%;
            align-items: center;
            justify-content: space-between;
        }
        
        .mobile-nav .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .mobile-nav .toggle-btn {
            background: none;
            border: none;
            color: #ff8c00;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-nav .world-icon {
            background: none;
            border: none;
            color: #ff8c00;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background-color: #000;
            z-index: 1000;
            transition: left 0.3s ease;
            padding: 20px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.5);
            overflow-y: auto;
        }
        
        .mobile-sidebar.active {
            left: 0;
        }
        
        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        
        .sidebar-logo img {
            max-height: 35px;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: #ff8c00;
            font-size: 24px;
            cursor: pointer;
        }
        
        .sidebar-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .sidebar-links a {
            color: #ff8c00;
            text-decoration: none;
            font-size: 18px;
            padding: 10px 0;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sidebar-links a:hover {
            color: #ff8c00;
        }
        
        .sidebar-auth {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }


        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #000000;
            border-top: 1px solid #333;
            z-index: 1000;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-bottom-nav .nav-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .mobile-bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #888;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
            flex: 1;
            max-width: 20%;
            text-align: center;
        }

         .mobile-bottom-nav .nav-item:hover {
            color: #ff8c00;
            background-color: rgba(255, 140, 0, 0.1);
        }

        .mobile-bottom-nav .nav-item.active {
            color: #ff8c00;
            background-color: rgba(255, 140, 0, 0.1);
        } 

        .mobile-bottom-nav .nav-icon {
            font-size: 18px;
            margin-bottom: 4px;
            transition: transform 0.3s ease;
        }

        .mobile-bottom-nav .nav-item.active .nav-icon,
        .mobile-bottom-nav .nav-item:hover .nav-icon {
            transform: scale(1.1);
        }

        .mobile-bottom-nav .nav-label {
            font-size: 11px;
            font-weight: 500;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .mobile-bottom-nav {
                display: flex;
            }
            body {
                padding-bottom: 70px;
            }
        }
        
        /* Hero Section */
        .hero {
            min-height: 80vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/morel.jpg') no-repeat center center/cover;
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            z-index: 1;
        }
        
        .hero-btns {
            display: flex;
            justify-content: left;
            margin-top: 20px;
        }
        
        .primary-btn {
            background-color: #ff8c00;
            color: #000;
            border: none;
            padding: 12px 30px;
            font-size: 26px;
            font-weight: bold;
            border-radius: 54px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .primary-btn:hover {
            background-color: #ffd700;
            transform: translateY(-3px);
        }
        
        /* Hero Text Below Button */
        .hero-text {
            margin-top: 25px;
            font-size: 18px;
            line-height: 1.6;
            color: #e0e0e0;
            max-width: 600px;
            text-align: center;
        }
        
        /* Hero Images */
        .hero-image-left, .hero-image-right {
            max-height: 500px;
            width: auto;
        }
        
        /* Workflow Section */
        .workflow-section {
            padding: 80px 0;
            background-color: black;
        }
        
        .workflow-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .workflow-header h2 {
            font-size: 42px;
            font-weight: bold;
            color: orange;
            margin-bottom: 20px;
        }
        
        .workflow-header p {
            font-size: 20px;
            color: rgb(230, 197, 137);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav {
                display: flex;
            }
            
            .hero-image-left, .hero-image-right {
                max-height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-image-left, .hero-image-right {
                max-height: 300px;
                margin-bottom: 20px;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .hero-text {
                text-align: center;
            }
            
            /* Hide right image on mobile */
            .hero-image-right {
                display: none;
            }
            
            .workflow-header h2 {
                font-size: 36px;
            }
            
            .workflow-header p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-image-left, .hero-image-right {
                max-height: 250px;
            }
            
            .mobile-sidebar {
                width: 280px;
            }
            
            .hero-text {
                font-size: 16px;
            }
            
            .workflow-header h2 {
                font-size: 32px;
            }
            
            .workflow-header p {
                font-size: 16px;
            }
        }

        /* Workflow Cards */
.workflow-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

.card-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.workflow-card:hover .card-icon-bg {
    color: rgba(255, 140, 0, 0.05);
    transform: translate(-50%, -50%) scale(1.1);
}

.card-number {
    font-size: 28px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
}

.divider {
    width: 80%;
    height: 1px;
     background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    margin: 0 auto 25px auto;
    position: relative;
    z-index: 2;
}

.card-text {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin: 0;
    text-align: center;
}

/* Responsive Design for Cards */
@media (max-width: 992px) {
    .workflow-card {
        padding: 30px 25px;
        min-height: 280px;
    }
    
    .card-icon-bg {
        font-size: 100px;
    }
    
    .card-number {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .divider {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .workflow-card {
        padding: 25px 20px;
        min-height: 260px;
    }
    
    .card-icon-bg {
        font-size: 80px;
    }
    
    .card-number {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .divider {
        width: 85%;
        margin-bottom: 18px;
    }
}

@media (max-width: 576px) {
    .workflow-card {
        padding: 20px 15px;
        min-height: 240px;
        margin-bottom: 20px;
    }
    
    .card-icon-bg {
        font-size: 70px;
    }
    
    .card-number {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .divider {
        width: 90%;
        margin-bottom: 15px;
    }
}

/* Mining Plans Section */
.mining-plans-section {
    padding: 80px 0;
    background-color: #000;
}

.mining-plans-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mining-plans-header h2 {
    font-size: 42px;
    font-weight: bold;
    color:   #ff8c00;
    margin-bottom: 15px;
}

.mining-plans-header p {
    font-size: 24px;
    color: #fff ;
    font-weight: 600;
    margin-bottom: 20px;
}

.plans-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0;
    
}

/* Responsive Design for Mining Plans Section */
@media (max-width: 768px) {
    .mining-plans-section {
        padding: 60px 0;
    }
    
    .mining-plans-header h2 {
        font-size: 36px;
    }
    
    .mining-plans-header p {
        font-size: 20px;
    }
    
    .plans-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .mining-plans-section {
        padding: 50px 0;
    }
    
    .mining-plans-header h2 {
        font-size: 32px;
    }
    
    .mining-plans-header p {
        font-size: 18px;
    }
    
    .plans-description {
        font-size: 15px;
    }
    
    .header-divider {
        width: 80px;
        margin-bottom: 25px;
    }
}
/* Mining Plans Section */
.mining-plans-section {
    padding: 80px 0;
    background-color: #000;
}

.mining-plans-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mining-plans-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.mining-plans-header p {
    font-size: 24px;
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 30px auto;
}

.plans-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Mining Plans Section */
@media (max-width: 768px) {
    .mining-plans-section {
        padding: 60px 0;
    }
    
    .mining-plans-header h2 {
        font-size: 36px;
    }
    
    .mining-plans-header p {
        font-size: 20px;
    }
    
    .plans-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .mining-plans-section {
        padding: 50px 0;
    }
    
    .mining-plans-header h2 {
        font-size: 32px;
    }
    
    .mining-plans-header p {
        font-size: 18px;
    }
    
    .plans-description {
        font-size: 15px;
    }
    
    .header-divider {
        width: 80px;
        margin-bottom: 25px;
    }
}

/* Mining Plan Cards */
/* Mining Plans Section */
.mining-plans-section {
    padding: 80px 0;
    background-color: #000;
}

.mining-plans-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mining-plans-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.mining-plans-header p {
    font-size: 24px;
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin: 0 auto 30px auto;
}

.plans-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mining Plan Cards */
     .mining-plans-section {
    padding: 60px 0;
    background: black;
  }
  .mining-plans-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .mining-plans-header h2 {
    color: #ff8c00;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mining-plans-header p {
    color: #ccc;
    margin-bottom: 8px;
  }
  .plans-description {
    max-width: 650px;
    margin: 0 auto;
    color: #aaa;
    font-size: 0.95rem;
  }

  .plan-frame {
    border: 3px solid #ff8c00;
    padding: 18px;
    border-radius: 6px;
    background: transparent;
  }
  .plan-card {
    background: #111;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: stretch;
    overflow: hidden;
  }
  .plan-content {
    flex: 1 1 auto;
  }
  .plan-title {
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .badge-payout {
    display: inline-block;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 14px;

  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }
  .stat {
    background: rgb(51, 51, 51);
    padding: 10px;
    border-radius: 8px;
    color: #ddd;
    
  }
  .stat strong {
    display: block;
    color: #fff;
    margin-top: 4px;
  }
  .progress {
    height: 12px;
    background: #222;
    border-radius: 8px;
    margin: 10px 0;
  }
  .progress .bar {
    height: 100%;
    background: #ff8c00;
    border-radius: 8px;
  }
  .levels {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }
  .level {
    width: 64px;
    height: 64px;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    color: #ff8c00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .levels-labels {
    display: flex;
    gap: 32px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #bdbdbd;
  }
  .price-box {
    background: rgb(51, 51, 51);
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .price-box .price {
    color: #ff8c00;
    font-weight: 800;
    font-size: 1.15rem;
  }
  .btn-invest {
    background: #ff8c00;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 14px;
    border: 0;
  }
  

  .plan-image-wrap {
    width: 220px;
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .plan-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;

  }

  /* Mobile View */
  @media (max-width: 767.98px) {
    .plan-card {
      flex-direction: column-reverse;
      text-align: center;
      padding: 16px;
    }
    .plan-image-wrap {
      width: 100%;
      margin-bottom: 10px;
    }
    .plan-image {
      width: 80%;
      max-width: 350px;
      height: auto;
    }
    .stats-grid {
      grid-template-columns: 1fr;
    }
    .levels, .levels-labels {
      justify-content: center;
    }
    .price-box {
      justify-content: center;
      text-align: center;
    }
  }

  .view-all-btn {
    display: inline-block;
    background: #ff8c00;
    color: #000;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
  }
 
/* View All Button */
.view-all-btn {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    width: 300px;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    color: #000;
}

.view-all-btn:active {
    transform: translateY(-1px);
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.view-all-btn:hover::before {
    left: 100%;
}

/* Container for centering the button */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

/* Responsive styles for View All button */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .view-all-container {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .view-all-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .view-all-container {
        margin-top: 25px;
    }
}

/* Value-Mining About Section */
.Value-Mining-about-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.Value-Mining-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Value-Mining-about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.Value-Mining-about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.Value-Mining-about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color:  whitesmoke;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Value-Mining-about-section {
        padding: 60px 0;
    }
    
    .Value-Mining-about-title {
        font-size: 2.2rem;
    }
    
    .Value-Mining-about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .Value-Mining-about-section {
        padding: 50px 0;
    }
    
    .Value-Mining-about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .Value-Mining-about-text {
        font-size: 0.95rem;
    }
    
    .Value-Mining-container {
        padding: 0 15px;
    }
}

/* Certification Section */
.certification-section {
    background: #000;
    padding: 80px 0;
}

.certification-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certification-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.certification-image {
    flex: 1;
}

.certification-image img {
    width: 100%;
    border-radius: 10px;
    
}

.certification-text {
    flex: 1;
}

.certification-title {
    font-size: 2.5rem;
    color: whitesmoke;
    margin-bottom: 20px;
    font-weight: bold;
}

.certification-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 40px;
}

/* Advantages Section */
.advantages-title {
    font-size: 2rem;
    color: whitesmoke;
    margin-bottom: 30px;
    font-weight: bold;
}

.advantages-horizontal {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.advantage-item {
    flex: 1;
    text-align: center;
    padding: 0;
}

.advantage-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-icon svg {
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon svg {
    transform: scale(1.1);
}

.advantage-heading {
    font-size: 1.2rem;
    color: whitesmoke;
    margin-bottom: 15px;
    font-weight: bold;
}

.advantage-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* Icon Animations */
.advantage-icon svg path {
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon svg path {
    stroke: #ffd700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .advantages-horizontal {
        gap: 20px;
    }
    
    .advantage-heading {
        font-size: 1.1rem;
    }
    
    .advantage-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .certification-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .certification-title {
        font-size: 2rem;
    }
    
    .advantages-title {
        font-size: 1.7rem;
    }
    
    .advantages-horizontal {
        flex-direction: column;
        gap: 30px;
    }
    
    .advantage-item {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .advantage-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .advantage-content {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .certification-section {
        padding: 60px 0;
    }
    
    .certification-title {
        font-size: 1.8rem;
    }
    
    .advantages-title {
        font-size: 1.5rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .advantage-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: #000;
    padding: 60px 0;
}

.why-choose-title {
    font-size: 2.5rem;
    color: #ff8c00;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Features */
.features-center img {
    max-width: 250px;
    border-radius: 10px;
    margin-top: 50px;
}

.feature-item {
    text-align: left;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: whitesmoke;
    margin-bottom: 5px;
    font-weight: bold;
}

.Value-Mining-tag {
    display: inline-block;
    color: #ff8c00;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feature-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .features-center img {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 0 10px 0 !important;
        order: -1;
    }
    
    .features-center img {
        max-width: 180px;
    }
}


/* Crypto Prices Section */
.crypto-prices-section {
    padding: 80px 0;
    background-color: #000;
}

.crypto-prices-header {
    text-align: center;
    margin-bottom: 50px;
}

.crypto-prices-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 0;
}

/* Crypto Price Cards */
.crypto-price-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border: 2px solid #333;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.crypto-price-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.crypto-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}

.crypto-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;

}

.crypto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.crypto-info {
    flex: 1;
    text-align: left;
}

.crypto-header {
    margin-bottom: 15px;
}

.crypto-pair {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.crypto-name {
    font-size: 13px;
    color: whitesmoke;
    opacity: 0.8;
}

.crypto-price {
    font-size: 24px;
    font-weight: bold;
    color: whitesmoke;
    margin-bottom: 8px;
    line-height: 1.2;
}

.crypto-change {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
}

.crypto-change.negative {
    color: #dc3545;
}

.crypto-change.positive {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Optional: Add subtle pattern */
.crypto-price-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80px;
    height: 80px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .crypto-content {
        gap: 12px;
    }
    
    .crypto-image {
        width: 45px;
        height: 45px;
    }
    
    .crypto-pair {
        font-size: 16px;
    }
    
    .crypto-price {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .crypto-price-card {
        padding: 18px;
    }
    
    .crypto-content {
        gap: 15px;
    }
    
    .crypto-image {
        width: 50px;
        height: 50px;
    }
    
    .crypto-pair {
        font-size: 17px;
    }
    
    .crypto-price {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .crypto-prices-section {
        padding: 60px 0;
    }
    
    .crypto-prices-header h2 {
        font-size: 36px;
    }
    
    .crypto-price-card {
        padding: 16px;
    }
    
    .crypto-content {
        gap: 12px;
        align-items: center;
    }
    
    .crypto-image {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .crypto-pair {
        font-size: 16px;
    }
    
    .crypto-name {
        font-size: 12px;
    }
    
    .crypto-price {
        font-size: 20px;
    }
    
    .crypto-change {
        font-size: 13px;
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .crypto-prices-section {
        padding: 50px 0;
    }
    
    .crypto-prices-header h2 {
        font-size: 32px;
    }
    
    .crypto-price-card {
        padding: 14px;
    }
    
    .crypto-content {
        gap: 10px;
        align-items: center;
    }
    
    .crypto-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .crypto-pair {
        font-size: 15px;
    }
    
    .crypto-name {
        font-size: 11px;
    }
    
    .crypto-price {
        font-size: 18px;
    }
    
    .crypto-change {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .row {
        margin: 0 -8px;
    }
    
    .col-lg-4, .col-md-6 {
        padding: 0 8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .crypto-price-card {
        padding: 12px;
    }
    
    .crypto-content {
        gap: 8px;
        align-items: center;
    }
    
    .crypto-image {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .crypto-pair {
        font-size: 14px;
    }
    
    .crypto-name {
        font-size: 10px;
    }
    
    .crypto-price {
        font-size: 16px;
    }
    
    .crypto-change {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .crypto-content {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        align-items: center;
    }
    
    .crypto-image {
        align-self: center;
        margin-right: 10px;
    }
    
    .crypto-info {
        text-align: left;
    }
}
/* Transactions Section */
.transactions-section {
    padding: 80px 0;
    background-color: #000;
}

.table-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 10px;
}

/* Transaction Table Container */
.transaction-table-container {
    background: black;
    border-radius: 15px;
    border: 2px solid #333;
    padding: 0;
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.transaction-table-container:hover {
    border-color: #ff8c00;
}

/* Table Header */
.table-header {
    display: flex;
    background: rgb(14, 12, 12);
    padding: 15px 20px;
    border-bottom: 2px solid #333;
}

.header-cell {
    flex: 1;
    color: whitesmoke;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cell:nth-child(1) { flex: 1.2; }
.header-cell:nth-child(2) { flex: 1; }
.header-cell:nth-child(3) { flex: 0.8; }

/* Table Wrapper */
.table-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, #1a1a1a, transparent);
    z-index: 2;
}

.table-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, #1a1a1a, transparent);
    z-index: 2;
}

/* Transaction Table */
.transaction-table {
    width: 100%;
    animation: scrollTable 25s linear infinite;
}

.transaction-table:hover {
    animation-play-state: paused;
}

@keyframes scrollTable {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Table Rows */
.table-row {
    display: flex;
    padding: 12px 20px;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.table-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.table-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.01);
}

.table-row:hover {
    background: rgba(255, 140, 0, 0.1);
}

/* Table Cells */
.table-cell {
    flex: 1;
    font-size: 14px;
    color: #e0e0e0;
}

.table-cell:nth-child(1) {
    flex: 1.2;
    color: #fff;
    font-weight: 500;
}

.table-cell:nth-child(2) {
    flex: 1;
    color: whitesmoke;
    font-weight: bold;
}

.table-cell:nth-child(3) {
    flex: 0.8;
    color: #e0e0e0;
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .transaction-table-container {
        height: 350px;
    }
    
    .table-title {
        font-size: 22px;
    }
    
    .table-header {
        padding: 12px 15px;
    }
    
    .header-cell {
        font-size: 13px;
    }
    
    .table-row {
        padding: 10px 15px;
    }
    
    .table-cell {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .transactions-section {
        padding: 60px 0;
    }
    
    .transaction-table-container {
        height: 320px;
        margin-bottom: 25px;
    }
    
    .table-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .table-header {
        padding: 10px 12px;
    }
    
    .header-cell {
        font-size: 12px;
    }
    
    .table-row {
        padding: 8px 12px;
    }
    
    .table-cell {
        font-size: 12px;
    }
    
    .table-cell:nth-child(3) {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .transactions-section {
        padding: 50px 0;
    }
    
    .transaction-table-container {
        height: 280px;
    }
    
    .table-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .table-header {
        padding: 8px 10px;
    }
    
    .header-cell {
        font-size: 11px;
    }
    
    .table-row {
        padding: 6px 10px;
    }
    
    .table-cell {
        font-size: 11px;
    }
    
    .table-cell:nth-child(3) {
        font-size: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .transaction-table-container {
        height: 250px;
    }
    
    .table-title {
        font-size: 16px;
    }
    
    .table-header {
        padding: 6px 8px;
    }
    
    .header-cell {
        font-size: 10px;
    }
    
    .table-row {
        padding: 5px 8px;
    }
    
    .table-cell {
        font-size: 10px;
    }
    
    .table-cell:nth-child(3) {
        font-size: 9px;
    }
}



/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: black;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 20px;
}

/* Blog Cards */
.blog-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border: 2px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #ff8c00;
}

.blog-image {
    width: calc(100% - 20px);
    height: 180px;
    margin: 10px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 2px solid #333;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}


.blog-content {
    padding: 20px 25px 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px;
}

.blog-excerpt {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* View All Button */
.view-all-btn {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-image {
        height: 170px;
    }
}

@media (max-width: 992px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header h2 {
        font-size: 36px;
    }
    
    .blog-title {
        font-size: 18px;
        min-height: 52px;
    }
    
    .blog-content {
        padding: 18px 20px 20px;
    }
    
    .blog-image {
        height: 160px;
        width: calc(100% - 16px);
        margin: 8px auto;
    }
    
    .header-divider {
        width: 90px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        margin-bottom: 40px;
    }
    
    .blog-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .blog-card {
        margin-bottom: 25px;
    }
    
    .blog-title {
        font-size: 17px;
        min-height: auto;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-image {
        height: 150px;
        width: calc(100% - 14px);
        margin: 7px auto;
    }
    
    .blog-content {
        padding: 15px 18px 18px;
    }
    
    .view-all-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
    
    .header-divider {
        width: 80px;
        height: 2.5px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .blog-content {
        padding: 12px 15px 15px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        font-size: 12px;
    }
    
    .blog-image {
        height: 140px;
        width: calc(100% - 12px);
        margin: 6px auto;
    }
    
    .read-more {
        font-size: 13px;
    }
    
    .view-all-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .header-divider {
        width: 70px;
        height: 2px;
    }
    
    .row {
        margin: 0 -8px;
    }
    
    .col-lg-4, .col-md-6 {
        padding: 0 8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 24px;
    }
    
    .blog-content {
        padding: 10px 12px 12px;
    }
    
    .blog-title {
        font-size: 15px;
    }
    
    .blog-excerpt {
        font-size: 11px;
    }
    
    .blog-image {
        height: 130px;
        width: calc(100% - 10px);
        margin: 5px auto;
    }
    
    .view-all-btn {
        padding: 8px 25px;
        font-size: 13px;
    }
    
    .header-divider {
        width: 60px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .blog-header h2 {
        font-size: 22px;
    }
    
    .blog-image {
        height: 120px;
    }
    
    .blog-title {
        font-size: 14px;
    }
    
    .blog-excerpt {
        font-size: 10px;
    }
}


/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: #000;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}


/* Partners Rows */
.partners-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.partners-row-center {
    justify-content: center;
}

/* Partner Boxes */
.partner-box {
    flex: 0 0 calc(16.666% - 20px); /* 6 boxes per row */
    max-width: calc(16.666% - 20px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 2px solid #333;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-box:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.partner-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    color: #ff8c00;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-box:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partner-box {
        flex: 0 0 calc(25% - 20px); /* 4 boxes per row */
        max-width: calc(25% - 20px);
        min-height: 110px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-header h2 {
        font-size: 36px;
    }
    
    .partner-box {
        flex: 0 0 calc(33.333% - 20px); /* 3 boxes per row */
        max-width: calc(33.333% - 20px);
        min-height: 100px;
        padding: 15px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .partners-header .header-divider {
        width: 90px;
    }
}

@media (max-width: 768px) {
    .partners-header {
        margin-bottom: 40px;
    }
    
    .partners-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .partner-box {
        flex: 0 0 calc(50% - 15px); /* 2 boxes per row */
        max-width: calc(50% - 15px);
        min-height: 90px;
        padding: 12px;
    }
    
    .partners-row {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .partner-logo {
        height: 50px;
        padding: 8px;
    }
    
    .partners-header .header-divider {
        width: 80px;
        height: 2.5px;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .partner-box {
        flex: 0 0 calc(50% - 10px); /* 2 boxes per row */
        max-width: calc(50% - 10px);
        min-height: 80px;
        padding: 10px;
    }
    
    .partners-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .partner-logo {
        height: 45px;
        padding: 6px;
    }
    
    .partners-header .header-divider {
        width: 70px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 24px;
    }
    
    .partner-box {
        flex: 0 0 calc(50% - 8px); /* 2 boxes per row */
        max-width: calc(50% - 8px);
        min-height: 70px;
        padding: 8px;
    }
    
    .partners-row {
        gap: 8px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    
    .partner-logo {
        height: 40px;
        padding: 5px;
    }
    
    .partners-header .header-divider {
        width: 60px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .partner-box {
        flex: 0 0 100%; /* 1 box per row on very small screens */
        max-width: 100%;
        min-height: 65px;
    }
    
    .partners-row-center .partner-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .partners-header h2 {
        font-size: 22px;
    }
}



/* Image & Text Section */
.image-text-section {
    padding: 80px 0;
    background-color: black;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}


.text-content {
    padding-left: 30px;
}

.section-description {
    font-size: 18px;
    color: whitesmoke;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-description {
        font-size: 17px;
    }
    
    .text-content {
        padding-left: 25px;
    }
    
    .image-container {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .image-text-section {
        padding: 60px 0;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .text-content {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .image-container {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .image-text-section {
        padding: 50px 0;
    }
    
    .section-description {
        font-size: 15px;
        text-align: center;
    }
    
    .text-content {
        padding-top: 15px;
    }
    
    .image-container {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .image-text-section {
        padding: 40px 0;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .image-container {
        max-width: 300px;
    }
}


/* Footer Section */
.footer-section {
    background: black;
    padding: 60px 0 30px;
    position: relative;
}

.footer-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ffd700);
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section-group {
    text-align: left;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: whitesmoke;
    margin-bottom: 15px;
    text-align: left;
    
}

.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.footer-links-horizontal a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-links-horizontal a:hover {
    color: #ff8c00;
    transform: translateY(-2px);
}

/* Full Horizontal Contact Info */
.contact-info-full-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.contact-item-horizontal {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-item-horizontal:hover {
    color: #ff8c00;
    transform: translateY(-2px);
}

.contact-item-horizontal i {
    color: whitesmoke;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.contact-social-horizontal {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-contact-link:hover {
    background: #ff8c00;
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-top: 30px;
}

.copyright p {
    color: #e0e0e0;
    font-size: 12px;
    margin: 0;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-full-horizontal {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding: 50px 0 25px;
    }
    
    .footer-divider {
        margin-bottom: 40px;
    }
    
    .footer-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .footer-links-horizontal {
        gap: 20px;
    }
    
    .footer-links-horizontal a {
        font-size: 13px;
    }
    
    .contact-info-full-horizontal {
        gap: 20px;
    }
    
    .contact-item-horizontal {
        font-size: 13px;
    }
    
    .contact-social-horizontal {
        gap: 10px;
    }
    
    .social-contact-link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-divider {
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .footer-links-horizontal {
        justify-content: center;
        gap: 15px;
    }
    
    .contact-info-full-horizontal {
        justify-content: center;
        gap: 15px;
    }
    
    .contact-social-horizontal {
        justify-content: center;
        gap: 8px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-divider {
        margin-bottom: 25px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .footer-links-horizontal {
        gap: 12px;
        justify-content: center;
    }
    
    .footer-links-horizontal a {
        font-size: 12px;
    }
    
    .contact-info-full-horizontal {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item-horizontal {
        font-size: 12px;
    }
    
    .contact-social-horizontal {
        gap: 8px;
    }
    
    .social-contact-link {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .copyright {
        padding-top: 20px;
        margin-top: 25px;
    }
    
    .copyright p {
        font-size: 11px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .footer-links-horizontal {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links-horizontal a {
        white-space: normal;
        text-align: center;
    }
    
    .contact-info-full-horizontal {
        gap: 10px;
    }
}

    /* Terms Section */
.terms-section {
    background: #000;
    padding: 80px 0;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-title {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-divider {
    width: 100px;
    height: 3px;
    background: #ff8c00;
    margin: 0 auto;
    border-radius: 2px;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.term-box {
    background: #111;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.term-box:hover {
    transform: translateY(-3px);
    border: 1px solid #ff8c00;
}

.term-subtitle {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    padding-bottom: 8px;
}

.term-subheading {
    font-size: 1.2rem;
    color: #ffd700;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.term-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.term-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .term-box {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 50px 0;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .term-box {
        padding: 20px;
    }
    
    .term-subtitle {
        font-size: 1.3rem;
    }
    
    .term-subheading {
        font-size: 1.1rem;
    }
    
    .term-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-title {
        font-size: 1.8rem;
    }
    
    .term-box {
        padding: 18px;
    }
    
    .term-subtitle {
        font-size: 1.2rem;
    }
    
    .term-subheading {
        font-size: 1rem;
    }
    
    .term-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 1.6rem;
    }
    
    .term-box {
        padding: 15px;
    }
    
    .term-box p {
        font-size: 0.85rem;
    }
}

/* Mining Journey Section */
    .mining-journey-section {
        padding: 80px 0;
        background-color: #000;
        text-align: center;
    }
    
    .journey-content {
        max-width: 800px;
        margin: 0 auto 50px;
    }
    
    .journey-title {
        font-size: 42px;
        font-weight: bold;
        color: #ff8c00;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .journey-description {
        font-size: 20px;
        color: #e0e0e0;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .journey-subtext {
        font-size: 18px;
        color: #ff8c00;
        line-height: 1.6;
        font-weight: 500;
        opacity: 0.9;
    }
    
    .journey-image-container {
        max-width: 600px;
        margin: 0 auto;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 10px;

    }
    
    .journey-image {
        width: 100%;
        height: auto;

    }


     
        .vip-section {
            width: 100%;
            padding: 50px 20px;
            text-align: center;
            background: #111;
        }
        
        .vip-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
            color: #ff8c00;
            letter-spacing: 1.1px;
        }
        
        .vip-benefits {
            font-size: 24px;
            line-height: 1.6;
            color: #e0e0ff;
            max-width: 800px;
            margin: 0 auto;
            padding: 25px;
        }
        
        .vip-highlight {
            color: #ffd700;
            font-weight: 700;
        }
        
        .vip-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #1a3658;
            font-weight: bold;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 20px;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
        }
        
        @media (max-width: 768px) {
            .vip-title {
                font-size: 32px;
            }
            
            .vip-benefits {
                font-size: 20px;
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .vip-title {
                font-size: 28px;
            }
            
            .vip-benefits {
                font-size: 18px;
            }
        }

        .special-notes-container {
    margin: 30px 0;
    width: 100%;
}

.special-notes-box {
    border-left: 5px solid #ff8c00;
    border-radius: 10px;
    padding: 20px;
    width: 98%;
    margin-left: 1%;
    text-align: left;
    background-color: #111;
}

.notes-title {
    color: #ff8c00;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 8px;
}

.notes-list {
    color: #e0e0e0;
    padding-left: 20px;
    margin: 0;
}

.notes-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .special-notes-box {
        width: 96%;
        margin-left: 2%;
        padding: 15px;
    }
}

 .table-container {
            width: 100%;
            max-width: 1200px;
            overflow-x: auto;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }
        
        .vip-table {
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
            background: #111;
            margin: 0 auto;
            width: 100%;
        }
        
        .vip-table caption {
            font-size: 36px;
            font-weight: 700;
            color: #ff8c00;
            padding: 25px;
            letter-spacing: 1px;
            caption-side: top;
        }
        
        .vip-table thead {
            background: #111;
            color: #ffd700;
        }
        
        .vip-table th {
            padding: 20px 25px;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
        }
        
        .vip-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background-color 0.3s;
        }
        
        .vip-table tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .vip-table tbody tr:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        
        .vip-table td {
            padding: 18px 25px;
            text-align: center;
            font-size: 18px;
        }
        
        .vip-level {
            font-weight: 700;
            color: #ffd700;
        }
        
        .investment {
            color: whitesmoke;
            font-weight: 600;
        }
        
        .rate-bonus {
            color: #ffd700;
            font-weight: 600;
        }
        
        .cash-reward {
            color: #ff9500;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .vip-table caption {
                font-size: 28px;
            }
            
            .vip-table th, .vip-table td {
                padding: 15px 18px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .vip-table caption {
                font-size: 24px;
            }
            
            .vip-table th, .vip-table td {
                padding: 12px 15px;
                font-size: 14px;
            }
        }


        .cards-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.vip-card {
    background: #111;
    border: 1px solid #ff8c00;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding-top: 15px;
}

.vip-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.card-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff8c00;
    font-size: 20px;
    z-index: 1;
}

.card-body {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-left: 60px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .cards-section {
        padding: 2rem 0;
    }
    
    .vip-card {
        padding-top: 12px;
    }
    
    .card-icon {
        top: 12px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .card-body {
        margin-left: 55px;
        padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .vip-card {
        padding-top: 10px;
    }
    
    .card-icon {
        top: 10px;
        left: 12px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .card-body {
        margin-left: 50px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.revenue-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.revenue-box {
    background: #111;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.revenue-title {
    color: #ff8c00;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 2rem;
}

.revenue-content {
    text-align: left;
}

.user-path {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.investment-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--gold-color);
}

.step-number {
    background: #ff8c00;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    color: var(--text-color);
    line-height: 1.6;
}

.step-content strong {
    color: var(--gold-color);
    font-size: 1.1rem;
}

.highlight {
    color: rgb(170, 164, 164);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .revenue-box {
        padding: 2rem;
        margin: 1rem;
    }
    
    .revenue-title {
        font-size: 1.7rem;
    }
    
    .investment-step {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 1.25rem;
    }
    
    .step-content strong {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .revenue-box {
        padding: 1.5rem;
    }
    
    .revenue-title {
        font-size: 1.5rem;
    }
    
    .user-path {
        font-size: 1.1rem;
    }
    
    .investment-step {
        flex-direction: column;
        padding: 1rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-content {
        width: 100%;
    }
}

.language-selector {
        position: relative;
        display: inline-block;
    }
    
    .world-icon {
        background: transparent;
        width: 40px;
        height: 40px;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
        color: #ff8c00;
    }
    
    .world-icon:hover {
        
        transform: scale(1.05);
    }
    
    .language-dropdown {
        position: absolute;
        top: 50px;
        right: 0;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        width: 220px;
        padding: 10px;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .language-dropdown.show {
        opacity: 1;
        visibility: visible;
        top: 55px;
    }
    
    .language-dropdown::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 15px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
    }
    
    .language-option {
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.2s ease;
        margin-bottom: 5px;
    }
    
    .language-option:hover {
        background-color: #f1f3f5;
    }
    
    .language-option:last-child {
        margin-bottom: 0;
    }
    
    .flag {
        width: 24px;
        height: 16px;
        border-radius: 2px;
        margin-right: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        object-fit: cover;
    }
    
    .language-name {
        font-weight: 500;
        color: #333;
        flex-grow: 1;
        text-align: left;
        font-size: 0.9rem;
    }
    
    .language-code {
        color: #4dabf7;
        font-weight: 600;
        font-size: 0.8rem;
    }
    
    /* Mobile specific styles */
    .mobile-language .language-dropdown {
        right: -10px;
    }
    
    .mobile-language .language-dropdown::before {
        right: 25px;

    }









