:root {
    --primary-color: #ff0000;
    --background-color: #ffffff;
    --text-color: #000000;
    --card-bg: rgba(245, 245, 245, 0.8);
    --border-color: rgba(255, 0, 0, 0.4);
}

@font-face {
    font-family: 'Marschel';
    src: url('/Assets/Fonts/FontsFree-Net-marschel-pro.ttf') format('truetype');
}
@font-face {
    font-family: 'Futura';
    src: url('/Assets/Fonts/Futura.ttf') format('truetype');
}
@font-face {
    font-family: 'APTOS';
    src: url('/Assets/Fonts/aptos.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background-color: rgb(255, 255, 255);
padding: 1.2rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 1px 5px rgba(255, 0, 0, 0.3);
border-bottom: 2px solid var(--border-color);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
width: 65px;
height: auto;

}

.nav-logo span {
font-size: 1.4rem;
font-weight: bold;
color: var(--text-color);
text-transform: uppercase;
letter-spacing: 0.6px;
margin-top: 2px;
}



.navbar-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.navbar-links a {
    font-size: 1.1rem;
    color: #ff0000;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.navbar-links a:hover {
    text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color);
}

.navbar-social {
    display: flex;
    gap: 1rem;
}

.navbar-social a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-social a:hover {
    color: #ff0000;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff0000;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-links, .navbar-social {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-links.active, .navbar-social.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-container {
        flex-wrap: wrap;
    }

    .navbar-toggle{
        margin-right: 6px;
    }
.social-links a{
margin-left: 6px;
}
.social-links{
margin-left: 30px;
}
}
.social-links {
display: flex;
gap: 1.5rem;
}

.social-links a {
color: var(--text-color);
text-decoration: none;
font-size: 1.4rem;
transition: color 0.3s ease;
}

.social-links img.social-icon {
width: 24px;
height: auto;
transition: all 0.3s ease;
}

.social-links .social-icon.small {
width: 22px;
margin-bottom: -3px;
}

.social-links .social-icon.medium {
width: 28px;
margin-bottom: -5px;
}

.social-links a:hover {
color: var(--primary-color);
text-shadow: 0 0 1px var(--primary-color), 0 0 1px var(--primary-color);
}
.social-icon{
-webkit-filter: grayscale(1) invert(1);
filter: grayscale(1) invert(1);
}
.social-links {
display: flex;
gap: 1rem;
}



/* .hero {
    text-align: center;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,0,0,0.05) 0%, rgba(255,255,255,0) 70%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
} */


.hero {
    font-family: 'Futura', sans-serif;
    position: relative;
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,0,0,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto 0rem;
}

.logo-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0 0 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-family: 'Futura', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .logo-container {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

.features {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.token-stats {
    padding: 4rem 0;
}

.token-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

footer {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 -2px 20px rgba(255, 0, 0, 0.15);
    border-top: 2px solid var(--border-color);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-logo span {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--text-color);
    text-transform: uppercase;
    margin-left: -15px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.qr-code {
    margin-top: 1.5rem;
    width: 120px;
}

/* .glow {
    text-shadow: 0 0 4px var(--primary-color), 0 0 7px var(--primary-color);
}

.icon-glow {
    filter: drop-shadow(0 0 1px var(--primary-color));
} */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    


    

    .nav-logo img {
        width: 50px;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    footer .container {
        flex-direction: column;
        gap: 2rem;
    }
}

.how-to-buy {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.address-input {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.how-to-buy h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    font-size: 20px;
    font-weight: bold;
}

/* .glow-intense {
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000;
}

.glow-text {
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5), 0 0 10px rgba(255, 0, 0, 0.3);
} */

.neon-button {
    background-color: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-family: 'Marschel', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(255, 0, 0, 0.3);
}

.neon-button:hover {
    background-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.neon-address {
    font-family: 'APTOS', sans-serif;
    width: 100%;
    max-width: 500px;
    padding: 0.75rem;
    font-size: 1.2rem;
    background-color: #ffffff;
    color: var(--text-color);
    border: 2px solid #ff0000;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .neon-address {
        font-size: 0.775rem;
        margin-bottom: 12px;
    }
    
    .address-input {
        flex-wrap: wrap;
    }
}

#billion {
    font-size: 60px;
}

#zeropercent {
    font-size: 70px;
}

#contract {
    font-size: 55px;
}

@media (max-width: 768px) {
    #billion {
        font-size: 39px;
    }

    #zeropercent {
        font-size: 50px;
    }

    #contract {
        font-size: 36px;
    }

    .text-left h2 {
        font-size: 2.6rem;
    }

    .text-left {
        flex: 4;
        margin-top: 50px;
    }

    .how-to-buy h2 {
        font-size: 2.3rem;
    }
}

.social-links img:hover,
.footer-links img:hover {
    filter: brightness(0) saturate(100%) invert(32%) sepia(93%) saturate(7497%) hue-rotate(357deg) brightness(104%) contrast(114%);
}

