body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('./assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #222;
}

/* Mobile background image */
@media (max-width: 600px) {
    body {
        background: url('./assets/bg-mobile.jpg') no-repeat center center fixed;
        background-size: cover;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.0);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    border-radius: 50%;
    background: #fff;
    width: 60px;
    height: 60px;
}
.logo-text {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #b6ff6a;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #b6ff6a;
}
.buy-now {
    background: linear-gradient(90deg, #b6ff6a 0%, #7ed957 100%);
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.buy-now:hover {
    background: linear-gradient(90deg, #7ed957 0%, #b6ff6a 100%);
}

.home-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 8vw 0 8vw;
    min-height: 80vh;
}
.left-panel {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}
.evil-pepe-title {
    font-size: 3.5rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #fff;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 2px;
}
.evil-pepe-title span {
    color: #b6ff6a;
    text-shadow: 1px 2px 0 #222;
}
.meme-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
}
.meme-img {
    /* width: 300px; */
    /* height: 250px; */
    border-radius: 0;
    box-shadow: none;
    background: none;
    border: none;
}

/* Desktop/Mobile meme image handling */
.mobile-meme {
    display: none;
}

.desktop-meme {
    display: block;
}

@media (max-width: 600px) {
    .mobile-meme {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    .desktop-meme {
        display: none;
    }
}

.speech-bubble {
    position: absolute;
    left: 220px;
    top: 10px;
    background: #fff;
    color: #222;
    border-radius: 18px;
    padding: 18px 22px;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    min-width: 260px;
    z-index: 2;
}
.speech-bubble:after {
    content: '';
    position: absolute;
    left: -24px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 24px solid #fff;
}

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
}

.presale-dashboard {
    background: linear-gradient(135deg, #232e1e 0%, #3a7d2c 100%);
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(34,51,34,0.18), 0 1.5px 0 #b6ff6a inset;
    border: 2px solid #b6ff6a;
    padding: 44px 36px 36px 36px;
    min-width: 360px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.buy-now-header {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #b6ff6a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.presale-dashboard:hover {
    box-shadow: 0 12px 48px 0 rgba(34,51,34,0.28), 0 2.5px 0 #7ed957 inset;
    border-color: #7ed957;
}

.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #b6ff6a;
    font-weight: 600;
}
.countdown-timer {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 28px;
    letter-spacing: 2px;
}
.dashboard-btn {
    background: #b6ff6a;
    color: #222;
    border: none;
    border-radius: 24px;
    padding: 12px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    width: 100%;
    margin-bottom: 8px;
}
.dashboard-btn:hover {
    background: #7ed957;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    color: #222;
    margin: 8% auto;
    padding: 32px 36px;
    border-radius: 18px;
    width: 400px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    position: relative;
}
.close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    color: #3a7d2c;
    cursor: pointer;
    font-weight: bold;
}
.dashboard-section {
    margin-bottom: 28px;
}
.dashboard-section h3 {
    margin-bottom: 8px;
    color: #3a7d2c;
}
#stake-amount {
    width: 70%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #b6ff6a;
    margin-right: 8px;
    font-size: 1rem;
}
#stake-btn, #claim-referral-btn {
    background: #7ed957;
    color: #222;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
#stake-btn:hover, #claim-referral-btn:hover {
    background: #b6ff6a;
}

/* New referral styles */
#copy-referral-link {
    background: #7ed957;
    color: #222;
    border: none;
    border-radius: 12px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    display: block;
}

#copy-referral-link:hover {
    background: #b6ff6a;
}

