@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');Retry
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-main: #4d0fff;
    --bg-dark: #010105;
    --bg-light: #2919aa;
    --white: #ffffff;
    --glow-purple: rgba(77, 15, 255, 0.8);
}
/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    color: var(--white);
    overflow-x: hidden;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(1, 1, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(77, 15, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    height: 100%;
}

nav ul li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-block;
    line-height: 1.2;
    box-sizing: border-box;
}

nav ul li a:hover {
    color: var(--purple-main);
    text-shadow: 0 0 10px var(--glow-purple);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-main);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
/* Hero Section */
#hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(2px);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    margin-top: 2rem;
   
}

.logo-container img {
    width: 150px;
	border-radius: 20px;
	border: 2px solid var(--purple-main);
    height: auto;
    filter: drop-shadow(0 0 30px var(--glow-purple));
}



h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2718a1, var(--purple-main), #7b2fff, var(--purple-main), #2718a1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 40px var(--glow-purple);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--purple-main);
    background: rgba(77, 15, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px var(--glow-purple);
    }
    50% { 
        box-shadow: 0 0 40px var(--glow-purple), 0 0 60px var(--glow-purple);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--purple-main);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    color: var(--white);
    border-color: #ffffff;
    box-shadow: 0 0 50px var(--glow-purple), 0 0 80px var(--glow-purple);
}

/* Browser Logos Section */
.browser-logos {
    margin-top: 4rem;
    text-align: center;
}

.browser-logos p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.browsers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.browser-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.browser-link img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 0 5px rgba(77, 15, 255, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.browser-link:hover img {
    filter: sepia(100%) hue-rotate(210deg) saturate(500%) brightness(0.9) drop-shadow(0 0 25px var(--glow-purple));
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .browser-link img {
        width: 60px;
        height: 60px;
    }
    
    .browsers-container {
        gap: 2rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 100;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 10px var(--glow-purple));
}

/* Section Styling */
section {
    padding: 6rem 2rem;
}

#features {
    background: linear-gradient(180deg, rgba(41, 25, 170, 0.2) 0%, rgba(1, 1, 5, 0.6) 100%);
}

#flashcoin {
    background: rgba(1, 1, 5, 0.8);
}

#social {
    background: linear-gradient(180deg, rgba(1, 1, 5, 0.6) 0%, rgba(41, 25, 170, 0.2) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 0 0 30px var(--glow-purple), 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(20, 20, 30, 0.7);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    border: 3px solid var(--purple-main);
    box-shadow: 0 0 40px var(--glow-purple);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--purple-main), transparent, var(--purple-main));
    background-size: 400% 400%;
    border-radius: 10px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--glow-purple);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--purple-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

/* Flash Coin Section */
.flashcoin-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flashcoin-card {
    background: rgba(20, 20, 30, 0.7);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--purple-main);
    box-shadow: 0 0 40px var(--glow-purple);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.flashcoin-card:hover {
   
    box-shadow: 0 0 80px var(--glow-purple);
}

.flashcoin-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--purple-main);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.flashcoin-card p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #d0d0d0;
    position: relative;
    z-index: 1;
}

/* Token Cards Container */
.token-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.token-card {
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid var(--purple-main);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.token-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 15, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.token-card:hover::before {
    left: 100%;
}

.token-card:hover {
    border-color: #7b2fff;
    box-shadow: 0 0 30px var(--glow-purple);
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    color: var(--purple-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--glow-purple);
    border-bottom: 2px solid var(--purple-main);
    padding-bottom: 0.8rem;
}

/* Token Details */
.token-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(77, 15, 255, 0.2);
}

.token-detail:last-child {
    border-bottom: none;
}

.token-detail-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px var(--glow-purple));
}

.token-detail > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.token-detail-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-detail-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.contract-short {
    font-family: 'Courier New', monospace;
    color: var(--purple-main);
}

.copy-btn-small {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--purple-main), #7b2fff);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-purple);
}

.copy-btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--glow-purple);
}

.copy-btn-small:active {
    transform: scale(0.95);
}

/* Distribution Bars */
.distribution-item {
    margin-bottom: 1.8rem;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.distribution-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.distribution-percent {
    color: var(--purple-main);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow-purple);
}