.our-services {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff0000;
    transition: all 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 0, 0, 0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-description {
    opacity: 1;
}

.tokenomics-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
    color: var(--text-color);
}

.pie-chart-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -100px;
}

.chart {
    width: 100%;
    height: auto;
}

.segment {
    fill: none;
    stroke: #ff0000;
    stroke-width: 40;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.connector {
    stroke: var(--text-color);
    stroke-width: 1;
    opacity: 0.5;
}

.tokenomics-details {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    font-weight: bold;
}

.detail-card {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
}

.detail-card p {
    color: var(--text-color);
}

.label {
    fill: var(--text-color);
    font-size: 14px;
    font-family: 'Marschel', sans-serif;
}

.label .title {
    fill: #ff0000;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.label .amount {
    fill: var(--text-color);
    font-size: 12px;
}

.center-circle {
    fill: white;
    stroke: #ff0000;
    stroke-width: 2;
}

.glow-ring {
    fill: none;
    stroke: #ff0000;
    stroke-width: 1;
    opacity: 0.5;
}

.segment.presale { stroke: #ff1a1a; }
.segment.ecosystem { stroke: #ff4d4d; }
.segment.liquidity { stroke: #ff0000; }
.segment.team { stroke: #e60000; }
.segment.mm-incentives { stroke: #cc0000; }
.segment.cashback { stroke: #b30000; }
.segment.marketing { stroke: #990000; }
.segment.partners { stroke: #800000; }

.segment:hover {
    opacity: 1;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.7));
}


@media (max-width: 768px) {
    .tokenomics-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .tokenomics-section{
        margin-top: -60px;
    }
    
    .label {
        font-size: 12px;
    }
    
    .label .amount {
        font-size: 10px;
    }
    
    .connector {
        stroke-width: 0.5;
    }

    .section-title {
        font-size: 2rem;
    }

    .detail-card h3 {
        font-size: 1.2rem;
    }

    .pie-chart-container {
        margin-top: -40px;
    }

    .tokenomics-details {
        margin-top: -40px;
    }
}

@media (max-width: 480px) {
    .tokenomics-details {
        grid-template-columns: 1fr;
    }
}
.pricing-section {
       
    padding: 4rem 2rem;
    color: #000000;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    transform: translateX(-100%);
    opacity: 0;
}

.pricing-item:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    transform: translateX(0) scale(1.01);
}

.fa-dna {
    font-size: 2rem;
    color: #ff0000;
}



.item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-title {
    font-size: 1.5rem;
    color: #000000;
    margin: 0;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}   
.learn-more-btn {
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
@media (max-width: 768px) {
.pricing-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    align-items: flex-start;
    gap: 0.1rem; /* Reduce gap between cards */
}

.pricing-item {
    /* Make the card full-width of the container */
    padding: 0.4rem 1rem; /* Decrease padding to reduce height */
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
}
.pricing-item .description {
padding: 1rem;
font-size: 1rem;
color: #ffffff; /* White text */
background-color: #ff0000; /* Red background */
border-radius: 5px;
display: none; /* Hidden by default */
align-items: center;
justify-content: center; /* Center the description text */
text-align: center;
margin-left: 2px;
}

.main-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.fa-dna {
    font-size: 1.2rem; /* Smaller icon */
    color: #ff0000;
    margin-right: 0.5rem;
}

.plan-title {
    flex: 1;
    font-size: 1rem; /* Smaller font for the title */
    margin: 0;
}

.price-tag {
    font-size: 1rem; /* Smaller font for the price */
    color: #ff0000;
    text-align: right;
}

.features-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.learn-more-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.5rem;
    text-align: center;
}
}

.contact-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;

    margin: 2rem auto;
    border-radius: 8px;
   
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.youtube-social-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    
}

.youtube-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
}

.channel-info {
    display: flex;
    align-items: center;
}

.channel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.channel-details {
    display: flex;
    flex-direction: column;
}

.channel-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #cc0000;
}

.subscribe-button i {
    margin-right: 5px;
}

.video-container {
    flex-grow: 1;
    max-width: 560px;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.social-linkss {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.social-card {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.social-card a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff0000;
}

@media (max-width: 768px) {
    .youtube-card {
        flex-direction: column;
        align-items: center;
    }

    .channel-info {
        margin-bottom: 20px;
    }

    .video-container {
        width: 100%;
    }

    .social-linkss {
        flex-direction: column;
    }

    .social-card {
        margin: 10px 0;
    }
}
.social-card p{
    letter-spacing: 2px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
}

.close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ff0000;
    text-decoration: none;
    cursor: pointer;
}

#modalImage {
    width: 100%;
    height: auto;
}

#downloadBtn {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#downloadBtn:hover {
    background-color: #ff1a1a;
}
