 :root {
      --glass-bg: rgba(30, 30, 40, 0.75);
      --glass-border: rgba(255, 255, 255, 0.1);
      --text-primary: #e2e8f0;
      --text-secondary: #94a3b8;
      --accent-green: #10b981;
      --accent-red: #ef4444;
      --accent-blue: #3b82f6;
      --accent-yellow: #fbbf24;
      --accent-purple: #8b5cf6;
      --bg-dark: #0f0f1a;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg-dark);
      color: var(--text-primary);
      margin: 0;
      line-height: 1.6;
      background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
      min-height: 100vh;
      transition: all 0.4s ease;
    }

    /* Glassmorphism Card */
    .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }
    .glass-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
      border-color: rgba(16, 185, 129, 0.3);
    }

    /* Ticker */
    .ticker {
      background: linear-gradient(90deg, #1a3a2a, #10b981);
      color: #ffffff;
      padding: 0.5rem;
      font-size: 1rem;
      text-align: center;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 150;
      white-space: nowrap;
      overflow: hidden;
      display: flex;
      align-items: center;
      height: 2.25rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .ticker marquee {
      width: 100%;
      line-height: 1;
    }

    /* Navbar */
    .navbar {
      background: rgba(20, 20, 30, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
      position: fixed;
      top: 2.25rem;
      width: 100%;
      z-index: 100;
      min-height: 3.75rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
    }
    .nav-menu {
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    .burger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--accent-green);
    }
    .logo {
      display: flex;
      align-items: center;
      height: 100%;
    }
    .nav-links a {
      color: var(--text-primary);
      transition: all 0.3s ease;
    }
    .nav-links a:hover {
      color: var(--accent-green);
      text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    }

    /* Gradient Header */
    .gradient-header {
      background: linear-gradient(90deg, #10b981, #059669);
      color: white;
      padding: 0.75rem;
      border-radius: 1rem 1rem 0 0;
      margin: -1.5rem -1.5rem 1.5rem -1.5rem;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    /* Table */
    .table-container {
      overflow-x: auto;
      border-radius: 1rem;
      background: transparent;
    }
    .table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: transparent;
    }
    .table th {
      background: rgba(40, 40, 55, 0.9);
      color: #e2e8f0;
      font-weight: 600;
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 10;
      text-align: center;
      text-transform: uppercase;
      font-size: 0.875rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 1px solid var(--glass-border);
    }
    .table th:hover {
      background: rgba(16, 185, 129, 0.6);
    }
    .table th.sortable::after {
      content: 'up-down';
      margin-left: 0.5rem;
      font-size: 0.75rem;
    }
    .table th.sort-asc::after { content: 'up'; }
    .table th.sort-desc::after { content: 'down'; }
    .table td {
      padding: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.9rem;
      color: var(--text-primary);
      text-align: center;
      transition: all 0.2s ease;
    }
    .table tr:nth-child(even) {
      background: rgba(40, 40, 50, 0.3);
    }
    .table tr:hover {
      background: rgba(16, 185, 129, 0.15);
    }

    /* Mini Chart */
    .mini-chart-container {
      position: relative;
      height: 60px;
      width: 120px;
      margin: 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
      background: rgba(40, 40, 50, 0.3);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    /* Buttons - Neon Gradient */
    .btn-primary {
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    }

    .btn-danger {
      background: linear-gradient(135deg, #ef4444, #dc2626);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    .btn-danger:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    }

    .btn-unlock {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: #1f2937;
      padding: 0.6rem 1.2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }
    .btn-unlock:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
    }

    .btn-detail {
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    .btn-detail:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    }

    .btn-toggle {
      background: rgba(50, 50, 70, 0.8);
      color: var(--text-primary);
      padding: 0.5rem 1rem;
      border-radius: 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid var(--glass-border);
    }
    .btn-toggle:hover {
      background: var(--accent-green);
      color: white;
      transform: scale(1.05);
    }
    .btn-toggle.active {
      background: var(--accent-green);
      color: white;
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
    }
    .modal-content {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      margin: 5% auto;
      padding: 2rem;
      border-radius: 1.5rem;
      max-width: 90%;
      max-height: 85vh;
      overflow-y: auto;
      border: 1px solid var(--glass-border);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      position: relative;
    }
    .modal-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }
    .modal-content .close {
      position: absolute;
      top: 1rem; right: 1rem;
      background: var(--accent-red);
      color: white;
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .modal-content .close:hover {
      background: #dc2626;
      transform: rotate(90deg) scale(1.1);
    }

    /* Modal Table */
    .modal-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }
    .modal-table th {
      background: rgba(40, 40, 55, 0.9);
      color: #e2e8f0;
      font-weight: 600;
      padding: 0.75rem;
      text-transform: uppercase;
      font-size: 0.875rem;
      text-align: center;
    }
    .modal-table td {
      padding: 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 0.875rem;
      text-align: center;
    }
    .modal-table tr:nth-child(even) {
      background: rgba(40, 40, 50, 0.3);
    }
    .modal-table tr:hover {
      background: rgba(16, 185, 129, 0.15);
    }

    /* Modal Card */
    .modal-card {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      padding: 0.75rem;
      margin-bottom: 1rem;
      background: rgba(40, 40, 50, 0.3);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .modal-card-item {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 0;
      font-size: 0.875rem;
      color: var(--text-primary);
    }
    .modal-card-item span:first-child {
      font-weight: 600;
      color: var(--text-secondary);
      width: 60%;
      text-align: left;
      text-transform: uppercase;
    }
    .modal-card-item span:last-child {
      width: 40%;
      text-align: right;
    }

    /* Summary */
    .summary-items {
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      background: rgba(40, 40, 50, 0.3);
    }
    .summary-item {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 0;
      position: relative;
    }
    .summary-item span:first-child {
      color: var(--text-secondary);
      width: 70%;
    }
    .summary-item span:last-child {
      color: var(--text-primary);
      width: 30%;
    }
    .summary-item::after {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.1);
      z-index: -1;
    }
    .profit-loss.positive { color: var(--accent-green); }
    .profit-loss.negative { color: var(--accent-red); }

    /* Chart */
    .chart-container {
      position: relative;
      height: 300px;
      margin-bottom: 1.5rem;
    }

    /* Social Icons */
    .social-icons-container {
      position: fixed;
      left: 1.5rem;
      bottom: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 200;
    }
    .social-icon {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: white;
      width: 3.5rem; height: 3.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      border: 1px solid var(--glass-border);
    }
    .social-icon:hover {
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    .social-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
    .social-icon.telegram { background: linear-gradient(135deg, #0088CC, #006699); }
    .social-icon.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
    .social-icon.instagram { background: linear-gradient(135deg, #E1306C, #C13584); }

    /* Logo */
    .circle-9x {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3.5rem;
      height: 3.5rem;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      border-radius: 50%;
      font-weight: bold;
      margin-right: 0.3rem;
      animation: pulse 2s ease-in-out infinite;
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
    .x-highlight {
      font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
    }
    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
      50% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    /* Live Transactions */
    .live-transactions-container {
      max-height: 200px;
      overflow: hidden;
      position: relative;
      border-radius: 1rem;
      background: rgba(40, 40, 50, 0.3);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .live-transactions-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    .live-transactions-table th,
    .live-transactions-table td {
      padding: 8px 12px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .live-transactions-table th {
      background: rgba(40, 40, 55, 0.9);
      color: #e2e8f0;
      font-weight: 600;
    }
    .live-transactions-table .deposit { color: var(--accent-green); }
    .live-transactions-table .withdrawal { color: var(--accent-red); }
    .scroll-container {
      display: flex;
      flex-direction: column;
      animation: scroll 20s linear infinite;
    }
    .scroll-container.paused { animation-play-state: paused; }
    @keyframes scroll {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    /* Profit Calculator */
    .profit-calculator-container input,
    .profit-calculator-container select {
      background: rgba(40, 40, 50, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
      padding: 0.5rem;
      color: var(--text-primary);
    }
    .profit-calculator-container input:focus,
    .profit-calculator-container select:focus {
      outline: none;
      border-color: var(--accent-green);
      box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    }
    .profit-calculator-container button {
      background: var(--accent-green);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .profit-calculator-container button:hover {
      background: #059669;
    }
    .profit-calculator-container .clear-button {
      background: var(--accent-red);
    }
    .profit-calculator-container .clear-button:hover {
      background: #dc2626;
    }

    /* Community Buttons */
    .community-social-button {
      width: 3rem; height: 3rem;
      border-radius: 50%;
      font-size: 1.5rem;
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .community-social-button:hover {
      transform: scale(1.1);
    }
    .community-social-button.telegram { background: linear-gradient(135deg, #0088CC, #006699); }
    .community-social-button.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
    .community-social-button.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
    .community-social-button.instagram { background: linear-gradient(135deg, #E1306C, #C13584); }

    /* Responsive */
    @media (max-width: 768px) {
      .table { display: block; }
      .table thead { display: none; }
      .table tbody, .table tr, .table td { display: block; width: 100%; }
      .table tr { margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 0.5rem; background: rgba(40,40,50,0.3); }
      .table td { display: flex; justify-content: space-between; padding: 0.5rem; border: none; }
      .table td::before { content: attr(data-label); font-weight: 600; color: var(--text-secondary); width: 40%; text-transform: uppercase; }
      .mini-chart-container { height: 50px; width: 100%; max-width: 150px; }
      .btn-detail { width: 100%; justify-content: center; }
    }
    @media (max-width: 640px) {
      .ticker { font-size: 0.875rem; height: 2rem; }
      .navbar { top: 2rem; min-height: 3rem; }
      .burger { display: block; }
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(20,20,30,0.95); backdrop-filter: blur(12px); flex-direction: column; padding: 1rem; }
      .nav-links.active { display: flex; }
      .glass-card { padding: 1rem; }
      .btn-primary, .btn-danger, .btn-unlock, .btn-detail { padding: 0.5rem 1rem; font-size: 0.9rem; }
    }
    
  .coin-green-container { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.coin-ring-outer { position: absolute; width: 100%; height: 100%; border: 12px solid transparent; border-top: 12px solid #10b981; border-right: 12px solid #059669; border-bottom: 12px solid #047857; border-left: 12px solid #065f46; border-radius: 50%; animation: rotateRing 4s linear infinite; box-shadow: 0 0 30px rgba(16,185,129,0.6); }
.coin-ring-inner { position: absolute; inset: 15px; border: 6px dashed #10b981; border-radius: 50%; animation: rotateRing 6s linear infinite reverse; }
.coin-center { position: relative; width: 140px; height: 140px; background: radial-gradient(circle, #065f46, #047857, #059669, #10b981); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 30px rgba(0,0,0,0.4), 0 0 40px rgba(16,185,129,0.8), 0 10px 20px rgba(0,0,0,0.5); z-index: 2; }
.coin-9xc { font-weight: 900; font-size: 3.2rem; color: white; text-shadow: 0 3px 6px rgba(0,0,0,0.5); letter-spacing: -3px; background: linear-gradient(135deg, #fff, #e0e0e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.coin-glow-green { position: absolute; top: 50%; left: 50%; width: 160%; height: 160%; background: radial-gradient(circle, rgba(16,185,129,0.5) 0%, transparent 70%); filter: blur(30px); transform: translate(-50%, -50%); animation: pulseGreen 2s ease-in-out infinite alternate; z-index: 1; }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseGreen { from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } to { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
.coin-green-container:hover .coin-ring-outer { animation-duration: 1s; }  
    