﻿/* === Base Layout === */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* ✅ Prevents horizontal scroll */
    overflow-y: auto; /* ✅ Allows vertical scroll only when needed */
}

body {
    overscroll-behavior: contain; /* ✅ Prevents bounce scroll artifacts */
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #060506 50%, #141e1b 100%);
    color: white;
    text-align: center;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    height: 100%;
}

    body::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("../images/bg.webp") repeat center;
        background-size: auto; /* ensures natural repeating */
        z-index: -1;
    }


/* === Title === */
.title {
    font-size: 2em;
    color: #2fe988;
    text-shadow: 0 0 10px #2fe988;
}

/* === Rewards Container === */
.rewards-container {
    margin: 75px auto 30px auto;
    max-width: 700px;
    width: 90%;
    background: rgb(0 0 0 / 60%);
    border: 2px solid #2fe988;
    box-shadow: 0 0 20px #00ff8966, inset 0 0 20px #00ffd033;
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(8px);
    text-align: left;
    animation: fadeIn 0.6s ease;
}

    /* Section Title */
    .rewards-container .title {
        text-align: center;
        font-size: 1.8rem;
        color: #2fe988;
        margin-bottom: 20px;
        margin-top: -5px;
    }


.rewards-info {
    background: rgb(28 67 65 / 65%);
    border: 1px solid #2fe988;
    box-shadow: 0 0 20px #00ff8966, inset 0 0 20px #00ffd033;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

/* Each row for wallet & holdings */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 8px 0;
}

/* Label (left side) */
.label {
    font-weight: bold;
    color: #2fe988;
    min-width: 140px;
    flex: 1;
}

/* Value (right side) */
.value {
    text-align: right;
    color: #fff;
    word-break: break-all; /* ✅ breaks long wallet addresses */
    overflow-wrap: anywhere;
    font-family: 'Courier New', monospace;
}

/* container for value + logo */
.value-with-logo {
    display: flex;
    align-items: center;
    gap: 6px; /* space between text and logo */
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .rewards-info {
        padding: 15px;
        font-size: 0.9em;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .label, .value {
        text-align: left;
        width: 100%;
    }

    #wholeWalletAddress {
        font-size: 0.85em; /* ✅ slightly smaller for long text */
        word-break: break-word;
    }
}

/* === Claim Button === */
.button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn.success {
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    border: 2px solid rgb(47 233 136);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: background 0.3s, transform 0.2s;
}

    .btn.success:hover {
        background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
        transform: scale(1.05);
    }

/* === Claim History === */
.history-section {
    margin-top: 15px;
}

    .history-section h2 {
        font-size: 1.4rem;
        color: #2fe988;
        margin-bottom: 15px;
        text-align: center;
    }

.history-table {
    width: 100%;
    border-collapse: collapse;
    background: #1d292d;
    border-radius: 10px;
    overflow: hidden;
}

    .history-table th,
    .history-table td {
        padding: 10px 5px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .history-table th {
        color: #2fe988;
        font-weight: 600;
        font-size: 12px;
    }

    .history-table td {
        color: #fff;
        font-size: 13px;
    }

    .history-table tr:last-child td {
        border-bottom: none;
    }

.empty {
    text-align: center;
    color: #aaa;
    font-style: italic;
    padding: 15px 0;
}


/* === Reward Cards (if used elsewhere) === */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reward-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #2fe988;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s;
}

    .reward-card:hover {
        transform: scale(1.05);
    }

    .reward-card img {
        width: 80px;
        height: 80px;
    }

/* === Claim Button (old style) === */
.claim-btn {
    margin-top: 10px;
    background: #2fe988;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

    .claim-btn:hover {
        background: #ff55ff;
    }

.solscan-link-prize {
    color: #d2ffea;
    margin-left: 0px;
    text-decoration: underline;
    font-size: 11px;
    width: 100px;
}

    .solscan-link-prize:hover {
        color: #ff55ff;
    }

    .solscan-link-prize svg {
        transform: translateY(2px);
    }

/* === Loader Overlay === */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: all;
}