.distribution-bar-container {
    height: 35px;
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid rgba(77, 15, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.distribution-bar {
    height: 100%;
    width: 0;
    transition: width 2s ease;
    position: relative;
    border-radius: 18px;
}

.distribution-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 18px 18px 0 0;
}

.purple-bar {
    background: linear-gradient(90deg, var(--purple-main) 0%, #7b2fff 50%, var(--purple-main) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-purple);
}

.cyan-bar {
    background: linear-gradient(90deg, #00d4ff 0%, #00ffff 50%, #00d4ff 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.green-bar {
    background: linear-gradient(90deg, #00ff44 0%, #00ff88 50%, #00ff44 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 68, 0.6);
}

/* Mobile Responsive for Token Cards */
@media (max-width: 768px) {
    .token-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .token-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .token-detail {
        padding: 0.8rem 0;
    }
    
    .token-detail-icon {
        font-size: 1.5rem;
    }
    
    .token-detail-label {
        font-size: 0.85rem;
    }
    
    .token-detail-value {
        font-size: 1rem;
    }
    
    .copy-btn-small {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .distribution-bar-container {
        height: 30px;
    }
    
    .distribution-percent {
        font-size: 1rem;
    }
}
/* Token Info Grid */
.token-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid var(--purple-main);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--purple-main), transparent, var(--purple-main));
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--glow-purple);
    border-color: #7b2fff;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--glow-purple));
    animation: float 3s ease-in-out infinite;
}

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

.info-card h4 {
    font-size: 1.3rem;
    color: var(--purple-main);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Mobile Responsive for Info Cards */
@media (max-width: 768px) {
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-card h4 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
}
/* Social Links */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: rgba(77, 15, 255, 0.1);
    padding: 3rem 2rem;
    border: 2px solid var(--purple-main);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.social-card:hover {
    background: rgba(77, 15, 255, 0.3);
    box-shadow: 0 0 40px var(--glow-purple);
    transform: translateY(-10px);
}

.social-icon {
    margin-bottom: 1rem;
}

.social-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--glow-purple));
    transition: all 0.3s ease;
}

.social-card:hover .social-icon img {
    filter: drop-shadow(0 0 30px var(--glow-purple));
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(77, 15, 255, 0.3);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-socials a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(50%) brightness(1.2);
    transition: all 0.3s ease;
}

.footer-socials a:hover img {
    filter: grayscale(0%) brightness(1.5) drop-shadow(0 0 20px var(--glow-purple));
    transform: scale(1.2);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--purple-main);
}
.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .flashcoin-container {
        max-width: 95%;
    }
    
    .chart {
        height: 450px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.8rem 1rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        letter-spacing: 0.5px;
    }

    /* Hero Section */
    h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .logo-container img {
        width: 100px;
    }

    /* Browser Logos */
    .browser-logos {
        margin-top: 2.5rem;
    }
    
    .browser-logos p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .browser-link img {
        width: 60px;
        height: 60px;
    }
    
    .browsers-container {
        gap: 2rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }

    /* Sections */
    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        letter-spacing: 2px;
    }

    /* Feature Cards */
    .features-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }

    /* Flash Coin Section */
    .flashcoin-container {
        max-width: 100%;
    }
    
    .flashcoin-card {
        padding: 2.5rem 1.5rem;
    }

    .flashcoin-card h3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .flash-f {
        font-size: 2.2rem;
    }

    .flashcoin-card > p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Supply Info */
    .supply-info {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .supply-locked {
        font-size: 1rem;
    }
    
    /* CA Section */
    .ca-container {
        margin-top: 1.5rem;
    }
    
    .ca-label {
        font-size: 1rem;
    }
    
    .ca-box {
        font-size: 0.7rem;
        padding: 0.8rem;
        line-height: 1.4;
    }
    
    .ca-hint {
        font-size: 0.8rem;
    }
    
    /* Chart */
    .chart-container {
        margin-top: 2rem;
    }
    
    .chart-container h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .chart {
        height: 350px;
    }

    /* Social Section */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
    }
    
    .social-icon img {
        width: 70px;
        height: 70px;
    }
    
    .social-card h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }
    
    .footer-socials {
        gap: 2rem;
    }
    
    .footer-socials a img {
        width: 35px;
        height: 35px;
    }
    
	.footer-links {
    margin-bottom: 1rem;
}

	.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

	.footer-links a:hover {
    color: var(--purple-main);
}
    .copyright {
        font-size: 0.85rem;
    }
	
	.beta-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        top: 0.8rem;
        right: 0.8rem;
    }
	
}