#active-referrer-note {
    background-color: rgba(49, 199, 82, 0.1);
    border-left: 3px solid #7ed957;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .home-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 2vw 0 2vw;
        gap: 30px;
    }
    .left-panel {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
    }
    .right-panel {
        margin-top: 0;
        width: 100%;
        max-width: 500px;
        justify-content: center;
        align-items: center;
    }
    .presale-dashboard {
        min-width: unset;
        width: 100%;
        max-width: 500px;
        padding: 24px 16px;
        box-sizing: border-box;
    }
    .countdown-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 6px;
        margin-bottom: 18px;
        padding: 0 4px;
        box-sizing: border-box;
    }
    .countdown-box {
        flex: 1;
        min-width: 0;
        padding: 6px 2px;
        font-size: 0.9rem;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .countdown-box span {
        font-size: 1rem;
        line-height: 1;
    }
    .countdown-label {
        font-size: 0.7rem;
        margin-top: 2px;
        line-height: 1;
    }
    .progress-bar-container {
        margin: 16px 0 10px 0;
    }
    .total-sold {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .price-row {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    .payment-toggle {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-bottom: 14px;
    }
    .pay-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 1rem;
    }
    .input-row {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-bottom: 12px;
        width: 100%;
        padding: 0 4px;
        box-sizing: border-box;
    }
    .input-group {
        flex: 1;
        min-width: 0;
    }
    .input-group label {
        font-size: 0.95rem;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .input-icon {
        width: 20px;
        height: 20px;
        left: 10px;
    }
    #eth-amount, #pepezen-amount {
        padding: 8px 10px 8px 38px;
        font-size: 0.95rem;
    }
    .not-enough {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    .dashboard-btn {
        padding: 12px 0;
        font-size: 1.1rem;
        margin-top: 10px;
    }
    .topup-link {
        font-size: 1.08rem;
        margin-top: 4px;
    }
    .navbar {
        position: relative;
        flex-direction: row;
        align-items: center;
        padding: 12px 4vw;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: linear-gradient(135deg, #232e1e 0%, #3a7d2c 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 18px 24px;
        box-shadow: 0 8px 32px rgba(34,51,34,0.18);
        z-index: 1200;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        margin-bottom: 16px;
        width: 100%;
    }
    .nav-links li:last-child {
        margin-bottom: 0;
    }
    .nav-links .buy-now {
        width: 90%;
        margin: 0 0 12px 0;
        font-size: 1.1rem;
        padding: 12px 0;
        display: block;
    }
    .nav-links .lang-flag {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 8px;
        display: block;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 18px;
        top: 18px;
        z-index: 1300;
    }
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 600px) {
    .home-section {
        padding: 20px 4vw 0 4vw;
    }
    .left-panel {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .evil-pepe-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .meme-container {
        width: 100%;
        justify-content: center;
    }
    .speech-bubble {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 280px;
        z-index: 5;
    }
    .speech-bubble:after {
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        border-right: 18px solid transparent;
        border-left: 18px solid transparent;
        border-top: 18px solid #fff;
        border-bottom: none;
    }
    .presale-dashboard {
        padding: 20px 12px;
    }
    .buy-now-header {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .countdown-row {
        gap: 4px;
        padding: 0 2px;
        margin-bottom: 16px;
    }
    .countdown-box {
        padding: 4px 1px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    .countdown-box span {
        font-size: 0.9rem;
    }
    .countdown-label {
        font-size: 0.65rem;
        margin-top: 1px;
    }
    .progress-bar-container {
        margin: 14px 0 8px 0;
    }
    .progress-bar-bg {
        height: 14px;
    }
    .progress-bar-text {
        font-size: 0.95rem;
    }
    .total-sold {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .price-row {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .payment-toggle {
        gap: 12px;
        margin-bottom: 12px;
    }
    .pay-btn {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
    .pay-icon {
        width: 20px;
        height: 20px;
    }
    .input-row {
        gap: 8px;
        padding: 0 2px;
        margin-bottom: 10px;
    }
    .input-group label {
        font-size: 0.85rem;
    }
    .input-icon {
        width: 18px;
        height: 18px;
        left: 8px;
    }
    #eth-amount, #pepezen-amount {
        padding: 6px 8px 6px 34px;
        font-size: 0.9rem;
    }
    .not-enough {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    .dashboard-btn {
        padding: 10px 0;
        font-size: 1rem;
        margin-top: 8px;
    }
    .topup-link {
        font-size: 0.95rem;
    }
    .navbar {
        padding: 8px 2vw;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
}

.lang-flag {
    width: 32px;
    height: 22px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    vertical-align: middle;
    cursor: pointer;
    transition: box-shadow 0.2s, border 0.2s;
}

.lang-flag:hover {
    box-shadow: 0 2px 8px #7ed95788;
    border: 2px solid #b6ff6a;
}

.lang-selector {
    position: relative;
    cursor: pointer;
}

.selected-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.selected-lang:hover {
    background: rgba(182, 255, 106, 0.1);
}

.lang-code {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.lang-arrow {
    color: #b6ff6a;
    font-size: 0.7rem;
    margin-left: 2px;
    transition: transform 0.3s;
}

.lang-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: linear-gradient(135deg, #232e1e 0%, #3a7d2c 100%);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(34,51,34,0.25);
    border: 2px solid #b6ff6a;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    max-height: 300px;
    overflow-y: auto;
}

.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: rgba(182, 255, 106, 0.2);
}

.lang-name {
    color: #fff;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .selected-lang {
        padding: 3px 8px;
    }
    
    .lang-code {
        font-size: 0.8rem;
    }
    
    .lang-dropdown {
        width: 160px;
        right: -10px;
    }
    
    .lang-option {
        padding: 8px 12px;
    }
    
    .lang-name {
        font-size: 0.85rem;
    }
}

.countdown-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}
.countdown-box {
    background: linear-gradient(135deg, #2e3d25 0%, #7ed957 100%);
    color: #b6ff6a;
    border-radius: 14px;
    padding: 12px 16px 8px 16px;
    min-width: 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #b6ff6a;
    flex: 1;
}
.countdown-box span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 4px #7ed95744;
    line-height: 1;
}
.countdown-label {
    font-size: 0.85rem;
    color: #b6ff6a;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px #232e1e;
    line-height: 1;
}
.progress-bar-container {
    width: 100%;
    margin: 16px 0 10px 0;
}
.progress-bar-bg {
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #232e1e 0%, #3a7d2c 100%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2px;
    border: 1.5px solid #b6ff6a;
    box-shadow: 0 1px 6px #7ed95733;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #b6ff6a 0%, #7ed957 100%);
    border-radius: 10px;
    transition: width 0.5s;
    box-shadow: 0 0 8px #b6ff6a88;
}
.progress-bar-text {
    font-size: 1.05rem;
    color: #b6ff6a;
    text-align: right;
    margin-top: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}
.total-sold {
    font-size: 1.18rem;
    color: #fff;
    margin-bottom: 6px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.price-row {
    font-size: 1.08rem;
    color: #b6ff6a;
    margin-bottom: 14px;
    text-align: center;
    font-weight: 600;
}
.payment-toggle {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 14px;
}
.pay-btn {
    background: #232e1e;
    color: #b6ff6a;
    border: 2px solid #b6ff6a;
    border-radius: 16px;
    padding: 10px 32px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: 0 1px 4px #7ed95722;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pay-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.pay-btn.active, .pay-btn:hover {
    background: #b6ff6a;
    color: #232e1e;
    border-color: #7ed957;
}
.input-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    justify-content: center;
    width: 100%;
}
.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}
.input-group label {
    font-size: 1.01rem;
    color: #b6ff6a;
    margin-bottom: 2px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.input-with-icon {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    object-fit: contain;
    z-index: 1;
}

#eth-amount, #pepezen-amount {
    width: 100%;
    padding: 10px 10px 10px 44px;
    border-radius: 12px;
    border: 1.5px solid #b6ff6a;
    font-size: 1.08rem;
    background: #232e1e;
    color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#eth-amount:focus, #pepezen-amount:focus {
    border-color: #7ed957;
    outline: none;
}
.not-enough {
    color: #ff4d4d;
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}
#buy-now-btn {
    width: 100%;
    margin-bottom: 8px;
}
.topup-link {
    display: block;
    color: #0f0f0f;
    font-size: 1.08rem;
    text-align: center;
    margin-top: 4px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    z-index: 1200;
    margin-left: 12px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #b6ff6a;
    border-radius: 2px;
    transition: 0.3s;
}

/* Remove the grid styles we added */
.presale-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar-container {
    width: 100%;
}

.input-row {
    display: flex;
    width: 100%;
}

.payment-toggle {
    display: flex;
    justify-content: center;
}

@media (min-width: 901px) {
    .input-row {
        flex-direction: row;
    }
}

/* Wallet Modal Styles */
.wallet-modal-content {
    max-width: 480px;
    padding: 32px;
    text-align: center;
}

.wallet-subtitle {
    color: #666;
    margin: -8px 0 24px 0;
    font-size: 1.1rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.wallet-option:hover {
    border-color: #b6ff6a;
    background: #f8fff3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(182, 255, 106, 0.1);
}

.wallet-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    object-fit: contain;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wallet-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}

.wallet-desc {
    font-size: 0.9rem;
    color: #666;
}

.wallet-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.wallet-footer p {
    color: #666;
    margin-bottom: 8px;
}

.learn-more {
    color: #3a7d2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.learn-more:hover {
    color: #b6ff6a;
    text-decoration: underline;
}

/* Hide not-enough message by default */
.not-enough {
    display: none;
}

/* Mobile styles for wallet modal */
@media (max-width: 600px) {
    .wallet-modal-content {
        padding: 24px 16px;
        margin: 16px;
    }
    
    .wallet-option {
        padding: 12px;
    }
    
    .wallet-icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .wallet-name {
        font-size: 1rem;
    }
    
    .wallet-desc {
        font-size: 0.85rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 8vw;
    background: url('./assets/about-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for about section */
@media (max-width: 600px) {
    .about-section {
        background: url('./assets/about-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw;
    }
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.25);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #b6ff6a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text-container {
    background: rgba(35, 46, 30, 0.85);
    border-radius: 20px;
    border: 2px solid #b6ff6a;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.about-paragraph {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-highlight {
    color: #b6ff6a;
    font-weight: bold;
    font-size: 1.15rem;
}

@media (max-width: 600px) {
    .about-text-container {
        padding: 20px 15px;
    }

    .about-paragraph {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .about-highlight {
        font-size: 1rem;
    }
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid #b6ff6a;
}

/* Feature Card Flip Effect - Updated for full GIF front */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    perspective: 1000px; /* Add perspective for 3D effect */
}

.feature-card {
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for flip cards */
    cursor: pointer;
    transition: transform 0.3s;
    transform-style: preserve-3d;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(34, 51, 34, 0.25);
    border-radius: 16px;
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(180deg);
}

.feature-card-front, .feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 16px;
    border: 2px solid #b6ff6a;
    box-sizing: border-box;
}

.feature-card-front {
    padding: 0; /* Remove padding to allow full GIF */
    overflow: hidden; /* Ensure GIF stays within borders */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(35, 46, 30, 0.85) 0%, rgba(58, 125, 44, 0.85) 100%);
}

.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire front face */
    border-radius: 14px; /* Slightly smaller than container to show border */
    display: block;
}

.feature-card-back {
    background: linear-gradient(135deg, rgba(58, 125, 44, 0.85) 0%, rgba(35, 46, 30, 0.85) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-title {
    font-size: 1.4rem;
    color: #b6ff6a;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.feature-desc {
    display: none; /* Hide description on front */
}

.feature-card-back .feature-details {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.feature-card-back .feature-btn {
    background: #b6ff6a;
    color: #232e1e;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}

.feature-card-back .feature-btn:hover {
    background: #7ed957;
    transform: scale(1.05);
}

/* Mobile Responsive Styles for Feature Cards */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        height: 280px;
    }
    
    /* Enable click-to-flip on mobile instead of hover */
    .feature-card:hover .feature-card-inner {
        transform: none;
    }
    
    .feature-card.flipped .feature-card-inner {
        transform: rotateY(180deg);
    }
}

/* Tokenomics Section Styles */
.tokenomics-section {
    padding: 80px 8vw;
    background: url('./assets/tokenomics-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for tokenomics section */
@media (max-width: 600px) {
    .tokenomics-section {
        background: url('./assets/tokenomics-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw;
    }
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.25);
    z-index: 1;
}

.tokenomics-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* Chart image optimization */
.chart-image {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #b6ff6a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.chart-image:hover {
    transform: scale(1.05);
}

.token-info {
    color: #fff;
}

.token-info h3 {
    font-size: 1.8rem;
    color: #b6ff6a;
    margin-bottom: 20px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.token-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(182, 255, 106, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.token-detail:last-child {
    border-bottom: none;
}

.detail-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
}

.detail-value {
    font-size: 1.1rem;
    color: #b6ff6a;
}

.allocation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.allocation-card {
    background: linear-gradient(135deg, rgba(35, 46, 30, 0.85) 0%, rgba(58, 125, 44, 0.85) 100%);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 51, 34, 0.25);
    border: 2px solid #b6ff6a;
}

.allocation-percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: #b6ff6a;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.allocation-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.allocation-desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Mobile Responsive Styles for Tokenomics Section */
@media (max-width: 900px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tokenomics-chart {
        order: -1;
    }
    
    .allocation-cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .tokenomics-section {
        padding: 40px 4vw;
        min-height: auto;
    }
    
    .token-info h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .token-detail {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }
    
    .detail-name, .detail-value {
        font-size: 0.9rem;
    }
    
    .allocation-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .allocation-card {
        padding: 15px 12px;
    }
    
    .allocation-percentage {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .allocation-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .allocation-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .chart-container {
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .chart-image {
        border-width: 2px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .tokenomics-chart {
        margin-bottom: 25px;
    }
    
    /* Force chart to be smaller on mobile */
    .chart-container img {
        max-width: 100%;
        height: auto;
    }
}

/* Roadmap Section Styles */
.roadmap-section {
    padding: 80px 8vw;
    background: url('./assets/roadmap-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for roadmap section */
@media (max-width: 600px) {
    .roadmap-section {
        background: url('./assets/roadmap-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw;
    }
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.25);
    z-index: 1;
}

.roadmap-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.roadmap-intro {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.roadmap-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #b6ff6a, #3a7d2c);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #b6ff6a;
    border: 4px solid #3a7d2c;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(182, 255, 106, 0.6);
}

.timeline-item:nth-child(odd)::after {
    right: -16px;
}

.timeline-item:nth-child(even)::after {
    left: -16px;
}

.timeline-item.completed::after {
    background-color: #3a7d2c;
    border: 4px solid #b6ff6a;
}

.timeline-content {
    padding: 20px;
    background: linear-gradient(135deg, rgba(35, 46, 30, 0.85) 0%, rgba(58, 125, 44, 0.85) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(34, 51, 34, 0.25);
    border: 2px solid #b6ff6a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(34, 51, 34, 0.28);
}

.timeline-phase {
    font-size: 1.2rem;
    color: #b6ff6a;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.timeline-phase-icon {
    width: 24px;
    height: 24px;
}

.timeline-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.timeline-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.timeline-list {
    margin-top: 15px;
    padding-left: 20px;
}

.timeline-list li {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.timeline-list li::marker {
    color: #b6ff6a;
}

.timeline-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 15px;
}

.status-completed {
    background-color: #b6ff6a;
    color: #232e1e;
}

.status-in-progress {
    background-color: #ffd166;
    color: #232e1e;
}

.status-upcoming {
    background-color: #3a7d2c;
    color: #fff;
    border: 1px solid #b6ff6a;
}

/* Mobile Responsive Styles for Roadmap Section */
@media (max-width: 900px) {
    .roadmap-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 28px;
    }
}

@media (max-width: 600px) {
    .roadmap-section {
        padding: 50px 4vw;
        min-height: auto;
    }
    
    .roadmap-intro p {
        font-size: 1rem;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 18px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-phase {
        font-size: 1.1rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-desc {
        font-size: 0.95rem;
    }
    
    .timeline-list li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
}

/* How to Buy Section Styles */
.howtobuy-section {
    padding: 80px 8vw;
    background: url('./assets/howtobuy-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for how to buy section */
@media (max-width: 600px) {
    .howtobuy-section {
        background: url('./assets/howtobuy-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw;
    }
}

.howtobuy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.25);
    z-index: 1;
}

.howtobuy-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.howtobuy-intro {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.howtobuy-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.step-card {
    background: linear-gradient(135deg, rgba(35, 46, 30, 0.85) 0%, rgba(58, 125, 44, 0.85) 100%);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(34, 51, 34, 0.25);
    border: 2px solid #b6ff6a;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(34, 51, 34, 0.28);
}

.step-number {
    background: #b6ff6a;
    color: #232e1e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(182, 255, 106, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.4rem;
    color: #b6ff6a;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.step-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.step-tip {
    background: rgba(182, 255, 106, 0.1);
    border-left: 3px solid #b6ff6a;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #fff;
    text-align: left;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0 8px 8px 0;
}

.step-tip strong {
    color: #b6ff6a;
    display: block;
    margin-bottom: 5px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid #b6ff6a;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.buy-direct-container {
    text-align: center;
    margin-top: 40px;
}

.buy-direct-btn {
    background: linear-gradient(90deg, #b6ff6a 0%, #7ed957 100%);
    color: #232e1e;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(182, 255, 106, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.buy-direct-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(182, 255, 106, 0.4);
    background: linear-gradient(90deg, #7ed957 0%, #b6ff6a 100%);
}

.buy-direct-btn img {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive Styles for How to Buy Section */
@media (max-width: 900px) {
    .steps-container {
        gap: 20px;
    }
    
    .step-card {
        width: calc(50% - 20px);
        padding: 25px 20px;
    }
}

@media (max-width: 600px) {
    .howtobuy-section {
        padding: 50px 4vw;
        min-height: auto;
    }
    
    .howtobuy-intro p {
        font-size: 1rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .step-card {
        width: 100%;
        max-width: 320px;
        padding: 25px 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .step-desc {
        font-size: 0.95rem;
    }
    
    .step-tip {
        font-size: 0.85rem;
    }
    
    .buy-direct-btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
}

/* Update with more compact design for mobile */
@media (max-width: 600px) {
    .howtobuy-section {
        padding: 40px 4vw;
    }
    
    .steps-container {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .step-card {
        max-width: 260px;
        padding: 15px 12px;
        box-shadow: 0 4px 16px rgba(34, 51, 34, 0.25);
        min-height: 0;
        height: auto;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .step-desc {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .step-tip {
        padding: 6px 10px;
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .step-tip strong {
        margin-bottom: 2px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 8vw;
    background: url('./assets/faq-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for FAQ section */
@media (max-width: 600px) {
    .faq-section {
        background: url('./assets/faq-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw;
    }
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.25);
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.faq-intro {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.faq-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(35, 46, 30, 0.85) 0%, rgba(58, 125, 44, 0.85) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(34, 51, 34, 0.25);
    border: 2px solid #b6ff6a;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(34, 51, 34, 0.28);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    transition: background 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.faq-question:hover {
    background: rgba(182, 255, 106, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #b6ff6a;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 25px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #b6ff6a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.faq-answer a:hover {
    color: #7ed957;
    text-decoration: underline;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category {
    background: #232e1e;
    color: #b6ff6a;
    border: 2px solid #b6ff6a;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover,
.faq-category.active {
    background: #b6ff6a;
    color: #232e1e;
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(35, 46, 30, 0.6);
    border-radius: 16px;
    border: 2px solid #b6ff6a;
}

.faq-contact h3 {
    font-size: 1.5rem;
    color: #b6ff6a;
    margin-bottom: 15px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.faq-contact p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #b6ff6a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
    background: #7ed957;
}

.social-icon {
    width: 30px;
    height: 30px;
}

/* Mobile Responsive Styles for FAQ Section */
@media (max-width: 900px) {
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 50px 4vw;
        min-height: auto;
    }
    
    .faq-intro p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
    
    .faq-contact {
        padding: 20px;
        margin-top: 40px;
    }
    
    .faq-contact h3 {
        font-size: 1.3rem;
    }
    
    .faq-contact p {
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
}

/* Footer Section Styles */
.footer-section {
    padding: 80px 8vw 40px;
    background: url('./assets/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile background image for footer section */
@media (max-width: 600px) {
    .footer-section {
        background: url('./assets/footer-bg-mobile.jpg') no-repeat center center;
        background-size: cover;
        padding: 60px 4vw 30px;
    }
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 46, 30, 0.3);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #b6ff6a;
    letter-spacing: 1px;
}

.footer-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b6ff6a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    background: #7ed957;
}

.footer-social-icon {
    width: 22px;
    height: 22px;
}

.footer-links-section {
    flex: 1;
    min-width: 160px;
}

.footer-links-title {
    color: #b6ff6a;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-links a:hover {
    color: #b6ff6a;
}

.footer-links a::before {
    content: '→';
    color: #b6ff6a;
    font-weight: bold;
}

.footer-newsletter {
    flex: 1.5;
    min-width: 300px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    border: 2px solid #b6ff6a;
    background: #232e1e;
    color: #fff;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #7ed957;
}

.newsletter-btn {
    background: linear-gradient(90deg, #b6ff6a 0%, #7ed957 100%);
    color: #232e1e;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: linear-gradient(90deg, #7ed957 0%, #b6ff6a 100%);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(182, 255, 106, 0.3);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #fff;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: #b6ff6a;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #b6ff6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #7ed957;
    transform: translateY(-5px);
}

.back-to-top-icon {
    width: 24px;
    height: 24px;
    fill: #232e1e;
}

/* Mobile Responsive Styles for Footer Section */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-section {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-section {
        padding: 50px 4vw 30px;
    }
    
    .footer-logo img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-links-title {
        font-size: 1.2rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top-icon {
        width: 20px;
        height: 20px;
    }
}

/* Disclaimer Styles */
.disclaimer {
    background: rgba(35, 46, 30, 0.8);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid #b6ff6a;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.disclaimer p {
    margin: 0;
}

/* Presale Info Band Styles - Enhanced for better visibility */
.presale-info-band {
    width: 100%;
    background: linear-gradient(90deg, rgba(35, 46, 30, 0.8) 0%, rgba(58, 125, 44, 0.8) 100%);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #b6ff6a;
    border-bottom: 2px solid #b6ff6a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.presale-info-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.presale-info-item {
    display: inline-flex;
    align-items: center;
    margin-right: 50px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 1.05rem;
}

.presale-info-item span {
    color: #b6ff6a;
    margin: 0 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Mobile responsive styles for presale band and disclaimer */
@media (max-width: 600px) {
    .disclaimer {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .presale-info-band {
        padding: 10px 0;
    }
    
    .presale-info-item {
        margin-right: 30px;
        font-size: 0.9rem;
    }
}

/* Improve mobile display for tokenomics chart */
@media (max-width: 600px) {
    .chart-container {
        max-width: 200px;
        margin: 0 auto 20px;
    }
    
    .chart-image {
        border-width: 2px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .tokenomics-chart {
        margin-bottom: 25px;
    }
    
    /* Force chart to be smaller on mobile */
    .chart-container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 600px) {
    .chart-container {
        max-width: 100%;
    }
    
    .chart-image {
        width: 100%;
    }
    
    .tokenomics-chart {
        width: 100%;
    }
    
    .chart-container img {
        width: 100%;
    }
}

/* Mobile Wallet Options Styling */
#mobile-wallet-modal {
    font-family: var(--font-family);
}

#mobile-wallet-modal button {
    font-family: var(--font-family);
}

#mobile-wallet-modal button:active {
    transform: scale(0.98);
}

#wallet-loading-overlay {
    font-family: var(--font-family);
}

/* Wallet app button animation */
@keyframes pulse-button {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

#mobile-wallet-modal button:last-child {
    animation: pulse-button 1.5s infinite;
    background-color: #7ed957;
    color: #222;
    font-weight: bold;
}

.token-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #fff;
    background-color: rgba(34, 139, 34, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.token-price div {
    margin: 2px 0;
}

@media (max-width: 600px) {
    .token-price {
        font-size: 0.8rem;
        padding: 8px;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Make payment toggle buttons more compact on mobile */
    .payment-toggle {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 12px;
        width: 100%;
    }
    
    .pay-btn {
        flex: 1;
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pay-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Make input row stack vertically on small mobile screens */
    .input-row {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    /* Ensure the payment cards stay inside the presale dashboard */
    .presale-dashboard {
        overflow: hidden;
        box-sizing: border-box;
        padding: 20px 15px;
    }
    
    /* Adjust input fields to fit better on mobile */
    #eth-amount, #pepezen-amount {
        padding: 8px 8px 8px 34px;
        font-size: 0.9rem;
    }
    
    /* Ensure the buy button stays inside the container */
    #buy-now-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 380px) {
    .payment-toggle {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pay-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .pay-icon {
        width: 16px;
        height: 16px;
    }
} 