.hero-gradient {
    background: linear-gradient(135deg, #1d1b31 0%, #0f0b1e 100%);
    position: relative;
}

.neon-text-green {
    color: #ff69b4;
    text-shadow: 0 0 5px #ff69b4,
                 0 0 15px rgba(255, 105, 180, 0.5),
                 0 0 25px rgba(255, 105, 180, 0.3);
}

.neon-text-pink {
    color: #00bfff;
    text-shadow: 0 0 5px #00bfff,
                 0 0 15px rgba(0, 191, 255, 0.5),
                 0 0 25px rgba(0, 191, 255, 0.3);
}

.neon-button-pink {
    background: #00bfff;
    box-shadow: 0 0 5px #00bfff,
                0 0 15px rgba(0, 191, 255, 0.5);
    transition: all 0.3s ease;
    color: white;
}

.neon-button-pink:hover {
    background: #00bfff;
    box-shadow: 0 0 10px #00bfff,
                0 0 20px rgba(0, 191, 255, 0.5),
                0 0 30px rgba(0, 191, 255, 0.3);
    transform: translateY(-1px);
}

.email-input {
    width: 100%;
    min-width: 280px;
    font-size: 16px;
    line-height: 1.5;
}

.description-text {
    color: #a3a3a3;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.6;
}



/* Refined Radar Effect */
.radar-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.3;  /* Increased from 0.15 */
    pointer-events: none;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ff69b4;  /* Changed from green to pink */
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.radar-circle:nth-child(1) {
    animation: radar-pulse 3s cubic-bezier(0, 0.55, 0.45, 1) infinite;
}

.radar-circle:nth-child(2) {
    animation: radar-pulse 3s cubic-bezier(0, 0.55, 0.45, 1) infinite;
    animation-delay: -1s;
}

.radar-circle:nth-child(3) {
    animation: radar-pulse 3s cubic-bezier(0, 0.55, 0.45, 1) infinite;
    animation-delay: -2s;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 105, 180, 0),
        rgba(0, 191, 255, 0.4) 50%,
        rgba(255, 105, 180, 0.8) 100%
    );
    transform-origin: left;
    animation: radar-sweep 4s linear infinite;
    filter: blur(0.5px);
}

.bell-icon {
    width: 100%;
    height: 100%;
    stroke: url(#bell-gradient);
    stroke-width: 0.75;  /* Reduced from 1.5 */
    fill: none;
    filter: drop-shadow(0 0 3px rgba(255, 105, 180, 0.5))
           drop-shadow(0 0 6px rgba(0, 191, 255, 0.5))
           drop-shadow(0 0 12px rgba(255, 105, 180, 0.3));
}

.bell-svg {
    mix-blend-mode: screen;
    opacity: 0.95;  /* Increased from 0.9 */
    transition: all 0.3s ease;
}

.bell-svg:hover {
    opacity: 1;
    filter: brightness(1.2);
    transform: scale(1.05);
}

.stripe-checkout-button {
    background: rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    transform: translateY(0);
    transition: all 0.2s ease;
}

.stripe-checkout-button:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 191, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4),
                0 0 30px rgba(0, 191, 255, 0.2);
}

.stripe-checkout-button:active {
    transform: translateY(0);
}

@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0.8;  /* Higher starting opacity */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes radar-sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Add these new classes */
.site-navbar {
    background-color: #0f0b1e !important;
    border-bottom: 1px solid #2d2b41;
}

.site-footer {
    background-color: #0f0b1e !important;
    border-top: 1px solid #2d2b41;
    margin-top: 9rem;
}

/* Update the neon text to be less intense */
.neon-text-green {
    color: #ff69b4;
    text-shadow: 0 0 3px #ff69b4,
                 0 0 8px rgba(255, 105, 180, 0.3),
                 0 0 12px rgba(255, 105, 180, 0.2);
}

/* Add these new classes */
.legal-text {
    color: #e5e7eb;  /* Brighter text */
    line-height: 1.7;
}

.legal-section {
    background-color: #0f0b1e;  /* Darker background to match navbar/footer */
    border: 1px solid #2d2b41;
}

.legal-heading {
    color: #ff69b4;  /* Pink heading */
    text-shadow: 0 0 3px rgba(255, 105, 180, 0.3);
}

