/* CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'poppins', sans-serif;
      background: linear-gradient(to right, #56ccf2, #ffffff);
  }
  
  /* Header Styles */
  header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ini yang menyelaraskan vertikal */
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #2563eb; /* Warna biru seperti gambar */
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 9999px; /* Biar tombolnya oval */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'poppins', sans-serif;
  }
  
  .dropbtn:hover {
    background-color: #1e40af; /* Biru lebih gelap saat hover */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Logo Styles */
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  .highlightlogo{
    color: #007bff;
  }
  
  /* Navigation Styles */
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  nav li {
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 100%;
  }
  
  nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  /* Button Styles */
  .contact-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 40px;
  }
  
  .contact-btn:hover {
    background-color: #0069d9;
  }
  /* Crypto Article Container */
        .crypto-article {
            max-width: 1200px;
            margin: 40px auto;
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
        }

        /* Glowing Header */
        .crypto-header {
            background: linear-gradient(135deg, #4b6cb7, #182848);
            color: white;
            padding: 70px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .crypto-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(86,204,242,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite linear;
        }

        @keyframes pulse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .crypto-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 0 0 15px rgba(86,204,242,0.5);
        }

        .crypto-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        /* Content Sections */
        .crypto-content {
            padding: 50px;
        }

        .crypto-section {
            margin-bottom: 50px;
            position: relative;
        }

        .crypto-section h2 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }

        .crypto-section h2 i {
            margin-right: 15px;
            color: #4b6cb7;
            font-size: 1.8rem;
        }

        .crypto-section p {
            margin-bottom: 25px;
            color: #34495e;
            font-size: 1.1rem;
        }

        /* Crypto Cards */
        .crypto-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,245,245,0.9));
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(75,108,183,0.2);
        }

        .crypto-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .crypto-card h3 i {
            margin-right: 12px;
            color: #e74c3c;
        }

        /* Price Ticker Animation */
        .price-ticker {
            display: inline-block;
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 20px;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: #27ae60;
            margin: 10px 0;
            animation: pulse 2s infinite;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .comparison-table th {
            background-color: #4b6cb7;
            color: white;
        }

        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
/* Opinion Grid */

.opini-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
}

.opini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.opini-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 350px;
}

.opini-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.opini-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 30px 20px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.opini-card:hover .opini-overlay {
  opacity: 1;
  transform: translateY(0);
}

.opini-card:hover .opini-image {
  transform: scale(1.05);
}

.opini-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.opini-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
     /* ===== FOOTER STYLES ===== */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 60px;
  }
  
  .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .footer-logo .highlight {
    color: #3498db;
  }
  
  .footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ecf0f1;
  }
  
  .footer-links h3, 
  .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .contact-icon {
    color: #3498db;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer {
      padding: 40px 0 20px;
    }
    
    .footer-col {
      flex: 100%;
      margin-bottom: 30px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
      margin-bottom: 15px;
    }
  }
  /* ===== FOOTER STYLES ===== */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 60px;
  }
  
  .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .footer-logo .highlight {
    color: #3498db;
  }
  
  .footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ecf0f1;
  }
  
  .footer-links h3, 
  .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .contact-icon {
    color: #3498db;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  
  .social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer {
      padding: 40px 0 20px;
    }
    
    .footer-col {
      flex: 100%;
      margin-bottom: 30px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
      margin-bottom: 15px;
    }
  }