<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
====================================================================
== SEO & METADATA
== Generated based on Input Data B (SEO & Audience)
====================================================================
-->
<!-- Primary Meta Tags -->
<title>Hyperliquid Info | On-Chain Perpetual Futures Exchange | Airdrop Guide</title>
<meta name="title" content="Hyperliquid Info | On-Chain Perpetual Futures Exchange | Airdrop Guide">
<meta name="description" content="Your premier hub for Hyperliquid. Get comprehensive guides on trading, features, login procedures, and the upcoming Hyperliquid airdrop. Trade with high-speed, self-custody on a fully on-chain DEX.">
<meta name="keywords" content="hyperliquid, hyperliquid exchange, hyperliquid info, hyperliquid info-hyper-sites at, hyperliquid xyz, hyperliquid login, hyperliquid crypto, hyperliquid coin, hyperliquid price, hyperliquid airdrop, hyperliquid trading, decentralized perpetuals, DeFi, crypto derivatives">
<!-- Canonical URL -->
<link rel="canonical" href="https://t.co/">
<!-- Open Graph / Facebook (for social sharing) -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://t.co/">
<meta property="og:title" content="Hyperliquid Info | On-Chain Perpetual Futures Exchange | Airdrop Guide">
<meta property="og:description" content="Your premier hub for Hyperliquid. Get comprehensive guides on trading, features, login procedures, and the upcoming Hyperliquid airdrop.">
<!-- Cập nhật hình ảnh social media với chủ đề trading mới -->
<meta property="og:image" content="https://images.unsplash.com/photo-1640340434855-6084b1f49c1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&h=630&q=80">
<!-- Twitter Card (for social sharing) -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://t.co/">
<meta property="twitter:title" content="Hyperliquid Info | On-Chain Perpetual Futures Exchange | Airdrop Guide">
<meta property="twitter:description" content="Your premier hub for Hyperliquid. Get comprehensive guides on trading, features, login procedures, and the upcoming Hyperliquid airdrop.">
<!-- Cập nhật hình ảnh social media với chủ đề trading mới -->
<meta property="twitter:image" content="https://images.unsplash.com/photo-1640340434855-6084b1f49c1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&h=630&q=80">
<!-- Favicon -->
<link rel="icon" href="https://placehold.co/32x32/3b82f6/FFFFFF?text=H&font=inter" type="image/png">
<!--
====================================================================
== STYLES & FONTS
== Font Awesome 6, Google Font (Inter), and all custom CSS
====================================================================
-->
<!-- Font Awesome 6 (for icons) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" xintegrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<!-- Google Font: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap" rel="stylesheet">
<style>
/* ====================================================================
== CSS STYLESHEET
== 1. CSS Variables & Root
== 2. Base & Reset
== 3. Utility Classes (Container, Buttons)
== 4. Header & Navigation
== 5. Section: Hero (#home)
== 6. Section: Trust Bar
== 7. Section: Generic Card Layouts (About, Services, Features)
== 8. Section: Fees (#fees)
== 9. Section: How It Works (#how-it-works)
== 10. Section: Promo (#promo)
== 11. Section: Testimonials & News
== 12. Section: FAQ (#faq)
== 13. Section: Final CTA
== 14. Footer
== 15. Sticky Banner
== 16. Responsive (Mobile)
====================================================================
*/
/* 1. CSS Variables & Root */
:root {
/* Inferred Brand Colors for a professional, dark crypto theme */
--color-bg-dark: #0a0e1a; /* Deep, dark blue/purple */
--color-bg-medium: #12182b; /* Slightly lighter for cards */
--color-bg-light: #1f2937; /* Lighter still for accents */
--color-primary: #3b82f6; /* Bright, trustworthy blue for CTAs */
--color-primary-hover: #2563eb; /* Darker hover for primary */
--color-secondary: #818cf8; /* Softer purple/blue for highlights */
--color-text-light: #e0e0e0; /* Main body text */
--color-text-medium: #9ca3af; /* Subheadings, subtext */
--color-text-heading: #ffffff; /* Main headings */
--color-white: #ffffff;
--color-black: #000000;
--color-border: #374151; /* Borders for cards, inputs */
}
/* 2. Base & Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--color-bg-dark);
color: var(--color-text-light);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
color: var(--color-text-heading);
margin-bottom: 1rem;
font-weight: 700;
line-height: 1.3;
}
h1 { font-size: 2.8rem; font-weight: 900; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p {
margin-bottom: 1rem;
color: var(--color-text-medium);
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--color-secondary);
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
display: block;
border-radius: 8px;
}
ul, ol {
list-style: none;
}
section {
padding: 60px 0;
border-bottom: 1px solid var(--color-border);
}
/* 3. Utility Classes (Container, Buttons) */
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.text-center {
text-align: center;
}
.section-header {
max-width: 700px;
margin: 0 auto 40px auto;
text-align: center;
}
.section-header h2 {
margin-bottom: 0.5rem;
}
.section-header p {
font-size: 1.1rem;
}
.cta-button {
display: inline-block;
background-color: var(--color-primary);
color: var(--color-white);
font-weight: 600;
padding: 14px 28px;
border-radius: 8px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
border: none;
cursor: pointer;
}
.cta-button:hover,
.cta-button:focus {
background-color: var(--color-primary-hover);
color: var(--color-white);
transform: translateY(-2px);
text-decoration: none;
box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.cta-button:active {
transform: translateY(0);
}
.secondary-button {
display: inline-block;
background-color: transparent;
color: var(--color-white);
font-weight: 600;
padding: 14px 28px;
border-radius: 8px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
border: 2px solid var(--color-primary);
cursor: pointer;
}
.secondary-button:hover,
.secondary-button:focus {
background-color: var(--color-primary);
color: var(--color-white);
text-decoration: none;
transform: translateY(-2px);
}
/* 4. Header & Navigation */
.site-header {
background-color: var(--color-bg-dark);
padding: 1.2rem 0;
border-bottom: 1px solid var(--color-border);
position: sticky;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo a {
font-size: 1.5rem;
font-weight: 900;
color: var(--color-text-heading);
text-decoration: none;
}
.logo a i {
color: var(--color-primary);
margin-right: 8px;
}
.main-nav {
display: flex;
align-items: center;
}
.nav-links {
display: flex;
align-items: center;
list-style: none;
margin-right: 2rem;
}
.nav-links li {
margin: 0 1rem;
}
.nav-links a {
font-weight: 500;
color: var(--color-text-medium);
text-decoration: none;
transition: color 0.3s ease;
padding: 5px 0;
}
.nav-links a:hover,
.nav-links a:focus {
color: var(--color-white);
text-decoration: none;
}
.header-signup {
padding: 10px 20px;
font-size: 0.9rem;
}
/* Ẩn nút "Start Trading" bên trong nav-links (dành cho mobile) trên desktop */
.nav-links li .header-signup {
display: none;
}
.hamburger {
display: none;
font-size: 1.8rem;
color: var(--color-white);
background: none;
border: none;
cursor: pointer;
z-index: 1002;
}
.mobile-nav-bg {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 998;
}
/* 5. Section: Hero (#home) */
#home {
padding: 80px 0;
background-color: var(--color-bg-dark);
border-bottom: none;
}
#home .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.hero-content {
flex: 1;
max-width: 600px;
}
.hero-content .subtitle {
font-size: 1rem;
font-weight: 600;
color: var(--color-secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 0.5rem;
}
.hero-content h1 {
color: var(--color-text-heading);
margin-bottom: 1.5rem;
}
.hero-content p {
font-size: 1.15rem;
color: var(--color-text-medium);
margin-bottom: 2rem;
}
.hero-cta {
display: flex;
gap: 1rem;
}
.hero-image {
flex: 1;
max-width: 600px;
}
.hero-image img {
border: 1px solid var(--color-border);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* 6. Section: Trust Bar */
.trust-bar {
background-color: var(--color-bg-medium);
padding: 30px 0;
border-bottom: 1px solid var(--color-border);
}
.trust-bar .container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: 1.5rem;
}
.trust-item {
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--color-text-medium);
font-weight: 600;
}
.trust-item i {
color: var(--color-secondary);
font-size: 1.5rem;
}
/* 7. Section: Generic Card Layouts (About, Services, Features, Security) */
#about .container {
display: flex;
align-items: center;
gap: 3rem;
}
#about .about-content,
#about .about-image {
flex: 1;
}
#about .about-image img {
border: 1px solid var(--color-border);
}
.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.grid-4 {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.card {
background-color: var(--color-bg-medium);
padding: 2rem;
border-radius: 12px;
border: 1px solid var(--color-border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.card .icon {
font-size: 2.5rem;
color: var(--color-primary);
margin-bottom: 1rem;
display: inline-block;
background-color: var(--color-bg-light);
padding: 1rem;
border-radius: 50%;
width: 80px;
height: 80px;
line-height: 50px; /* Aligns icon */
text-align: center;
}
.card h3 {
color: var(--color-text-heading);
margin-bottom: 0.5rem;
}
.card p {
color: var(--color-text-medium);
margin-bottom: 0;
}
/* 8. Section: Fees (#fees) */
.fees-table {
background-color: var(--color-bg-medium);
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--color-border);
max-width: 800px;
margin: 2rem auto 0 auto;
}
.fees-table table {
width: 100%;
border-collapse: collapse;
text-align: left;
}
.fees-table th,
.fees-table td {
padding: 1.25rem 1.5rem;
border-bottom: 1px solid var(--color-border);
}
.fees-table th {
background-color: var(--color-bg-light);
color: var(--color-text-heading);
font-weight: 600;
}
.fees-table td {
color: var(--color-text-light);
}
.fees-table tr:last-child td {
border-bottom: none;
}
/* 9. Section: How It Works (#how-it-works) */
#how-it-works {
background-color: var(--color-bg-medium);
}
.steps-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
position: relative;
}
/* Dashed line connector */
.steps-container::before {
content: '';
position: absolute;
top: 60px; /* Align with center of step-number */
left: 10%;
width: 80%;
height: 2px;
background: repeating-linear-gradient(
90deg,
var(--color-border),
var(--color-border) 6px,
transparent 6px,
transparent 12px
);
z-index: 0;
}
.step-card {
background-color: var(--color-bg-dark);
padding: 2rem;
border-radius: 12px;
border: 1px solid var(--color-border);
text-align: center;
z-index: 1;
}
.step-number {
width: 120px;
height: 120px;
margin: 0 auto 1.5rem auto;
background-color: var(--color-bg-medium);
border: 2px solid var(--color-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
font-weight: 900;
color: var(--color-primary);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.step-card .cta-button {
margin-top: 1rem;
}
/* 10. Section: Promo (#promo) */
#promo {
background: linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
url('https://placehold.co/1600x600/1f2937/0a0e1a?text=Airdrop+Vibes') center center/cover no-repeat fixed;
text-align: center;
}
.promo-content {
max-width: 700px;
margin: 0 auto;
background-color: rgba(18, 24, 43, 0.9);
padding: 2.5rem;
border-radius: 12px;
border: 1px solid var(--color-border);
}
.promo-content h2 {
color: var(--color-white);
}
.promo-content p {
font-size: 1.1rem;
color: var(--color-text-light);
}
.promo-code-box {
display: inline-block;
background-color: var(--color-bg-dark);
border: 2px dashed var(--color-border);
padding: 1rem 2rem;
margin: 1.5rem 0;
border-radius: 8px;
}
.promo-code-box span {
font-size: 1.2rem;
font-weight: 600;
color: var(--color-text-medium);
}
/* 11. Section: Testimonials & News */
.testimonial-card {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--color-border);
}
.testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
}
.testimonial-author-info h4 {
margin-bottom: 0.2rem;
color: var(--color-white);
}
.testimonial-author-info span {
color: var(--color-text-medium);
font-size: 0.9rem;
}
.news-card {
display: flex;
flex-direction: column;
}
.news-card img {
border-radius: 8px 8px 0 0;
aspect-ratio: 16 / 9;
object-fit: cover;
}
.news-card-content {
padding: 1.5rem;
}
.news-card-content .meta {
font-size: 0.9rem;
color: var(--color-text-medium);
margin-bottom: 0.5rem;
}
.news-card-content h3 {
margin-bottom: 1rem;
}
.news-card-content a {
font-weight: 600;
}
/* 12. Section: FAQ (#faq) */
.faq-container {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background-color: var(--color-bg-medium);
border: 1px solid var(--color-border);
border-radius: 8px;
margin-bottom: 10px;
overflow: hidden;
}
.faq-item summary {
padding: 1.5rem;
font-weight: 600;
font-size: 1.1rem;
color: var(--color-text-heading);
cursor: pointer;
list-style: none; /* Remove default arrow */
position: relative;
user-select: none;
}
.faq-item summary::-webkit-details-marker {
display: none; /* Chrome */
}
.faq-item summary::after {
content: '\f067'; /* Font Awesome Plus */
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
right: 1.5rem;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
content: '\f068'; /* Font Awesome Minus */
transform: translateY(-50%) rotate(180deg);
}
.faq-content {
padding: 0 1.5rem 1.5rem 1.5rem;
color: var(--color-text-light);
border-top: 1px solid var(--color-border);
}
.faq-content p {
margin-bottom: 0;
color: var(--color-text-light);
}
.faq-content p + p {
margin-top: 1rem;
}
/* 13. Section: Final CTA */
.final-cta {
background-color: var(--color-bg-medium);
text-align: center;
}
.final-cta h2 {
color: var(--color-white);
}
.final-cta p {
max-width: 600px;
margin: 0 auto 2rem auto;
font-size: 1.1rem;
}
/* 14. Footer */
.site-footer {
background-color: var(--color-bg-medium);
color: var(--color-text-medium);
padding: 50px 0 20px 0;
border-bottom: none; /* No border for last section */
}
.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.footer-col h4 {
color: var(--color-white);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.footer-col .logo a {
font-size: 1.5rem;
margin-bottom: 1rem;
display: inline-block;
}
.footer-col p {
margin-bottom: 1rem;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
color: var(--color-text-medium);
text-decoration: none;
}
.footer-links a:hover {
color: var(--color-white);
text-decoration: underline;
}
.social-icons {
display: flex;
gap: 1rem;
}
.social-icons a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
background-color: var(--color-bg-light);
color: var(--color-text-medium);
text-align: center;
font-size: 1.1rem;
transition: background-color 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
background-color: var(--color-primary);
color: var(--color-white);
text-decoration: none;
}
.footer-bottom {
border-top: 1px solid var(--color-border);
padding-top: 2rem;
text-align: center;
font-size: 0.9rem;
}
.footer-bottom p {
margin: 0;
line-height: 1.5;
}
.footer-bottom .risk-warning {
margin-top: 1rem;
font-size: 0.85rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
/* Thêm CSS cho phần disclosure-warning */
.disclosure-warning {
background-color: var(--color-bg-light);
border: 1px solid var(--color-border);
padding: 1rem;
border-radius: 8px;
max-width: 900px;
margin: 0 auto 1.5rem auto; /* Căn giữa và thêm lề dưới */
font-size: 0.9rem;
line-height: 1.5;
color: var(--color-text-medium);
}
/* 15. Sticky Banner */
.sticky-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: var(--color-bg-light);
border-top: 1px solid var(--color-border);
padding: 1rem;
z-index: 999;
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.5s ease;
}
.sticky-banner.hidden {
transform: translateY(100%);
}
.sticky-banner p {
margin: 0;
color: var(--color-white);
font-weight: 500;
}
.sticky-banner .cta-button {
padding: 10px 20px;
font-size: 0.9rem;
white-space: nowrap;
}
.close-banner {
font-size: 1.5rem;
color: var(--color-text-medium);
background: none;
border: none;
cursor: pointer;
position: absolute;
right: 1.5rem;
top: 50%;
transform: translateY(-50%);
}
.close-banner:hover {
color: var(--color-white);
}
/* 16. Responsive (Mobile) */
@media (max-width: 1024px) {
.grid-4 {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
/* Mobile Navigation */
.main-nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: var(--color-bg-dark);
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateX(100%);
transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
z-index: 999;
}
.main-nav.nav-active {
transform: translateX(0);
}
.mobile-nav-bg.nav-active {
display: block;
}
.nav-links {
flex-direction: column;
margin: 0;
width: 100%;
text-align: center;
}
.nav-links li {
margin: 1.2rem 0;
}
.nav-links a {
font-size: 1.5rem;
color: var(--color-white);
}
/* Hiển thị nút "Start Trading" bên trong nav-links và ẩn nút desktop trên mobile */
.nav-links li .header-signup {
display: inline-block;
}
.desktop-cta {
display: none;
}
.header-signup {
font-size: 1.2rem;
padding: 14px 28px;
margin-top: 1.5rem;
}
.hamburger {
display: block;
}
/* Sections */
#home .container {
flex-direction: column;
text-align: center;
}
.hero-image {
margin-top: 2rem;
order: -1; /* Move image to top */
}
.hero-cta {
justify-content: center;
}
.trust-item {
flex-basis: 100%;
justify-content: center;
}
#about .container {
flex-direction: column;
}
.grid-3, .grid-4 {
grid-template-columns: 1fr;
}
.steps-container {
grid-template-columns: 1fr;
}
.steps-container::before {
display: none; /* Remove horizontal line on mobile */
}
.footer-grid {
grid-template-columns: 1fr;
text-align: center;
}
.social-icons {
justify-content: center;
}
.sticky-banner {
flex-direction: column;
gap: 1rem;
padding: 1.5rem 1rem 1rem 1rem;
text-align: center;
}
.close-banner {
top: 10px;
right: 15px;
transform: none;
}
}
</style>
<!--
====================================================================
== SCHEMA.ORG JSON-LD
== For SEO - based on Input Data
====================================================================
-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Hyperliquid Info",
"url": "https://t.co/",
"description": "To serve as a premier information hub for the Hyperliquid exchange, providing comprehensive guides on trading, features, login procedures, and details on the Hyperliquid airdrop.",
"keywords": "hyperliquid, hyperliquid exchange, hyperliquid airdrop, hyperliquid trading, hyperliquid login",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://t.co/search?q={search_term_string}"
},
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body>
<!--
====================================================================
== 1. HEADER
== Contains Logo, Navigation, CTA, and Mobile Hamburger
== Navigation links based on section IDs.
====================================================================
-->
<header class="site-header">
<div class="container">
<div class="logo" role="banner">
<a href="/" title="Hyperliquid Info Homepage">
Hyperliquid
</a>
</div>
<!-- Mobile nav background overlay -->
<div class="mobile-nav-bg" id="mobile-nav-bg"></div>
<nav class="main-nav" id="main-nav" role="navigation" aria-label="Main Navigation">
<ul class="nav-links">
<li><a href="#services" title="View our Guides & Services">Services</a></li>
<li><a href="#features" title="Explore Platform Features">Features</a></li>
<li><a href="#fees" title="Understand Trading Fees">Fees</a></li>
<li><a href="#promo" title="Hyperliquid Airdrop Info">Bonus</a></li>
<li><a href="#security" title="Review Security Measures">Security</a></li>
<li><a href="#faq" title="Frequently Asked Questions">FAQ</a></li>
<li>
<!-- Sign up button for mobile nav -->
<a href="https://t.co/go/signup" title="Start Trading on Hyperliquid" class="cta-button header-signup" target="_blank" rel="noopener noreferrer nofollow">
Start Trading Now
</a>
</li>
</ul>
</nav>
<!-- Sign up button for desktop nav -->
<div class="desktop-cta">
<a href="https://t.co/go/signup" title="Start Trading on Hyperliquid" class="cta-button header-signup" target="_blank" rel="noopener noreferrer nofollow">
Start Trading Now
</a>
</div>
<!-- Hamburger button for mobile -->
<button class="hamburger" id="hamburger-btn" aria-label="Open mobile navigation menu" aria-expanded="false" aria-controls="main-nav">
<i class="fa-solid fa-bars"></i>
</button>
</div>
</header>
<main>
<!--
====================================================================
== 2. SECTION: HERO (#home)
== Main welcome and CTA. Content from Inputs A, B, C, D.
====================================================================
-->
<section id="home">
<div class="container">
<div class="hero-content">
<span class="subtitle">Welcome to Hyperliquid Info</span>
<h1>Your Guide to On-Chain Perpetual Futures Trading</h1>
<p>
<!-- Based on [Your Website's Goal] & [Brief Brand Description] -->
Welcome to Hyperliquid Info, your premier information hub for the Hyperliquid DEX. Discover high-speed, self-custody trading, deep liquidity, and get all the facts on the highly anticipated <strong>Hyperliquid Airdrop</strong>.
</p>
<div class="hero-cta">
<!-- Based on [Main Registration/Join Link] & [Primary CTA Text] -->
<a href="https://t.co/go/signup" class="cta-button" title="Start Trading on Hyperliquid" target="_blank" rel="noopener noreferrer nofollow">
<i class="fa-solid fa-bolt" aria-hidden="true"></i>
Start Trading Now
</a>
<!-- Based on [Secondary CTA Text] -->
<a href="#promo" class="secondary-button" title="Learn about the Hyperliquid Airdrop">
<i class="fa-solid fa-gift" aria-hidden="true"></i>
Learn About the Airdrop
</a>
</div>
</div>
<div class="hero-image">
<!-- Cập nhật hình ảnh hero với URL Pexels (Đảm bảo hiển thị) -->
<!-- ĐÃ THAY THẾ URL PLACEHOLDER BẰNG MỘT ẢNH THẬT TỪ PEXELS -->
<img src="https://images.pexels.com/photos/7788009/pexels-photo-7788009.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&dpr=1" alt="Giao diện giao dịch crypto chuyên nghiệp với biểu đồ" title="Mô phỏng Giao diện Giao dịch Hyperliquid" style="aspect-ratio: 600 / 400; object-fit: cover; border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);">
</div>
</div>
</section>
<!--
====================================================================
== 13.5. DISCLOSURE SECTION (Moved from footer as requested)
====================================================================
-->
<!-- KHỐI NÀY SẼ BỊ XÓA TỪ ĐÂY
<section id="disclosure" style="padding: 40px 0; background-color: var(--color-bg-dark); border-bottom: 1px solid var(--color-border);">
<div class="container">
Using the existing 'disclosure-warning' class from the CSS,
which centers it and styles it. Removing bottom margin. -->
<!--
<p class="disclosure-warning" style="margin: 0 auto;">
We practice transparent affiliate marketing, without soliciting investments, collecting data, or engaging in fraud. Content is for informational purposes only.
</p>
</div>
</section>
-->
<!--
====================================================================
== 4. SECTION: ABOUT HYPERLIQUID (#about)
== Content from Inputs A.5 (Description) & C.12 (USP).
====================================================================
-->
<section id="about">
<div class="container">
<div class="about-content">
<span class="subtitle">About Hyperliquid</span>
<h2>The Future of Decentralized Perpetuals</h2>
<p>
<!-- Based on [Brief Brand Description] -->
Hyperliquid is a high-performance, fully on-chain decentralized exchange (DEX) for perpetual futures. It offers users high-speed trading, deep liquidity, and the complete security of self-custody for their funds.
</p>
<p>
<!-- Based on [Brand's Unique Selling Proposition (USP)] -->
Built on its own custom L1 blockchain, Hyperliquid enables a fully on-chain order book and matching engine. This delivers sub-second latency and CEX-level performance, all while remaining 100% decentralized and non-custodial. Users trade directly from their wallet, maintaining full control.
</p>
<a href="https://t.co/go/signup" class="cta-button" title="Start Trading on Hyperliquid" target="_blank" rel="noopener noreferrer nofollow">
Connect Wallet & Trade
</a>
</div>
<div class="about-image">
<!-- Cập nhật hình ảnh kiến trúc phi tập trung (Đổi sang Pexels) -->
<!-- ĐÃ THAY THẾ URL UNSPLASH BẰNG PEXELS ĐỂ ĐẢM BẢO HIỂN THỊ -->
<img src="https://images.pexels.com/photos/730564/pexels-photo-730564.jpeg?auto=compress&cs=tinysrgb&w=500&h=auto&dpr=1" alt="Sơ đồ mô tả kiến trúc mạng lưới phi tập trung" title="Kiến trúc Blockchain Phi tập trung">
</div>
</div>
</section>
<!--
====================================================================
== 5. SECTION: SERVICES / PRODUCTS (#services)
== Based on [Your Website's Goal] - informational hub.
====================================================================
-->
<section id="services">
<div class="container">
<div class="section-header">
<h2>Your Premier Info Hub</h2>
<p>We provide comprehensive guides and information to help you navigate the Hyperliquid ecosystem, from your first trade to understanding the airdrop.</p>
</div>
<div class="grid-3">
<!-- Service 1: Trading Guides -->
<div class="card">
<span class="icon"><i class="fa-solid fa-book-open"></i></span>
<h3>Comprehensive Trading Guides</h3>
<p>Learn how to connect your wallet, place orders, manage risk, and understand the perpetual futures market on Hyperliquid.</p>
</div>
<!-- Service 2: Airdrop Info -->
<div class="card">
<span class="icon"><i class="fa-solid fa-parachute-box"></i></span>
<h3>Hyperliquid Airdrop Details</h3>
<p>Get the latest, verified information on the Hyperliquid Points system and how user activity translates to the anticipated airdrop.</p>
</div>
<!-- Service 3: Platform Features -->
<div class="card">
<span class="icon"><i class="fa-solid fa-puzzle-piece"></i></span>
<h3>Platform Feature Walkthroughs</h3>
<p>Explore detailed explanations of all platform features, including the on-chain order book, liquidity vaults, and security measures.</p>
</div>
</div>
</div>
</section>
<!--
====================================================================
== 6. SECTION: FEATURES / BENEFITS (#features)
== Based on Input C (Benefits, USP).
====================================================================
-->
<section id="features" style="background-color: var(--color-bg-medium);">
<div class="container">
<div class="section-header">
<h2>Core Platform Features & Benefits</h2>
<p>Hyperliquid combines the speed of a CEX with the security and transparency of a DEX. Here’s how.</p>
</div>
<div class="grid-3">
<!-- Feature 1: Based on [Core User Benefit 1] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-rocket"></i></span>
<h3>High-Speed, On-Chain Trading</h3>
<p>Experience sub-second latency with a fully on-chain order book and matching engine, a first for decentralized exchanges.</p>
</div>
<!-- Feature 2: Based on [Core User Benefit 2] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-lock"></i></span>
<h3>Full Self-Custody</h3>
<p>Users trade directly from their wallet ("Connect"). Your funds are never held by the exchange, giving you 100% control.</p>
</div>
<!-- Feature 3: Based on [Core User Benefit 3] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-star"></i></span>
<h3>Points & Airdrop System</h3>
<p>A native Points program rewards user activity, referrals, and loyalty, all directly related to the upcoming Hyperliquid airdrop.</p>
</div>
<!-- Feature 4: Based on [Brief Brand Description] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-water"></i></span>
<h3>Deep Liquidity</h3>
<p>Access deep liquidity pools for popular perpetual futures, ensuring minimal slippage and efficient trade execution.</p>
</div>
<!-- Feature 5: Based on [Key Security Measures] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-shield-halved"></i></span>
<h3>On-Chain Transparency</h3>
<p>Every trade, order, and settlement is recorded on-chain, providing full transparency that centralized exchanges cannot match.</p>
</div>
<!-- Feature 6: Based on [USP] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-server"></i></span>
<h3>Custom L1 Blockchain</h3>
<p>The entire protocol runs on its own high-performance Layer 1, built specifically to handle the demands of a high-frequency order book.</p>
</div>
</div>
</div>
</section>
<!--
====================================================================
== 7. SECTION: TRADING FEES (#fees)
== General info as no specific fee data was provided.
====================================================================
-->
<section id="fees">
<div class="container">
<div class="section-header">
<h2>Transparent & Competitive Trading Fees</h2>
<p>Hyperliquid offers a simple and competitive fee structure. All fees are transparent and settled on-chain.</p>
<p>The standard fee model is designed to be low, typically with different rates for makers (providing liquidity) and takers (removing liquidity).</p>
</div>
<div class="fees-table">
<table>
<thead>
<tr>
<th>Category</th>
<th>Maker Fee</th>
<th>Taker Fee</th>
</tr>
</thead>
<tbody>
<tr>
<td>Standard Perpetuals</td>
<td>Low (Often Rebates)</td>
<td>Low (e.g., 0.0X%)</td>
</tr>
<tr>
<td>Fee Mechanism</td>
<td colspan="2">Fees are calculated and settled in real-time on-chain.</td>
</tr>
<tr>
<td>More Info</td>
<td colspan="2">For exact, up-to-date fee schedules, please refer to the official platform docs.</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!--
====================================================================
== 8. SECTION: HOW IT WORKS / GETTING STARTED (#how-it-works)
== Simple 3-step process for new users.
====================================================================
-->
<section id="how-it-works">
<div class="container">
<div class="section-header">
<h2>Get Started in 3 Simple Steps</h2>
<p>Trading on Hyperliquid is simple and secure. No deposits, no sign-ups, just connect your wallet.</p>
</div>
<div class="steps-container">
<!-- Step 1 -->
<div class="step-card">
<div class="step-number">1</div>
<h3>Connect Your Wallet</h3>
<p>Use any compatible wallet (e.g., MetaMask, Rabby) to connect to the Hyperliquid platform. This is your account.</p>
<a href="https://t.co/go/signup" class="cta-button" title="Connect Your Wallet Now" target="_blank" rel="noopener noreferrer nofollow">Connect Wallet</a>
</div>
<!-- Step 2 -->
<div class="step-card">
<div class="step-number">2</div>
<h3>Explore Markets</h3>
<p>Browse dozens of perpetual futures markets. View real-time price charts and the on-chain order book depth.</p>
</div>
<!-- Step 3 -->
<div class="step-card">
<div class="step-number">3</div>
<h3>Start Trading & Earning</h3>
<p>Open your first position (long or short). Every trade you make starts earning you points for the Hyperliquid airdrop.</p>
<a href="https://t.co/go/signup" class="cta-button" title="Start Trading Now" target="_blank" rel="noopener noreferrer nofollow">Start Trading</a>
</div>
</div>
</div>
</section>
<!--
<!-- 9. SECTION: PROMO CODE (#promo)
== Focuses on Airdrop/Bonus. Based on Inputs C.16, D.
====================================================================
-->
<section id="promo" style="background: linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
url('https://images.unsplash.com/photo-1639754391168-3335e2e9adfe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat fixed;">
<div class="container">
<div class="promo-content">
<h2>The Hyperliquid Airdrop & Points Program</h2>
<p>
<!-- Based on [Special Offer/Bonus] & [Core User Benefit 3] -->
The Hyperliquid Points program is live! This system is designed to reward active, long-term users of the platform. Points are awarded for trading activity, referrals, and more, and are directly related to the highly anticipated <strong>Hyperliquid Airdrop</strong>.
</p>
<!-- Logic: No promo code was provided (Input C.16) -->
<div class="promo-code-box">
<span><i class="fa-solid fa-ticket" aria-hidden="true"></i> No Code Needed</span>
</div>
<p>
No special code is required. Simply use our link to connect your wallet and start trading. You will automatically begin earning points for the upcoming airdrop.
</p>
<a href="https://t.co/go/signup" class="cta-button" title="Start Earning Airdrop Points" target="_blank" rel="noopener noreferrer nofollow">
<i class="fa-solid fa-gift" aria-hidden="true"></i>
Start Earning Points Now
</a>
</div>
</div>
</section>
<!--
====================================================================
== 10. SECTION: SECURITY & TRUST (#security)
== Based on Inputs E (Security, Trust Signals).
====================================================================
-->
<section id="security">
<div class="container">
<div class="section-header">
<h2>Security, Trust & Transparency</h2>
<p>Trade with confidence on a platform designed for security from the ground up. Based on Input E.</p>
</div>
<div class="grid-4">
<!-- Security 1: [Key Security Measures] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-wallet"></i></span>
<h3>Non-Custodial</h3>
<p>You maintain 100% control of your funds. Trades are executed from your wallet.</p>
</div>
<!-- Security 2: [Key Security Measures] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-cube"></i></span>
<h3>On-Chain Settlement</h3>
<p>All trades and settlements are processed on-chain, ensuring verifiable and immutable records.</p>
</div>
<!-- Security 3: [Key Security Measures] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-signature"></i></span>
<h3>Multi-Sig Support</h3>
<p>Enhanced security available for institutions and power users through multi-signature wallet support.</p>
</div>
<!-- Security 4: [Other Trust Signals] -->
<div class="card">
<span class="icon"><i class="fa-solid fa-magnifying-glass-chart"></i></span>
<h3>Full Transparency</h3>
<p>All protocol activities, validator votes, and stats are publicly viewable on-chain.</p>
</div>
</div>
</div>
</section>
<!--
====================================================================
== 11. SECTION: TESTIMONIALS / WHAT USERS SAY (#testimonials)
== Placeholder content, as none was provided.
====================================================================
-->
<section id="testimonials" style="background-color: var(--color-bg-medium);">
<div class="container">
<div class="section-header">
<h2>What Traders Say</h2>
<p>Hear from experienced DeFi users and traders who trust Hyperliquid.</p>
</div>
<div class="grid-3">
<!-- Testimonial 1 -->
<div class="card testimonial-card">
<p>"As an experienced trader, Hyperliquid's on-chain performance is a game-changer. It's the first DEX that actually feels like a CEX, but with self-custody. A must-use."</p>
<div class="testimonial-author">
<!-- Cập nhật ảnh đại diện -->
<img src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?ixlib=rb-4.0.3&auto=format&fit=crop&w=100&q=80" alt="Testimonial author avatar">
<div class="testimonial-author-info">
<h4>Alex K.</h4>
<span>Perpetual Futures Trader</span>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="card testimonial-card">
<p>"The points system is brilliant. I'm actively trading and referring friends, and it's great to see my points stack up for the airdrop. The transparency is unmatched."</p>
<div class="testimonial-author">
<!-- Cập nhật ảnh đại diện -->
<img src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&auto=format&fit=crop&w=100&q=80" alt="Testimonial author avatar">
<div class="testimonial-author-info">
<h4>Sarah J.</h4>
<span>DeFi User & Airdrop Hunter</span>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="card testimonial-card">
<p>"Security is my #1 priority. Knowing that I'm always in control of my keys and funds (non-custodial) allows me to trade with peace of mind. Hyperliquid is the future."</p>
<div class="testimonial-author">
<!-- Cập nhật ảnh đại diện -->
<img src="https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&auto=format&fit=crop&w=100&q=80" alt="Testimonial author avatar">
<div class="testimonial-author-info">
<h4>Michael B.</h4>
<span>Crypto Investor</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
====================================================================
== 12. SECTION: LATEST NEWS / BLOG UPDATES (#news)
== Placeholder content.
====================================================================
-->
<section id="news">
<div class="container">
<div class="section-header">
<h2>Latest News & Informational Guides</h2>
<p>Stay updated with the latest developments and deepen your trading knowledge.</p>
</div>
<div class="grid-3">
<!-- News 1 -->
<div class="card news-card">
<!-- Cập nhật ảnh tin tức -->
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80" alt="Blog post thumbnail about a guide">
<div class="news-card-content">
<p class="meta">GUIDE | Nov 07, 2025</p>
<h3>Understanding the Hyperliquid Points System</h3>
<p>A deep dive into how points are calculated and what you can do to maximize your airdrop allocation.</p>
<a href="#" title="Read full guide">Read More <i class="fa-solid fa-arrow-right-long" aria-hidden="true"></i></a>
</div>
</div>
<!-- News 2 -->
<div class="card news-card">
<!-- Cập nhật ảnh tin tức lần nữa -->
<img src="https://images.pexels.com/photos/730547/pexels-photo-730547.jpeg?auto=compress&cs=tinysrgb&w=400&h=225&dpr=1" alt="Blog post thumbnail about market news">
<div class="news-card-content">
<p class="meta">NEWS | Nov 05, 2025</p>
<h3>New Market Listings: SOL, AVAX, and more</h3>
<p>Hyperliquid expands its offerings with new perpetual markets, bringing more trading opportunities to the platform.</p>
<a href="#" title="Read full article">Read More <i class="fa-solid fa-arrow-right-long" aria-hidden="true"></i></a>
</div>
</div>
<!-- News 3 -->
<div class="card news-card">
<!-- Cập nhật ảnh tin tức -->
<img src="https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80" alt="Blog post thumbnail about a tutorial">
<div class="news-card-content">
<p class="meta">TUTORIAL | Nov 02, 2025</p>
<h3>What Are Perpetual Futures? A Beginner's Guide</h3>
<p>New to derivatives? This guide explains what perpetual futures are and how they work on a decentralized exchange.</p>
<a href="#" title="Read full tutorial">Read More <i class="fa-solid fa-arrow-right-long" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</section>
<!--
====================================================================
== 13. SECTION: FAQ (Frequently Asked Questions) (#faq)
== 15+ Q&A pairs generated from Input B (Keywords) and C (Benefits).
== Includes the required /login link.
====================================================================
-->
<section id="faq" style="background-color: var(--color-bg-medium);">
<div class="container">
<div class="section-header">
<h2>Frequently Asked Questions</h2>
<p>Have questions? We have answers. Here are the most common questions about Hyperliquid.</p>
</div>
<div class="faq-container">
<details class="faq-item">
<summary>What is Hyperliquid?</summary>
<div class="faq-content">
<p>Hyperliquid is a high-performance decentralized exchange (DEX) for trading perpetual futures. It runs on its own L1 blockchain, allowing for a fully on-chain order book, sub-second latency, and self-custody of funds.</p>
</div>
</details>
<details class="faq-item">
<summary>Q: I already have an account. Where can I log in?</summary>
<div class="faq-content">
<p>A: Because Hyperliquid is a decentralized exchange, there is no traditional "login". You "log in" by simply connecting your Web3 wallet (like MetaMask) to the platform.</p>
<p>This informational site provides a helpful <a href="/login" title="Login Information Page">login information page</a> with detailed steps, but the official action is always "Connect Wallet" on the main app.</p>
</div>
</details>
<details class="faq-item">
<summary>What is the Hyperliquid airdrop?</summary>
<div class="faq-content">
<p>The Hyperliquid airdrop is a highly anticipated event where the protocol is expected to distribute its native token to users. The distribution is based on the "Points" system, which rewards user activity.</p>
</div>
</details>
<details class="faq-item">
<summary>How do I earn Hyperliquid Points?</summary>
<div class="faq-content">
<p>Points are earned primarily through trading activity on the platform. Referrals and providing liquidity may also contribute to your points total. The more you use the platform, the more points you accumulate.</p>
</div>
</details>
<details class="faq-item">
<summary>Is Hyperliquid decentralized?</summary>
<div class="faq-content">
<p>Yes, 100%. Unlike other "decentralized" exchanges that may use off-chain order books, Hyperliquid's entire architecture, including order matching and settlement, runs on its own decentralized L1 blockchain.</p>
</div>
</details>
<details class="faq-item">
<summary>What does "non-custodial" or "self-custody" mean?</summary>
<div class="faq-content">
<p>It means you, and only you, have control over your funds. You trade directly from your own wallet. The exchange never takes custody of your assets, eliminating the risk of exchange hacks or freezes seen with centralized platforms.</p>
</div>
</details>
<details class="faq-item">
<summary>What is the Hyperliquid (HLP) coin or token?</summary>
<div class="faq-content">
<p>This refers to the upcoming native token for the Hyperliquid protocol. While not officially launched, it is the expected reward from the airdrop. "Hyperliquid coin" and "hyperliquid price" are common search terms related to this future token.</p>
</div>
</details>
<details class="faq-item">
<summary>How do I start trading on Hyperliquid?</summary>
<div class="faq-content">
<p>It's simple: 1. Get a compatible wallet (like MetaMask). 2. Fund it with USDC (on the Arbitrum network). 3. Go to the Hyperliquid app. 4. Connect your wallet. 5. You are now ready to trade.</p>
</div>
</details>
<details class="faq-item">
<summary>What are the trading fees?</summary>
<div class="faq-content">
<p>Hyperliquid offers very competitive and transparent fees, which are typically a small percentage for makers and takers. Please refer to the official platform's documentation for the most current fee schedule.</p>
</div>
</details>
<details class="faq-item">
<summary>What is hyperliquid.xyz?</summary>
<div class="faq-content">
<p>`app.hyperliquid.xyz` is the official domain for the Hyperliquid trading application. This website (`Hyperliquid Info`) is an informational hub to guide you.</p>
</div>
</details>
<details class="faq-item">
<summary>What is a perpetual future?</summary>
<div class="faq-content">
<p>A perpetual future (or "perp") is a financial derivative that allows you to speculate on the future price of an asset (like Bitcoin) without an expiry date. It's a popular tool for leverage trading.</p>
</div>
</details>
<details class="faq-item">
<summary>Is Hyperliquid safe?</summary>
<div class="faq-content">
<p>Hyperliquid is built with security as a priority. Its non-custodial and on-chain nature removes many risks associated with CEXs. However, trading derivatives always involves financial risk. See our full risk warning.</p>
</div>
</details>
<details class="faq-item">
<summary>Is Hyperliquid available in my jurisdiction?</summary>
<div class="faq-content">
<p>Like many DeFi protocols, Hyperliquid is a decentralized piece of software. However, the official frontend may restrict access from certain jurisdictions (e.g., the U.S.). Users are responsible for complying with their local laws.</p>
</div>
</details>
<details class="faq-item">
<summary>What wallets does Hyperliquid support?</summary>
<div class="faq-content">
<p>Hyperliquid supports a wide range of popular EVM-compatible wallets, including MetaMask, Rabby, Trust Wallet, and more through WalletConnect.</p>
</div>
</details>
<details class="faq-item">
<summary>Where can I check the Hyperliquid token price?</summary>
<div class="faq-content">
<p>As the official Hyperliquid token has not been released yet (as of this writing), it does not have a price. Be wary of any tokens claiming to be the official "Hyperliquid coin." The real token will be distributed via the official airdrop.</p>
</div>
</details>
</div>
</div>
</section>
<!--
====================================================================
== 13.5. DISCLOSURE SECTION (Moved as requested)
====================================================================
-->
<section id="disclosure" style="padding: 40px 0; background-color: var(--color-bg-dark); border-bottom: 1px solid var(--color-border);">
<div class="container">
<!--
Làm nổi bật phần này theo yêu cầu:
- Đổi nền sang var(--color-bg-medium) để giống thẻ card.
- Đổi màu chữ sang var(--color-text-light) (sáng hơn).
- Thêm biểu tượng (icon) thông tin.
- Tăng nhẹ font-size và padding.
-->
<p class="disclosure-warning" style="margin: 0 auto; background-color: var(--color-bg-medium); color: var(--color-text-light); font-size: 1rem; padding: 1.5rem;">
<i class="fa-solid fa-circle-info" aria-hidden="true" style="margin-right: 10px; color: var(--color-secondary);"></i>
We practice transparent affiliate marketing, without soliciting investments, collecting data, or engaging in fraud. Content is for informational purposes only.
</p>
</div>
</section>
<!--
====================================================================
== 14. SECTION: FINAL CALL-TO-ACTION
== Final strong push to the main CTA.
====================================================================
-->
<section class="final-cta">
<div class="container">
<h2>Ready to Experience High-Performance DeFi Trading?</h2>
<p>Join the future of decentralized perpetuals. Connect your wallet in seconds, start trading on a high-speed on-chain order book, and begin earning points for the Hyperliquid Airdrop today.</p>
<a href="https://t.co/go/signup" class="cta-button" title="Start Trading on Hyperliquid" target="_blank" rel="noopener noreferrer nofollow">
<i class="fa-solid fa-bolt" aria-hidden="true"></i>
Start Trading Now
</a>
</div>
</section>
</main>
<!--
====================================================================
== 15. FOOTER
== Contains links, disclaimer, and required /login link.
====================================================================
-->
<footer class="site-footer" role="contentinfo">
<div class="container">
<div class="footer-grid">
<!-- Column 1: About -->
<div class="footer-col">
<div class="logo">
<a href="/" title="Hyperliquid Info Homepage">
Hyperliquid Info
</a>
</div>
<!-- Based on [Your Website's Goal] -->
<p>A premier information hub for the Hyperliquid exchange, providing comprehensive guides on trading, features, and the airdrop.</p>
<p><strong>Disclaimer:</strong> This is an independent, informational website and is not the official Hyperliquid exchange.</p>
</div>
<!-- Column 2: Quick Links (Anchor Links) -->
<div class="footer-col">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="#about" title="Learn about Hyperliquid">About Hyperliquid</a></li>
<li><a href="#features" title="Explore Platform Features">Platform Features</a></li>
<li><a href="#fees" title="Understand Trading Fees">Trading Fees</a></li>
<li><a href="#promo" title="Hyperliquid Airdrop Info">Airdrop & Bonus</a></li>
<li><a href="#faq" title="Frequently Asked Questions">FAQ</a></li>
</ul>
</div>
<!-- Column 3: Legal & Other (Includes /login link) -->
<div class="footer-col">
<h4>Legal & Info</h4>
<ul class="footer-links">
<li><a href="#" title="Privacy Policy">Privacy Policy</a></li>
<li><a href="#" title="Terms of Service">Terms of Service</a></li>
<!-- Required /login link -->
<li><a href="/login" title="Login Information Page">Login Information</a></li>
<li><a href="https://t.co/go/signup" title="Official Hyperliquid Website" target="_blank" rel="noopener noreferrer nofollow">Official App</a></li>
<li><a href="https://app.hyperliquid.xyz/trade" title="Official Hyperliquid Info" target="_blank" rel="noopener noreferrer nofollow">Additional Info</a></li>
</ul>
</div>
<!-- Column 4: Socials -->
<div class="footer-col">
<h4>Follow The Protocol</h4>
<p>Follow the official Hyperliquid channels for real-time updates.</p>
<div class="social-icons">
<a href="#" title="Official Hyperliquid Twitter" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-twitter" aria-hidden="true"></i></a>
<a href="#" title="Official Hyperliquid Discord" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-discord" aria-hidden="true"></i></a>
<a href="#" title="Official Hyperliquid Telegram" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-telegram" aria-hidden="true"></i></a>
</div>
</div>
</div>
<!-- Bottom Row: Copyright, Last Updated, Risk Warning -->
<div class="footer-bottom">
<!-- Disclosure text moved above final CTA as requested -->
<!-- Based on [Basic Risk Warning Snippet] -->
<p class="risk-warning">
<strong>Risk Warning:</strong> Trading cryptocurrency and perpetual futures involves significant risk and can result in the loss of your capital. You should not invest more than you can afford to lose.
</p>
</div>
</div>
</footer>
<!--
====================================================================
== 16. STICKY BANNER / BAR
== Promotes the Airdrop/CTA.
====================================================================
-->
<div class="sticky-banner" id="sticky-banner">
<p>
<i class="fa-solid fa-gift" aria-hidden="true"></i>
Start earning points for the <strong>Hyperliquid Airdrop</strong>.
</p>
<a href="https://t.co/go/signup" class="cta-button" title="Start Earning Airdrop Points" target="_blank" rel="noopener noreferrer nofollow">
Start Trading Now
</a>
<button class="close-banner" id="close-banner" title="Close this banner" aria-label="Close banner">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<!--
====================================================================
== JAVASCRIPT
== For Mobile Navigation and Sticky Banner
====================================================================
-->
<script>
document.addEventListener('DOMContentLoaded', function() {
// --- Mobile Navigation Toggle ---
const hamburgerBtn = document.getElementById('hamburger-btn');
const mainNav = document.getElementById('main-nav');
const mobileNavBg = document.getElementById('mobile-nav-bg');
if (hamburgerBtn && mainNav && mobileNavBg) {
const toggleNav = () => {
const isActive = mainNav.classList.toggle('nav-active');
mobileNavBg.classList.toggle('nav-active');
hamburgerBtn.setAttribute('aria-expanded', isActive);
// Change hamburger icon to 'X'
if (isActive) {
hamburgerBtn.innerHTML = '<i class="fa-solid fa-xmark"></i>';
hamburgerBtn.setAttribute('aria-label', 'Close mobile navigation menu');
} else {
hamburgerBtn.innerHTML = '<i class="fa-solid fa-bars"></i>';
hamburgerBtn.setAttribute('aria-label', 'Open mobile navigation menu');
}
};
hamburgerBtn.addEventListener('click', toggleNav);
mobileNavBg.addEventListener('click', toggleNav);
// Close nav when a link is clicked
mainNav.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function() {
if (mainNav.classList.contains('nav-active')) {
toggleNav();
}
});
});
}
// --- Sticky Banner Close ---
const stickyBanner = document.getElementById('sticky-banner');
const closeBannerBtn = document.getElementById('close-banner');
if (stickyBanner && closeBannerBtn) {
// Check if banner was already closed
if (sessionStorage.getItem('stickyBannerClosed') === 'true') {
stickyBanner.classList.add('hidden');
} else {
stickyBanner.style.display = 'flex'; // Ensure it's visible if not hidden
}
closeBannerBtn.addEventListener('click', () => {
stickyBanner.classList.add('hidden');
// Remember for this session
sessionStorage.setItem('stickyBannerClosed', 'true');
});
}
});
</script>
</body>
</html>