* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    background: #042832;
    padding: 15px 0;
}

.container {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo p {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

/* Hover underline + active */
.nav-links li a.active,
.nav-links li a:hover {
    color: #f4b400;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #f4b400;
    left: 0;
    bottom: -5px;
}

/* Button (merged styles) */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #00bfa6;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #00bfa6;
    color: #02272f;
}

/* Hero */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #01272f, #001f25);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* effects */
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #00e5ff;
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #f4b400;
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

/* Left */
.hero-text {
    max-width: 500px;
    color: white;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
}

.hero-text span {
    color: #00e5ff;
}

.hero-text .dot {
    color: #00e5ff;
    font-size: 60px;
}

.hero-text p {
    margin: 20px 0;
    color: #ccc;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.explore {
    background: #f4b400;
    color: #fff;
}

.explore:hover {
    background: #ffcb33;
}

.video {
    color: #fff;
}

.video:hover {
    background: #00e5ff;
    color: #000;
}

/* Right */
.hero-img {
    display: flex;
    justify-content: center;
}

.hero-img img {
    max-width: 400px;
    width: 100%;
    animation: float 10s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

/* Features */
.features {
    color: white;
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #01272f, #001f25);
    overflow: hidden;
}

/* Glow Effects */
.features::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #00e5ff;
    opacity: 0.3;
    filter: blur(180px);
}

.features::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 50%;
    background: #f4b400;
    opacity: 0.25;
    filter: blur(200px);
}

/* Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-6 {
    flex: 0 0 calc(50% - 20px);
}

/* Feature Card */
.feature-card {
    background: #022d36;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s;
}

.feature-card:hover {
    background: #02404c;
    transform: translateY(-6px);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #aaa;
}

/* Right */
.features-right {
    flex: 0 0 50%;
}

.highlight {
    color: #00e5ff;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
    border-left: 2px solid #00e5ff;
    padding-left: 10px;
}

.features-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.desc {
    color: #bbb;
    margin-bottom: 15px;
}

/* Star */
.star {
    position: absolute;
    bottom: 60px;
    right: 120px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 40%, transparent 70%);
    clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
    opacity: 0.4;
}

/* Market */
.market {
    color: white;
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1f23 0%, #112b2f 100%);
}

/* Blur Glow Effects */
.blur {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 170, 0.3);
    filter: blur(140px);
    z-index: 0;
}

.blur-left {
    top: 50%;
    left: -200px;
}

.blur-right {
    top: 20%;
    right: -200px;
}

/* Text */
.title {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #aaa;
    font-size: 16px;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card {
    flex: 0 0 calc(33.33% - 25px);
    background: #0f2e35;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive Flexbox */
@media (max-width: 992px) {
    .card {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 600px) {
    .card {
        flex: 0 0 100%;
    }
}

/* Coin Data */
.coin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.coin-header img {
    width: 30px;
    height: 30px;
}

.coin-header h3 {
    font-size: 18px;
    font-weight: 500;
}

/* Flex instead of grid */
.coin-data,
.coin-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.coin-values {
    font-weight: bold;
}

.up {
    color: #1abc9c;
}

.down {
    color: #e74c3c;
}