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

body {
    font-family: 'Roboto', sans-serif;
    background: #0A0A0A;
    color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
    visibility: visible;
}

:root {
    --tbags-green: #02ff40;
    --tbags-dark-green: #00cc33;
    --tbags-muted-green: #019933;
    --tbags-black: #0A0A0A;
    --tbags-gray: #2A2A2A;
    --tbags-white: #f5f5f5;
    --tbags-text-gray: #cccccc;
    --tbags-dark-gradient: linear-gradient(45deg, #0A0A0A, #2A2A2A);
}
.faq-item p {
  display: none; /* Hide answers by default */
}
.faq-item.active p {
  display: block; /* Show on click */
}
.faq-item h3 {
  cursor: pointer; /* Make it look clickable */
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--tbags-dark-green);
    box-shadow: 0 0 12px rgba(2, 255, 64, 0.3);
    min-height: 60px;
    visibility: visible;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px var(--tbags-green));
    visibility: visible;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin: 0;
    visibility: visible;
}

.nav-links li a {
    color: var(--tbags-green);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    visibility: visible;
}

.nav-links li a:hover {
    background: rgba(2, 255, 64, 0.2);
    color: var(--tbags-white);
    box-shadow: 0 0 10px var(--tbags-dark-green);
    transform: scale(1.05);
}

.navbar .menu-toggle {
    display: none;
    font-size: 1.8em;
    color: var(--tbags-green);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    visibility: visible;
}

.navbar .menu-toggle i.fa-times {
    color: var(--tbags-dark-green);
    font-size: 2em;
}

.navbar .menu-toggle:hover i.fa-times {
    transform: rotate(90deg);
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--tbags-dark-gradient);
    overflow: hidden;
    padding: 20px;
    padding-top: 80px;
    visibility: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(2, 255, 64, 0.15), transparent 70%);
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    visibility: visible;
}

.hero-logo {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--tbags-green));
    animation: glow 2s infinite alternate;
    visibility: visible;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: var(--tbags-white);
    text-shadow: 0 0 5px var(--tbags-dark-green);
    margin: 20px 0;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 1;
    visibility: visible;
}

.hero-content p.typing-effect {
    font-size: 1.5em;
    font-family: 'Orbitron', sans-serif;
    color: var(--tbags-white);
    margin: 20px 0;
    opacity: 1;
    text-shadow: 0 0 4px var(--tbags-dark-green);
    overflow: hidden;
    white-space: nowrap;
    visibility: visible;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
}

.btn.neon-btn {
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    color: var(--tbags-white);
    background: transparent;
    border: 2px solid var(--tbags-green);
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--tbags-green);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    text-align: center;
    width: 100%;
    max-width: 220px;
    visibility: visible;
}

.btn.neon-btn.primary {
    border-color: var(--tbags-dark-green);
    box-shadow: 0 0 8px var(--tbags-dark-green);
}

.btn.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.2), transparent);
    transition: left 0.3s ease;
}

.btn.neon-btn.primary::before {
    background: linear-gradient(90deg, transparent, rgba(0, 204, 51, 0.2), transparent);
}

.btn.neon-btn:hover::before {
    left: 100%;
}

.btn.neon-btn:hover {
    background: var(--tbags-dark-green);
    color: var(--tbags-black);
    box-shadow: 0 0 12px var(--tbags-dark-green);
    transform: scale(1.05);
    animation: pulseGlow 0.5s ease-in-out;
}

.btn.neon-btn.primary:hover {
    background: var(--tbags-dark-green);
    box-shadow: 0 0 12px var(--tbags-dark-green);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 8px var(--tbags-dark-green); }
    50% { box-shadow: 0 0 16px var(--tbags-green); }
    100% { box-shadow: 0 0 8px var(--tbags-dark-green); }
}

.token-address-card {
    margin: 20px 0;
    background: var(--tbags-gray);
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 8px rgba(2, 255, 64, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    visibility: visible;
}

.token-address-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1;
    animation: borderGlow 3s linear infinite;
}

.token-address-card:hover {
    background: linear-gradient(45deg, var(--tbags-gray), rgba(2, 255, 64, 0.15));
    box-shadow: 0 0 14px rgba(2, 255, 64, 0.5);
    transform: scale(1.03);
}

.token-address-card:hover::before {
    animation: borderGlow 1.5s linear infinite;
}

@keyframes borderGlow {
    0% { border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1; }
    50% { border-image: linear-gradient(45deg, var(--tbags-dark-green), var(--tbags-green)) 1; }
    100% { border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1; }
}