@media (max-width: 480px) {
    /* Extra small devices */
    h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .logo-container img {
        width: 80px;
    }
    
    nav ul {
        gap: 0.3rem;
    }
    
    nav ul li a {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
    }
    
    .browser-link img {
        width: 50px;
        height: 50px;
    }
    
    .browsers-container {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .flashcoin-card h3 {
        font-size: 1.5rem;
    }
    
    .flash-f {
        font-size: 1.8rem;
    }
    
    .ca-box {
        font-size: 0.65rem;
        padding: 0.7rem;
    }
    
    .chart {
        height: 300px;
    }
    
    .chart-container h4 {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .social-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 360px) {
    /* Very small devices */
    h1 {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .ca-box {
        font-size: 0.6rem;
    }
}

/* Glitch Effect */
@keyframes flash {
    25%, 100% { opacity: 1; text-shadow: 0 0 40px var(--glow-purple); }
    10% { opacity: 0.3; text-shadow: 0 0 80px var(--glow-purple), 0 0 100px var(--glow-purple); }
    20% { opacity: 1; text-shadow: 0 0 40px var(--glow-purple); }
    30% { opacity: 0.4; text-shadow: 0 0 80px var(--glow-purple), 0 0 100px var(--glow-purple); }
    40%, 100% { opacity: 1; text-shadow: 0 0 40px var(--glow-purple); }
}

.flash-f {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: 700;
    color: #4d0fff;
    font-size: 3rem;
    margin-right: 0.5rem;
    text-shadow: 0 0 20px rgba(77, 15, 255, 0.8);
    text-transform: none;
}

/* Flash Coin Enhancements */
.supply-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(77, 15, 255, 0.1);
    border: 2px solid var(--purple-main);
    border-radius: 10px;
}

.supply-locked {
    font-size: 1.2rem;
    color: #d0d0d0;
    text-align: center;
}

.supply-locked span {
    color: var(--purple-main);
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow-purple);
}
/* Token Stats Bars */
.token-stats {
    margin-top: 2rem;
}

.stat-bar-container {
    margin-bottom: 1.5rem;
}

.stat-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.stat-value {
    color: var(--purple-main);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--glow-purple);
}

.stat-bar {
    width: 100%;
    height: 30px;
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid var(--purple-main);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-main) 0%, #7b2fff 50%, var(--purple-main) 100%);
    background-size: 200% 100%;
    border-radius: 13px;
    position: relative;
    width: 0%;  /* Add this - start at 0% */
    transition: width 2s ease-out;
    animation: shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-purple), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 13px 13px 0 0;
}

/* Mobile responsiveness for stats */
@media (max-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-bar {
        height: 25px;
    }
}

/* Contract Address Section */
.ca-container {
    margin-top: 2rem;
}

.ca-label {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
    text-align: center;
}

.ca-box {
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid var(--purple-main);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    word-break: break-all;
    position: relative;
    user-select: none;
}

.ca-box:hover {
    background: rgba(10, 10, 20, 0.8);
    box-shadow: 0 0 20px var(--glow-purple);
    transform: scale(1.02);
}

.ca-box.copied {
    background: rgba(77, 15, 255, 0.5);
    border-color: #4d0fff;
    animation: copySuccess 0.3s ease;
}

@keyframes copySuccess {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ca-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Chart Section */
.chart-container {
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-container h4 {
    font-size: 1.8rem;
    color: var(--purple-main);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.chart-shell {
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
    overflow: hidden;
    border: 0px solid var(--purple-main);
    box-shadow: 0 0 0px var(--glow-purple);
    margin: 0 auto;
    display: block;
}

.chart {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .ca-box {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .chart {
        height: 400px;
    }
    
    .chart-container h4 {
        font-size: 1.4rem;
    }
}

/* Beta Badge */
.beta-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--purple-main) 0%, #7b2fff 100%);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px var(--glow-purple);
  
    z-index: 10;
}

@keyframes betaPulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--glow-purple);
    }
    50% {
        box-shadow: 0 0 25px var(--glow-purple), 0 0 35px var(--glow-purple);
      
    }
}

.feature-card:hover .beta-badge {
    animation: none;
    box-shadow: 0 0 30px var(--glow-purple);
}

/* Tool Buttons */
.tool-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--purple-main) 0%, #7b2fff 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    border: 2px solid var(--purple-main);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--glow-purple);
    position: relative;
    overflow: hidden;
}

.tool-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.tool-btn:hover::before {
    width: 300px;
    height: 300px;
}

.tool-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--glow-purple), 0 5px 20px rgba(77, 15, 255, 0.4);
    border-color: #7b2fff;
}

.tool-btn:active {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Mobile responsive for tool buttons */
@media (max-width: 768px) {
    .tool-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }
    
    .btn-icon {
        font-size: 1.3rem;
    }
}

#hero h1,
#hero h1 * {
  cursor: default !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