.hidden {
    display: none;
    pointer-events: none;
}

.cloader {
    border: 4px solid #fff;
    border-top: 4px solid #2fe988;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* === Placeholder & Visibility === */
.btn-placeholder {
    display: inline-block;
    width: 59.41px;
    height: 30px;
}

.invisible {
    visibility: hidden; /* keeps size & spacing but hides visually */
}

/* === Animations === */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 480px) {
    .rewards-container {
        margin-top: 60px;
        padding: 20px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .button-wrapper {
        margin-top: 15px;
    }

    .back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    body {
        padding-bottom: 35px;
    }
}


/* Back Button */
.back-btn {
    margin-top: 24px;
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid rgb(47 233 136);
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pinkGlow 5s ease infinite;
}

    .back-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 12px rgb(47 233 136);
    }

@media (max-width: 480px) {
    html, body {
        height: auto !important; /* ✅ Let content define height */
        min-height: 100vh; /* ✅ Still fill full screen */
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    body {
        padding-bottom: 65px;
        box-sizing: border-box;
    }
}


.refresh-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

    .refresh-btn:hover {
        transform: rotate(90deg);
    }

.value-with-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}


.refresh-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
    margin-left: -8px;
}

    .refresh-btn:hover {
        transform: rotate(90deg);
    }

.value-with-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Loader animation */
.loader {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #2fe988; /* neon pink highlight */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === Popup Overlay === */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 25, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

    .popup.hidden {
        display: none;
    }

/* === Popup Content === */
.claim-result-content {
    background: rgb(28 67 65 / 65%);
    border: 2px solid #2fe988;
    border-radius: 20px;
    padding: 25px 30px;
    width: 75%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 15px #00ff4e;
    animation: popupFadeIn 0.4s ease-out;
}

/* === Top Logo === */
.coin-logo-top {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    animation: floatCoin 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 2px #2fe988);
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* === Inline Coin beside amount === */
.value-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.coin-logo-inline {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* === Headings & Text === */
#claimResultPopup h2 {
    margin-top: 0;
    color: #2fe988;
    text-shadow: 0 0 7px #022e19;
    font-size: 22px;
}

#claimResultDetails p {
    font-size: 14px;
    margin: 10px 0;
    color: #eee;
    word-break: break-word;
}

#claimResultDetails strong {
    color: #ffffff;
}

#claimResultDetails .value {
    color: #00ffff;
    font-weight: bold;
    margin-top: 4px;
}

/* === Solscan Link === */
.solscan-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
}

    .solscan-link:hover {
        text-decoration: underline;
        text-shadow: 0 0 5px #00ffff;
    }

/* === Result Message === */
.result-message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* === Button === */
#closeClaimResultPopup {
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    border: 2px solid rgb(47 233 136);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: background 0.3s, transform 0.2s;
}

    #closeClaimResultPopup:hover {
        transform: scale(1.05);
        box-shadow: 0 0 12px rgb(47 233 136);
    }

/* === Animation === */
@keyframes popupFadeIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* === Responsive === */
@media (max-width: 480px) {
    .claim-result-content {
        padding: 20px;
        font-size: 13px;
    }

    #claimResultPopup h2 {
        font-size: 18px;
    }

    .coin-logo-top {
        width: 50px;
        height: 50px;
    }

    .coin-logo-inline {
        width: 18px;
        height: 18px;
    }

    .th-date{
        width: 20%
    }
}

/* Overlay */
.wallet-note-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    /* ✅ Block clicks behind popup */
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    /* ✅ When visible, allow clicks ONLY on popup */
    .wallet-note-popup.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

/* Popup content box */
.wallet-note-content {
    background: #141414;
    color: #fff;
    text-align: center;
    padding: 20px 24px;
    border-radius: 15px;
    box-shadow: 0 0 10px #00ff89;
    border: 1px solid #2fe988;
    max-width: 350px;
    width: 75%;
    animation: popupScale 0.25s ease;
    /* ✅ Prevent clicks from passing through */
    pointer-events: auto;
    margin-top: -20%;
}