.token-address-card p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    color: var(--tbags-white);
    margin-bottom: 8px;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.token-address-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    visibility: visible;
}

.token-address-content span {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    color: var(--tbags-white);
    word-break: break-all;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.copy-icon {
    color: var(--tbags-green);
    transition: all 0.3s ease;
    font-size: 1.2em;
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-address-card:hover .copy-icon {
    color: var(--tbags-dark-green);
    transform: scale(1.3) rotate(10deg);
}

.section-divider {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, transparent, var(--tbags-green), transparent);
    opacity: 0.4;
    margin: 15px 0;
    visibility: visible;
}

.about-section {
    padding: 80px 20px;
    background: var(--tbags-dark);
    text-align: center;
    visibility: visible;
}

.about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: var(--tbags-white);
    text-shadow: 0 0 8px var(--tbags-dark-green);
    margin-bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible;
}

.about-item {
    flex: 1 1 300px;
    background: var(--tbags-gray);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--tbags-dark-green);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px var(--tbags-green);
}

.about-icon {
    font-size: 3em;
    color: var(--tbags-green);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-item:hover .about-icon {
    transform: rotate(10deg) scale(1.1);
}

.about-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: var(--tbags-white);
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.about-item p {
    font-size: 1em;
    color: var(--tbags-white);
    opacity: 1;
    visibility: visible;
}

.how-it-works-section {
    padding: 80px 20px;
    background: var(--tbags-dark-gradient);
    text-align: center;
    visibility: visible;
}

.how-it-works-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: var(--tbags-white);
    text-shadow: 0 0 8px var(--tbags-dark-green);
    margin-bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible;
}

.how-it-works-item {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(2, 255, 64, 0.1));
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--tbags-green);
    border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1;
}

.how-icon {
    font-size: 2.625em; /* Reduced by 25% from 3.5em */
    color: var(--tbags-green);
    margin-bottom: 20px;
    width: 52.5px; /* Reduced by 25% from 70px */
    height: 52.5px; /* Reduced by 25% from 70px */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(2, 255, 64, 0.1);
    transition: all 0.3s ease;
    animation: pulseIcon 2s infinite ease-in-out;
    visibility: visible;
    line-height: 52.5px; /* Match new height for centering */
    text-align: center; /* Ensure horizontal centering */
}

.how-it-works-item:hover .how-icon {
    animation: pulseIcon 1s infinite ease-in-out;
    box-shadow: 0 0 12px var(--tbags-green);
}

.how-it-works-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: var(--tbags-white);
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.how-it-works-item p {
    font-size: 1em;
    color: var(--tbags-white);
    opacity: 1;
    visibility: visible;
}

.token-section {
    padding: 80px 20px;
    background: var(--tbags-dark-gradient);
    text-align: center;
    visibility: visible;
}

.token-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: var(--tbags-white);
    text-shadow: 0 0 8px var(--tbags-dark-green);
    margin-bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.token-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible;
}

.token-info {
    width: 100%;
    max-width: 150px;
    height: auto;
    background: var(--tbags-gray);
    border-radius: 10px;
    border: 2px solid var(--tbags-dark-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    padding: 15px;
    visibility: visible;
}

.token-info:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px var(--tbags-green);
}

.token-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    color: var(--tbags-white);
    margin-bottom: 8px;
    opacity: 1;
    visibility: visible;
}

.token-info p {
    font-size: 1em;
    color: var(--tbags-white);
    opacity: 1;
    visibility: visible;
}

.faq-section {
    padding: 80px 20px;
    background: var(--tbags-dark);
    text-align: center;
    visibility: visible;
}

.faq-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: var(--tbags-white);
    text-shadow: 0 0 8px var(--tbags-dark-green);
    margin-bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    visibility: visible;
}