.legal-subheading {
    color: #00bfff;  /* Blue subheading */
    text-shadow: 0 0 3px rgba(0, 191, 255, 0.3);
}

.email-input {
    transition: all 0.3s ease;
    font-size: 16px;
}

.email-input:focus {
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.email-input::placeholder {
    color: #6b7280;
}




.waitlist-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #2d2b41;
    border: 1px solid #3d3b51;
    border-radius: 0.5rem;
    color: white;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.waitlist-input::placeholder {
    color: #6b7280;
}

.waitlist-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.waitlist-button:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-1px);
}


.gradient-text {
    background: linear-gradient(90deg, #ff69b4, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

body {
    background: linear-gradient(135deg, #1d1b31 0%, #0f0b1e 100%);
}




.testimonial-bubble {
    background: rgba(45, 43, 65, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    max-width: 400px;
    margin: 3rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: rgba(45, 43, 65, 0.6);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255, 105, 180, 0.2);
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.star-rating {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    color: #00bfff;
    font-weight: 500;
    text-shadow: 0 0 3px rgba(0, 191, 255, 0.3);
}

.testimonial-bubble {
    margin-top: 8rem;
}

.bar-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    gap: 60px; /* Increased gap for better spacing */
    margin: 4rem auto;
    position: relative;
    padding: 2rem 0;
    max-width: 800px; /* Added max-width to contain the chart */
}

.bar-chart {
    width: 30px; /* Made bars thinner */
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column; /* Added to fix alignment */
    align-items: center;
    justify-content: center;
}

.bar {
    width: 100%;
    background: linear-gradient(180deg, 
        rgba(34, 197, 94, 0.9), 
        rgba(34, 197, 94, 0.7)
    );
    position: absolute;
    bottom: 50%;
    transform-origin: bottom;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.bar.negative {
    background: linear-gradient(180deg, 
        rgba(239, 68, 68, 0.9), 
        rgba(239, 68, 68, 0.7)
    );
    bottom: auto;
    top: 50%;
    transform-origin: top;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.token-name {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    text-align: center;
    color: #00bfff; /* Neon blue */
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
}

.returns-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #a3a3a3;
    font-size: 0.9rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}
.bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease;
}

.bar-label.positive {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.bar-label.negative {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.x-axis {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(75, 85, 99, 0.8),
        transparent
    );
    top: 50%;
    z-index: 0;
}

.chart-caption {
    text-align: center;
    color: #a3a3a3;
    margin: 4rem auto 5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.025em;
    max-width: 600px;
    padding: 0 1rem;
}

/* Add hover effects */
.bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

.bar.negative:hover {
    transform: translateY(5px);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
}

.bar-chart:hover .token-name {
    color: #ff69b4; /* Switch to pink on hover */
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
    transform: translateX(-50%) scale(1.1);
}

.bar-chart:hover .bar-label.positive {
    transform: translateX(-50%) scale(1.1);
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.bar-chart:hover .bar-label.negative {
    transform: translateX(-50%) scale(1.1);
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.token-image {
    position: absolute;
    top: -65px; /* Adjust this value to position above token name */
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.coin-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.bar-chart:hover .token-image {
    transform: translateX(-50%) scale(1.2);
    border-color: rgba(255, 105, 180, 0.4);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}




.instagram-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(219, 39, 119, 0.1);
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: rgba(219, 39, 119, 0.2);
    transform: translateY(-1px);
}

.instagram-link svg {
    transition: all 0.3s ease;
}

.instagram-link:hover svg {
    color: #E1306C;
}

.step-card {
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff69b4, #00bfff);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    z-index: 1;
}

.card-content {
    transition: all 0.3s ease;
}

.card-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.1);
}

.icon-wrapper {
    background: rgba(34, 197, 94, 0.1);
    width: fit-content;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-example {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.verified-badge {
    display: inline-flex;
    color: #3b82f6; /* Twitter blue color */
    background: rgba(59, 130, 246, 0.1);
    padding: 2px;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Main mobile styles */
@media (max-width: 640px) {
    /* Container fixes */
    .max-w-3xl, .max-w-6xl, .max-w-md {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Text scaling and wrapping fixes */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        padding: 0 0.5rem;
        word-wrap: break-word;
    }
    
    .tagline-text {
        font-size: 1.25rem !important;
        line-height: 1.4;
        padding: 0 1rem;
        word-wrap: break-word;
    }
    
    .description-text {
        font-size: 0.95rem !important;
        line-height: 1.5;
        padding: 0 2rem;
        margin: 0 auto 3rem !important; /* Increased bottom margin */
        max-width: 100%;
        word-wrap: break-word;
    }

    /* Stats section spacing */
    .flex.justify-center.gap-12.mb-16 {
        margin-top: 3rem !important; /* Added top margin */
        gap: 1.5rem !important;
    }

    /* Bar chart fixes */
    .bar-chart-container {
        transform: scale(0.85);
        margin: 2rem -1rem;
        padding: 1rem 0;
        height: 280px;
        gap: 25px;
        overflow: visible;
    }
    
    .token-name {
        font-size: 0.7rem !important;
        top: -25px;
        white-space: normal;
        width: 60px;
        line-height: 1.2;
    }

    .token-image {
        top: -55px;
        width: 24px;
        height: 24px;
    }

    /* How it works section */
    .how-it-works-section {
        padding: 2rem 1rem;
        overflow: hidden;
    }

    .step-card {
        margin: 2rem 0.5rem;
        width: auto;
    }

    .card-content {
        padding: 1.5rem 1rem;
    }

    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Buttons and inputs */
    .stripe-checkout-button,
    .waitlist-button,
    .waitlist-input {
        width: calc(100% - 2rem) !important;
        margin: 0 auto;
        font-size: 14px;
        max-width: 100%;
    }

    /* Alert example */
    .alert-example {
        margin: 2rem 1rem;
        width: auto;
    }

    .alert-example .verified-badge {
        padding: 1px;
    }

    .alert-example .break-all {
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
    /* Alert example text size fixes */
    .alert-example .contract-address {  /* Changed from .text-[10px] */
        font-size: 0.6rem !important;  /* Even smaller for contract address */
    }

    .alert-example .text-xs {
        font-size: 0.7rem !important;  /* For other small text in alert */
    }

    .alert-example .text-sm {
        font-size: 0.8rem !important;  /* For slightly larger text in alert */
    }
    


    
    /* New members pill fix */
    .inline-flex.items-center.px-4.py-2 {
        white-space: nowrap;  /* Prevent wrapping */
        font-size: 0.8rem;    /* Slightly smaller text */
        padding: 0.5rem 1rem !important;  /* Adjust padding */
    }

    /* Trial button fixes */
    .stripe-checkout-button {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .stripe-checkout-button .text-xs {
        font-size: 0.7rem !important;
        margin-top: 0.5rem !important;
    }

    /* Ensure price text stays on one line */
    .stripe-checkout-button .absolute.bottom-0 {
        font-size: 0.7rem !important;
        white-space: nowrap;
    }

    /* Testimonials */
    .testimonial-card {
        margin: 1rem;
        padding: 1.25rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Newsletter section */
    #newsletter p {
        padding: 0 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Trial Benefits */
    .trial-benefits {
        padding: 0 1rem;
    }

    /* Fix any overflowing text */
    .text-overflow-fix {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2rem !important;
        padding: 0 0.5rem;
    }

    .tagline-text {
        font-size: 1.1rem !important;
        padding: 0 0.75rem;
    }

    .description-text {
        font-size: 0.85rem !important;
        padding: 0 1.5rem;
        line-height: 1.4;
        margin: 0 auto 2.5rem !important; /* Slightly less margin for very small screens */
    }

    /* Stats section spacing for very small screens */
    .flex.justify-center.gap-12.mb-16 {
        margin-top: 2.5rem !important;
    }

    .bar-chart-container {
        transform: scale(0.75);
        margin: 1rem -2rem;
    }
    
    .token-name {
        font-size: 0.6rem !important;
        width: 50px;
    }

    .card-content {
        padding: 1.25rem 0.75rem;
    }

    .card-content p {
        font-size: 0.85rem;
    }
    /* Even smaller adjustments for very small screens */
    .inline-flex.items-center.px-4.py-2 {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem !important;
    }

    .stripe-checkout-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
    }
}