@keyframes popupScale {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.wallet-note-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 10px;
}

.wallet-note-content .btn {
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid rgb(47 233 136);
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pinkGlow 5s ease infinite;
}

    .wallet-note-content .btn:hover {
        background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
        transform: scale(1.05);
    }

/* ✅ Mobile responsive */
@media (max-width: 480px) {
    .wallet-note-content {
        padding: 15px 18px;
        font-size: 14px;
        margin-top: 5%;
    }

        .wallet-note-content p {
            font-size: 13.5px;
        }

        .wallet-note-content .btn {
            font-size: 13px;
            padding: 6px 12px;
        }
}

.tooltip {
    position: absolute;
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    max-width: 220px;
    word-wrap: break-word;
    z-index: 10000;
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tooltip-trigger {
    position: relative;
    cursor: pointer;
    color: #ff69b4;
    font-weight: 600;
    transition: color 0.2s;
}

    .tooltip-trigger:hover {
        color: #ff85c1;
    }


.tax-note{
    text-align:center;
    display: flow;
}



/* === Exclusive Reward Tax Popup === */

.tax-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

    .tax-popup.hidden {
        display: none;
    }

.tax-popup-content {
    background: radial-gradient(circle at top, #001a01 0%, #00100c 100%);
    border: 2px solid #2fe988;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px #2fe988;
    animation: taxPopIn 0.3s ease-out;
    margin-top: -15%;
}

@keyframes taxPopIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tax-popup-title {
    margin-top: 0;
    font-size: 1.4rem;
    color: #2fe988;
    text-shadow: 0 0 10px #2fe988;
}

.tax-popup-body p {
    font-size: 0.95rem;
    line-height: 1.4rem;
    margin: 15px 0;
}

/* === Button === */
.tax-btn {
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid rgb(47 233 136);
    border-radius: 10px;
    padding: 10px 16px;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pinkGlow 5s ease infinite;
}

/* === Trigger link === */
.tax-info-trigger {
    font-size: 14px;
    color: #00ffff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.2s ease;
}

    .tax-info-trigger:hover {
        color: #ff55ff;
    }

/* === Responsive === */
@media (max-width: 480px) {
    .tax-popup-content {
        margin-right: 1%;
        width: 80%;
        padding: 20px 15px;
        margin-left: -2%;
    }

    .tax-popup-title {
        font-size: 1.2rem;
    }

    .tax-popup-body p {
        font-size: 0.85rem;
    }

    .tax-btn {
        width: 33%;
        padding: 12px;
    }

    .tax-popup-body {
        margin-bottom: 20px;
    }
}

/* === Exclusive Redeem Confirmation Popup === */
.redeem-popup {
    margin-top: -10%;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

    .redeem-popup.hidden {
        display: none;
    }

.redeem-popup-content {
    background: radial-gradient(circle at top, #0d001a 0%, #000010 100%);
    border: 2px solid #2fe988;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 25px #00ffcc80;
    animation: redeemPopIn 0.3s ease-out;
}

@keyframes redeemPopIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.redeem-popup-title {
    margin-top: 0;
    font-size: 1.4rem;
    color: #2fe988;
    margin-bottom: 15px;
}

.redeem-popup-body p {
    font-size: 0.95rem;
    line-height: 1.5rem;
    margin: 8px 0;
}

.redeem-breakdown {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid #2fe988;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
    text-align: left;
}

    .redeem-breakdown p {
        font-size: 0.9rem;
        display: flex;
        justify-content: space-between;
        margin: 6px 0;
        color: #e0e0e0;
    }

    .redeem-breakdown strong {
        color: #2fe988;
    }

/* === Button === */
.redeem-btn {
    background: linear-gradient(135deg, #30de82, #3d7b4d, #003d16);
    border: 2px solid rgb(47 233 136);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 12px rgb(47 233 136);
    transition: background 0.3s, transform 0.2s;
    margin-left: 2%;
}

    .redeem-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 12px #00ffccaa;
    }

/* === Responsive === */
@media (max-width: 480px) {
    .redeem-popup-content {
        width: 85%;
        padding: 20px 15px;
        margin-left: -5px;
    }

    .redeem-popup-title {
        font-size: 1.2rem;
    }

    .redeem-popup-body p {
        font-size: 0.85rem;
    }

    .redeem-btn {
        width: 35%;
        padding: 12px;
        margin-left: 2%;
    }

    .redeem-breakdown p {
        font-size: 0.75rem;
    }
}


.sol-logo {
    width: 18px;
    height: 18px;
    margin-left: -3px;
}

.coin-logo {
    filter: drop-shadow(0 0 2px #2fe988);
}

.currency-logo {
    width: 20px;
    height: 20px;
    margin-left: -3px;
    filter: drop-shadow(0 0 2px #2fe988);
}

.redeem-breakdown p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.coin-logo-tax {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 2px #2fe988);
    padding-bottom: 3px;
    margin-left: -2px;
}

.spn-ref{
    text-align: center;
    display: block;
}


.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2fe988, #1fa76f);
    border-radius: 12px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px #2fe988, 0 0 20px #2fe988 inset;
}


.progress-container {
    position: relative;
    width: 100%;
    height: 24px;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 0 10px rgba(47, 233, 136, 0.3);
    cursor: pointer; /* show tooltip on hover */
}

    /* Tooltip */
    .progress-container[data-tooltip]:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: #2fe988;
        color: #111;
        padding: 6px 10px;
        border-radius: 6px;
        white-space: nowrap;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 0 0 10px #2fe988;
        z-index: 10;
        display: block; /* ensure it shows */
        pointer-events: none; /* prevent blocking hover */
    }


/* Tooltip */
.progress-container[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2fe988;
    color: #111;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px #2fe988;
    z-index: 10;
}


    .progress-bar.complete {
        animation: neonPulse 1s infinite alternate;
        box-shadow: 0 0 15px #2fe988, 0 0 30px #2fe988, 0 0 40px #2fe988 inset;
    }

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    line-height: 24px;
    font-weight: bold;
    color: #fff;
    pointer-events: none;
}

/* Neon glow animation */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px #2fe988, 0 0 10px #2fe988 inset;
    }

    50% {
        box-shadow: 0 0 15px #2fe988, 0 0 25px #2fe988 inset;
    }

    100% {
        box-shadow: 0 0 10px #2fe988, 0 0 20px #2fe988 inset;
    }
}

/* Pulse effect when complete */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 15px #2fe988, 0 0 30px #2fe988, 0 0 40px #2fe988 inset;
    }

    50% {
        box-shadow: 0 0 20px #2fe988, 0 0 35px #2fe988, 0 0 50px #2fe988 inset;
    }

    100% {
        box-shadow: 0 0 15px #2fe988, 0 0 30px #2fe988, 0 0 40px #2fe988 inset;
    }
}



/* ===== Fixed Footer Menu Bar ===== */
#footerMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 2px solid #2fe988;
    z-index: 9999;
}

    #footerMenu .footer-item {
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Fredoka One', sans-serif;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        opacity: 0.8;
        transition: 0.2s;
    }

        #footerMenu .footer-item:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        #footerMenu .footer-item span {
            font-size: 11px;
            letter-spacing: 0.5px;
        }

/* Mobile adjustments */
@media (max-width: 600px) {
    #footerMenu {
        height: 55px;
    }

        #footerMenu .footer-item {
            font-size: 12px;
        }

            #footerMenu .footer-item span {
                font-size: 10px;
            }
}


.tweet-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.tweet-btn {
    background: #2fe988;
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    transition: 0.2s ease;
}

    .tweet-btn:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }
