:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #1e1e1e;
    --accent: #60a5fa;
    --background: #0f172a;
    --card-bg: #1e293b;
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #3b82f6, #2563eb);
    --gradient-hover: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    --bg-light: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
}

h1, h2, h3, .coin-amount {
    font-family: 'Syne', sans-serif;
}

a {
    text-decoration: none !important;
}

p{
    font-size: 1.1rem;
}


/* Hero Section */
.hero-section {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background-color: var(--background);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 600'%3E%3Cdefs%3E%3ClinearGradient id='bg-gradient' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%231e293b;stop-opacity:1'/%3E%3Cstop offset='100%25' style='stop-color:%230f172a;stop-opacity:1'/%3E%3C/linearGradient%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(59, 130, 246, 0.1)' stroke-width='0.5'/%3E%3C/pattern%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='5' result='blur'/%3E%3CfeComposite in='blur' operator='over' in2='SourceGraphic'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23bg-gradient)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3Ccircle cx='10%25' cy='20%25' r='100' fill='rgba(59, 130, 246, 0.1)' filter='url(%23glow)'/%3E%3Ccircle cx='90%25' cy='80%25' r='150' fill='rgba(37, 99, 235, 0.1)' filter='url(%23glow)'/%3E%3Cpath d='M0 300 Q 250 200 500 300 T 1000 300' stroke='rgba(59, 130, 246, 0.1)' fill='none' stroke-width='2'/%3E%3Cpath d='M0 350 Q 250 250 500 350 T 1000 350' stroke='rgba(59, 130, 246, 0.05)' fill='none' stroke-width='2'/%3E%3Cg transform='translate(0,0)'%3E%3Ccircle cx='100' cy='100' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='200' cy='150' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='300' cy='200' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='400' cy='150' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='500' cy='100' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='600' cy='150' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='700' cy='200' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='800' cy='150' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3Ccircle cx='900' cy='100' r='1' fill='rgba(59, 130, 246, 0.3)'/%3E%3C/g%3E%3Cpath d='M 50,450 L 100,500 L 50,550 L 0,500 Z' fill='rgba(59, 130, 246, 0.05)'/%3E%3Cpath d='M 950,50 L 1000,100 L 950,150 L 900,100 Z' fill='rgba(59, 130, 246, 0.05)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
    animation: patternFloat 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 1;
}