.faq-item {
    margin-bottom: 10px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.faq-question {
    background: var(--tbags-dark-gradient);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid var(--tbags-dark-green);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    color: var(--tbags-white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.faq-question:hover {
    background: rgba(2, 255, 64, 0.2);
    box-shadow: 0 0 10px var(--tbags-dark-green);
}

.faq-answer {
    display: none;
    padding: 15px;
    background: var(--tbags-gray);
    border-radius: 0 0 8px 8px;
    border: 2px solid var(--tbags-dark-green);
    border-top: none;
    font-size: 1em;
    color: var(--tbags-white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.faq-answer.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

footer {
    padding: 50px 20px;
    background: var(--tbags-dark);
    text-align: center;
    border-top: 2px solid var(--tbags-dark-green);
    visibility: visible;
}

footer p {
    font-size: 1.2em;
    color: var(--tbags-white);
    opacity: 1;
    visibility: visible;
}

footer p.disclaimer {
    font-size: 0.9em;
    color: var(--tbags-text-gray);
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
}

footer a {
    color: var(--tbags-green);
    text-decoration: none;
}

footer a:hover {
    color: var(--tbags-dark-green);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    visibility: visible;
}

.social-links a {
    font-size: 2em;
    color: var(--tbags-green);
    transition: all 0.3s ease;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}

.social-links a:hover {
    color: var(--tbags-dark-green);
    transform: scale(1.2) rotate(10deg);
    animation: pulseSocial 0.5s ease-in-out;
}

@keyframes pulseSocial {
    0% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.4) rotate(10deg); }
    100% { transform: scale(1.2) rotate(10deg); }
}

.footer-cta {
    margin-top: 20px;
    display: inline-block;
    visibility: visible;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px 15px;
    font-size: 1.1em;
    z-index: 1000;
    background: var(--tbags-gray);
    color: var(--tbags-green);
    text-decoration: none;
    border: 2px solid var(--tbags-dark-green);
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--tbags-dark-green);
    color: var(--tbags-black);
    box-shadow: 0 0 10px var(--tbags-dark-green);
    transform: scale(1.05);
}

#back-to-top.visible {
    display: block;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--tbags-gray);
    color: var(--tbags-white);
    padding: 12px 25px;
    border-radius: 8px;
    border: 2px solid var(--tbags-dark-green);
    box-shadow: 0 0 10px var(--tbags-dark-green);
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { text-shadow: 0 0 4px var(--tbags-green); filter: drop-shadow(0 0 4px var(--tbags-green)); }
    100% { text-shadow: 0 0 12px var(--tbags-green); filter: drop-shadow(0 0 12px var(--tbags-green)); }
}

@keyframes pulseSocial {
    0% { transform: scale(1.2) rotate(10deg); }
    50% { transform: scale(1.4) rotate(10deg); }
    100% { transform: scale(1.2) rotate(10deg); }
}

@keyframes borderGlow {
    0% { border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1; }
    50% { border-image: linear-gradient(45deg, var(--tbags-dark-green), var(--tbags-green)) 1; }
    100% { border-image: linear-gradient(45deg, var(--tbags-green), var(--tbags-dark-green)) 1; }
}

@keyframes pulseIcon {
    0% { transform: scale(1); box-shadow: 0 0 8px var(--tbags-green); }
    50% { transform: scale(1.1); box-shadow: 0 0 12px var(--tbags-green); }
    100% { transform: scale(1); box-shadow: 0 0 8px var(--tbags-green); }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        min-height: 50px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--tbags-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 999;
        animation: slideIn 0.5s ease-in-out;
        visibility: visible;
    }
    .nav-links.active {
        display: flex;
    }
    @keyframes slideIn {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    .nav-links li a {
        font-size: 1.6em;
        padding: 15px 25px;
        min-height: 48px;
    }
    .navbar .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1000;
    }
    .navbar .logo img {
        height: 35px;
    }
    .hero-section {
        padding: 40px 15px;
        padding-top: 70px;
    }
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-logo {
        max-width: 250px;
        margin: 0 auto 20px;
    }
    .logo-text {
        font-size: 2em;
        margin: 20px 0;
    }
    .hero-content p.typing-effect {
        font-size: 1.2em;
        margin: 20px 0;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 400px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        display: flex;
    }
    .btn.neon-btn {
        padding: 10px 25px;
        font-size: 1.1em;
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
    }
    .token-address-card {
        padding: 10px 15px;
        margin: 20px 0;
        max-width: 100%;
    }
    .token-address-card::before {
        animation: borderGlow 4s linear infinite;
    }
    .token-address-card p {
        font-size: 0.9em;
    }
    .token-address-content span {
        font-size: 0.85em;
    }
    .copy-icon {
        font-size: 1em;
    }
    .about-section {
        padding: 50px 15px;
    }
    .about-section h2 {
        font-size: 2.2em;
    }
    .about-content {
        gap: 15px;
    }
    .about-item {
        padding: 15px;
        flex: 1 1 100%;
    }
    .about-item h3 {
        font-size: 1.3em;
    }
    .about-item p {
        font-size: 0.9em;
    }
    .how-it-works-section {
        padding: 50px 15px;
    }
    .how-it-works-section h2 {
        font-size: 2.2em;
    }
    .how-it-works-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .how-it-works-item {
        padding: 15px;
    }
    .how-icon {
        font-size: 2.25em; /* Reduced by 25% from 3em */
        width: 45px; /* Reduced by 25% from 60px */
        height: 45px; /* Reduced by 25% from 60px */
        line-height: 45px; /* Adjusted for smaller screens */
        text-align: center;
    }
    .how-it-works-item h3 {
        font-size: 1.3em;
    }
    .how-it-works-item p {
        font-size: 0.9em;
    }
    .token-section {
        padding: 50px 15px;
    }
    .token-section h2 {
        font-size: 2.2em;
    }
    .token-grid {
        gap: 10px;
    }
    .token-info {
        max-width: 120px;
        padding: 12px;
    }
    .token-info h3 {
        font-size: 1.1em;
    }
    .token-info p {
        font-size: 0.9em;
    }
    .faq-section {
        padding: 50px 15px;
    }
    .faq-section h2 {
        font-size: 2.2em;
    }
    .faq-content {
        gap: 10px;
    }
    .faq-question {
        font-size: 1.1em;
        padding: 12px;
    }
    .faq-answer {
        font-size: 0.9em;
        padding: 12px;
    }
    footer {
        padding: 40px 15px;
    }
    footer p {
        font-size: 1.1em;
    }
    footer p.disclaimer {
        font-size: 0.8em;
    }
    .social-links a {
        font-size: 1.8em;
    }
    .notification {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
    }
    #back-to-top {
        padding: 8px 12px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
        min-height: 48px;
    }
    .navbar .logo img {
        height: 30px;
        margin-right: 10px;
    }
    .nav-links li a {
        font-size: 1.4em;
        padding: 12px 20px;
    }
    .navbar .menu-toggle {
        top: 12px;
        right: 12px;
    }
    .hero-section {
        padding: 30px 10px;
        padding-top: 60px;
    }
    .hero-logo {
        max-width: 200px;
        margin: 0 auto 15px;
    }
    .logo-text {
        font-size: 1.8em;
        margin: 15px 0;
    }
    .hero-content p.typing-effect {
        font-size: 1.1em;
        margin: 15px 0;
    }
    .hero-buttons {
        gap: 10px;
        max-width: 300px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        display: flex;
    }
    .btn.neon-btn {
        padding: 8px 20px;
        font-size: 1em;
        max-width: 180px;
        width: 100%;
        margin: 0 auto;
    }
    .token-address-card {
        padding: 8px 12px;
        margin: 15px 0;
    }
    .token-address-card::before {
        animation: borderGlow 5s linear infinite;
    }
    .token-address-card p {
        font-size: 0.85em;
    }
    .token-address-content span {
        font-size: 0.8em;
    }
    .copy-icon {
        font-size: 0.9em;
    }
    .about-section {
        padding: 40px 10px;
    }
    .about-section h2 {
        font-size: 2em;
    }
    .about-content {
        gap: 10px;
    }
    .about-item {
        padding: 12px;
    }
    .about-item h3 {
        font-size: 1.2em;
    }
    .about-item p {
        font-size: 0.85em;
    }
    .how-it-works-section {
        padding: 40px 10px;
    }
    .how-it-works-section h2 {
        font-size: 2em;
    }
    .how-it-works-content {
        gap: 10px;
    }
    .how-it-works-item {
        padding: 12px;
    }
    .how-icon {
        font-size: 1.875em; /* Reduced by 25% from 2.5em */
        width: 37.5px; /* Reduced by 25% from 50px */
        height: 37.5px; /* Reduced by 25% from 50px */
        line-height: 37.5px; /* Adjusted for smaller screens */
        text-align: center;
    }
    .how-it-works-item h3 {
        font-size: 1.2em;
    }
    .how-it-works-item p {
        font-size: 0.85em;
    }
    .token-section {
        padding: 40px 10px;
    }
    .token-section h2 {
        font-size: 2em;
    }
    .token-grid {
        gap: 8px;
    }
    .token-info {
        max-width: 100px;
        padding: 10px;
    }
    .token-info h3 {
        font-size: 1em;
    }
    .token-info p {
        font-size: 0.85em;
    }
    .faq-section {
        padding: 40px 10px;
    }
    .faq-section h2 {
        font-size: 2em;
    }
    .faq-content {
        gap: 10px;
    }
    .faq-question {
        font-size: 1em;
        padding: 10px;
    }
    .faq-answer {
        font-size: 0.85em;
        padding: 10px;
    }
    footer {
        padding: 30px 10px;
    }
    footer p {
        font-size: 1em;
    }
    footer p.disclaimer {
        font-size: 0.75em;
    }
    .social-links a {
        font-size: 1.6em;
    }
    .notification {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.8em;
    }
    #back-to-top {
        padding: 6px 10px;
        font-size: 0.9em;
    }
}