@keyframes patternFloat {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 8% 8%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    max-width: 90%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hero-section .cta-button{
    width: 60%;
    max-width: 250px;
}
/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.pricing-card:hover::before {
    transform: translateX(100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                var(--card-shadow);
}

/* Pricing card styling */
.pricing-section {
    padding: 8rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-subtitle::after {
        content: "";
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
    
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 2rem;
    /* padding: 3rem 2rem; */
    padding: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.card-image {
    position: relative;
    /* margin-bottom: 2rem; */
    text-align: center;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.pricing-card:hover .card-image img {
    transform: scale(1.1) rotate(5deg);
}

.glow-effect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .glow-effect {
    opacity: 1;
}

.coin-details {
    text-align: center;
    padding: 0;
}

.coin-value {
    /* margin-bottom: 1rem; */
}

.coin-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.coin-name {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exchange-rate {
    margin: 1.5rem 0;
}

.coin-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.rate-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.value-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(37, 99, 235, 0.2));
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.featured {
    transform: translateY(-20px) scale(1.05);
    background: linear-gradient(145deg, rgba(96, 165, 250, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.featured:hover {
    transform: translateY(-30px) scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: white;
    text-align: center;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

/* Explainer Section */

.explainer-section {
    padding: 6rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.explainer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cdefs%3E%3ClinearGradient id='dotted-gradient' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%233b82f6;stop-opacity:0.1'/%3E%3Cstop offset='100%25' style='stop-color:%232563eb;stop-opacity:0.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23dotted-gradient)'/%3E%3Cg%3E%3Ccircle cx='80' cy='80' r='1' fill='rgba(96, 165, 250, 0.3)'/%3E%3Ccircle cx='140' cy='160' r='2' fill='rgba(96, 165, 250, 0.2)'/%3E%3Ccircle cx='220' cy='80' r='3' fill='rgba(96, 165, 250, 0.1)'/%3E%3Ccircle cx='280' cy='160' r='1' fill='rgba(96, 165, 250, 0.3)'/%3E%3Ccircle cx='360' cy='80' r='2' fill='rgba(96, 165, 250, 0.2)'/%3E%3C/g%3E%3Cg transform='translate(500, 0)'%3E%3Ccircle cx='80' cy='80' r='1' fill='rgba(96, 165, 250, 0.3)'/%3E%3Ccircle cx='140' cy='160' r='2' fill='rgba(96, 165, 250, 0.2)'/%3E%3Ccircle cx='220' cy='80' r='3' fill='rgba(96, 165, 250, 0.1)'/%3E%3Ccircle cx='280' cy='160' r='1' fill='rgba(96, 165, 250, 0.3)'/%3E%3Ccircle cx='360' cy='80' r='2' fill='rgba(96, 165, 250, 0.2)'/%3E%3C/g%3E%3Cpath d='M0 200 Q 250 100 500 200 T 1000 200' stroke='rgba(96, 165, 250, 0.1)' fill='none' stroke-width='1'/%3E%3Cpath d='M0 400 Q 250 300 500 400 T 1000 400' stroke='rgba(96, 165, 250, 0.05)' fill='none' stroke-width='1'/%3E%3Cpath d='M0 600 Q 250 500 500 600 T 1000 600' stroke='rgba(96, 165, 250, 0.1)' fill='none' stroke-width='1'/%3E%3Cpath d='M100 850 L 150 800 L 100 750 L 50 800 Z' fill='rgba(96, 165, 250, 0.05)'/%3E%3Cpath d='M900 150 L 950 100 L 900 50 L 850 100 Z' fill='rgba(96, 165, 250, 0.05)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
    animation: explainerPatternFloat 30s ease-in-out infinite;
}

.explainer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 30%, 
        rgba(96, 165, 250, 0.1) 0%, 
        transparent 60%
    );
    z-index: 1;
}

@keyframes explainerPatternFloat {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 2% -2%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.explainer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.explainer-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin: 0 auto;
    height: 0;
    padding-bottom: 36.25%;
    border: 2px solid var(--primary-dark)
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    background: #000;
}

.info-section {
    text-align: center;
    margin-top: 5rem;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #60a5fa;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.info-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.info-text::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card:nth-child(1) { animation: fadeInUp 0.6s ease forwards 0.8s; }
.benefit-card:nth-child(2) { animation: fadeInUp 0.6s ease forwards 1s; }
.benefit-card:nth-child(3) { animation: fadeInUp 0.6s ease forwards 1.2s; }

.benefit-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 70%;
    height: 70%;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */

.features-section {
    padding: 8rem 2rem;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.feature-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    background: rgba(96, 165, 250, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
    width: 80%;
    height: 80%;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 60px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Add animation for cards */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card.animate {
    animation: cardAppear 0.6s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

/* Maximum Supply Section */
.max-supply-section {
    padding: 0 2rem;
    /* background: linear-gradient(165deg, 
        rgba(30, 41, 59, 0.95) 0%,
        rgba(15, 23, 42, 0.95) 100%
    ); */
    position: relative;
    overflow: hidden;
}

.max-supply-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 25%);
    opacity: 1;
    z-index: 0;
}

.max-supply-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 28h6v4h-6v-4zm-6-12h6v4h-6v-4zm-6 0h6v4h-6v-4zm-6 24h6v4h-6v-4zm-6-12h6v4h-6v-4zm-6 0h6v4h-6v-4zm-6 12h6v4h-6v-4zm-6-12h6v4h-6v-4zm0-12h6v4h-6v-4z' fill='rgba(59, 130, 246, 0.03)' fill-opacity='0.4'/%3E%3C/svg%3E"),
        linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%, rgba(37, 99, 235, 0.05) 100%);
    z-index: 0;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.supply-content {
    text-align: center;
  width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 4rem;
    /* background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ); */
    /* border-radius: 2rem; */
    /* border: 1px solid rgba(96, 165, 250, 0.3); */
    /* box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(59, 130, 246, 0.1),
        inset 0 0 30px rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px); */
    overflow: hidden;
}

.supply-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 50%
    );
    animation: rotateGradient 10s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.supply-label {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.supply-amount {
    font-size: 5rem;
    font-weight: 800;
    margin: 1rem 0 0;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.supply-icon {
    height: 5rem;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.3));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.supply-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.supply-text::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.supply-link {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.supply-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    transition: width 0.3s ease;
}

.supply-link:hover {
    color: #2563eb;
}

.supply-link:hover::after {
    width: 100%;
}
/* Governance & Security Sections */
.governance-section,
.security-section {
    padding: 3rem 2rem;
    background: var(--background);
    position: relative;
}

/* .security-section {
    background: #00050D;
} */

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-text {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.security-image {
    position: relative;
    max-width: 60%;
    margin: 4rem auto 0;
}

.glow-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.security-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 70%);
    z-index: 0;
}

/* Book Section */
.book-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.7));
}

.book-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.book-image {
    width: 350px;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.book-image:hover {
    transform: translateY(-10px);
}

.amazon-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.amazon-link:hover {
    color: #60a5fa;
}

/* Footer */
.site-footer {
    padding: 3rem 2rem;
    background: var(--background);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #94a3b8
}

.divider {
    color: var(--text-light);
}

.contact {
    color: var(--text-light);
}


@media  (max-width: 900px) {
    .video-container{
        padding-bottom: 62.25% ;
    }

}

@media (min-width: 901px) and (max-width: 1200px) {
    .video-container{
        padding-bottom: 50.25% ;
    }
}

@media (min-width: 1201px) and (max-width: 1370px) {
    .video-container{
        padding-bottom: 41.25% ;
    }

}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-image {
        width: 70%;
        margin: auto;
    }


    .pricing-container {
        gap: 1rem;
    }
    
    
    .pricing-title {
        font-size: 3rem;
    }

    
    .popular {
        grid-row: 1;
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: 3rem;
    }

    @keyframes patternFloat {
        0% {
            background-position: 0% 0%;
        }
        50% {
            background-position: 3% -3%;
        }
        100% {
            background-position: 0% 0%;
        }
    }   

}

@media (max-width: 992px) {
    .pricing-container {
       grid-template-columns: repeat(2, 1fr);
       gap: 2rem
    }

    .featured {
            grid-row: 1;
            grid-column: 1 / -1;
            width: 50%;
            margin: 0 auto;
    }

}

@media (max-width: 1200px) {
    .coin-amount {
        font-size: 2.5rem;
      }
    
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 1.75rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }


    .explainer-title {
        font-size: 2.5rem;
    }
    
    .video-container{
        padding-bottom: 60.25%;
    }
    .info-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 3rem
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-card{
        width: 70%;
        margin: 0 auto;
    }
    
    .featured {
        transform: translateY(0) scale(1);
        width: 70%;
    }
    
    .featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .card-image img {
        width: 80px;
    }

    .supply-amount {
        font-size: 3rem;
    }

    .security-image {
        max-width:100%
    }

    .book-image {
        width: 280px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .divider {
        display: none;
    }
    
}

@media (max-width: 576px) {
    .hero-section {
        padding: 8rem 1rem 4rem
    }

    .pricing-section,
    .features-section
     {
        padding: 4rem 1rem;
    }

    .max-supply-section {
        padding: 0 1rem;
    }


    .explainer-section,
    .governance-section,
    .security-section,
    .book-section {
        padding: 2.5rem 1rem;
    }
    
    .hero-title,
    .pricing-title,
    .explainer-title,
    .section-title
     {
        font-size: 1.8rem;
    }

    .hero-description {
        margin: 0 auto 1.5rem;
        font-size: 1rem;
    }

    .pricing-subtitle,
    .info-text,
    .section-description, 
    .feature-description,
    .benefit-card p,
    .supply-text,
    .section-text,
    .amazon-link
    p {
        font-size: 1rem;
    }

    .pricing-card,
    .featured {
        width: 100%;
        
    }

    .coin-amount,
    .coin-price {
        font-size: 1.5rem;
    }

    .coin-name,
    .rate-label {
        font-size: 0.85rem;
    }

    .info-title,
    .feature-title,
    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .supply-label{
        font-size: 1.2rem;
    }

    .supply-amount {
        font-size: 1.8rem;
        gap: 0.9rem
    }

    .supply-icon {
        height: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem;
    }
     
}
