body {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--main-black);
    background-size: cover;
    margin: 0;
}

#title {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
}

#information {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

#disclaimer {
    color: #888;
    font-size: 0.85em;
    margin-top: 32px;
    margin-bottom: 16px;
}

#username {
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
}

#username:disabled {
    opacity: 0.5;
}

#submit {
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    cursor: pointer;
    user-select: none;
    margin-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

#submit:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#submit:disabled {
    opacity: 0.5;
    cursor: default;
}

#reset-button {
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    font-family: 'Gilroy-ExtraBold';
    cursor: pointer;
    user-select: none;
    margin-top: 32px;
    padding-left: 10px;
    padding-right: 10px;
}

#reset-button:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#reset-button:disabled {
    opacity: 0.5;
    cursor: default;
}

#share-results {
    display: none;
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    font-family: 'Gilroy-ExtraBold';
    cursor: pointer;
    user-select: none;
    margin-top: 32px;
    padding-left: 10px;
    padding-right: 10px;
    width: 110px;
}

#share-results:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#share-results:disabled {
    opacity: 0.5;
    cursor: default;
}

#errorUsername {
    color:rgb(236 119 112);
    text-align: center;
    margin: 10px;
    height: 1px;
    user-select: none;
    font-size: 0.83em;
}

#container {
    display: flex;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease-in-out;
}

#state {
    color:orange;
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 90%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}

#profile {
    cursor: pointer;
    display: flex;
    margin-left: 16px;
    background-color: var(--alt-black);
    border-radius: 8px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    height: 17px;
}

#profile:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#profileSVG {
    height: 24px;
    width: 24px;
}

#profile-button {
    color: var(--white);
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    margin-left: 8px;
    font-size: 14px;
}

#buttons {
    display: flex;
    max-height: 31px;
    justify-content: center;
    align-items: center;
}

#leaderboard-button {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: var(--alt-black);
    border: none;
    margin-left: 16px;
    cursor: pointer;
    color: var(--white);
}

#leaderboard-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#generator-button {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: var(--alt-black);
    border: none;
    margin-left: 16px;
    cursor: pointer;
    color: var(--white);
}

#generator-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#blog-button {
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: var(--alt-black);
    border: none;
    margin-left: 16px;
    cursor: pointer;
    color: var(--white);
}

#blog-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#login-button {
    display: none;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: var(--alt-black);
    border: none;
    margin-left: 16px;
    cursor: pointer;
    color: var(--white);
}

#login-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#register-button {
    display: none;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: 'Gilroy-ExtraBold';
    background-color: var(--alt-black);
    border: none;
    margin-left: 16px;
    cursor: pointer;
    color: var(--white);
}

#register-button:hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color:var(--white);
}

#logo {
    width: 45px;
    cursor: pointer;
}

#boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    max-width: 800px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: var(--alt-black);
    border-radius: 8px;
    margin-bottom: 16px;
    user-select: none;
}

.logo {
    height: 75px;
    width: 75px;
    display: inline-block;
    margin-bottom: 8px;
    margin-top: 4px;
}

.platformName {
    color: var(--white);
    margin: 0px;
    margin-bottom: 16px;
}

.status {
    margin: 0px;
    color: #f1c40f;
}

#unavailable:hover {
    cursor: pointer;
}

#unavailable:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    margin-top: -2px;
}

.noLine:hover::after {
    height: 0px !important;
}

#result {
    display: flex;
    margin-bottom: 32px;
    color: var(--white);
    max-width: 800px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;    
}

#smallBoxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 185px;
    height: 185px;
    font-size: small;
}

.largeBox {
    width: 185px;
    height: 185px;
    border-radius: 8px;
    background-color: var(--alt-black);
}

.smallBox {
    width: 82.5px;
    height: 82.5px;
    border-radius: 8px;
    background-color: var(--alt-black);
}

#availableCount, #unavailableCount, #timeCount {
    font-size: 80px;
    margin-top: 16px;
}

#ratelimitedCount, #errorCount, #timeoutCount, #invalidCount {
    font-size: 36px;
    margin-top: -12px;
}

@media ((max-width: 815px)) {
    .largeBox {
        width: 30vh;
        height: 30vh;
    }
    
    #smallBoxes {
        width: 30vh;
        height: 30vh;
        gap: 2vh;
    }

    .smallBox {
        width: 14vh;
        height: 14vh;
    }

    .smallBoxText {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .largeBoxText {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .countLargeText {
        font-size: 112px !important;
    }

    .countSmallText {
        font-size: 56px !important;
    }
}

@media (max-width: 540px) {
    .largeBox {
        width: 20vh;
        height: 20vh;
    }
    
    #smallBoxes {
        width: 20vh;
        height: 20vh;
        gap: 1vh;
    }

    .smallBox {
        width: 9.5vh;
        height: 9.5vh;
    }

    .smallBoxText {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .largeBoxText {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .countLargeText {
        font-size: 64px !important;
    }

    .countSmallText {
        font-size: 32px !important;
    }
}

.enabled {
    border: 2px solid green;
}

.disabled {
    border: 2px solid var(--alt-black);
}

.clickable {
    cursor: pointer;
}

#toggle-all {
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    cursor: pointer;
    user-select: none;
    padding-left: 10px;
    padding-right: 10px;
    width: 160px;
}

#toggle-all:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color: var(--white);
}

#toggle-all:disabled {
    opacity: 0.5;
    cursor: default;
}

#clear-button {
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    cursor: pointer;
    user-select: none;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 32px;
}

#clear-button:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color: var(--white);
}

#clear-button:disabled {
    opacity: 0.5;
    cursor: default;
}

#refresh-button {
    display: none;
    border-radius: .5rem;
    border: 2px solid #55b76c;
    background-color: var(--alt-black);
    color: var(--white);
    padding: 5px;
    cursor: pointer;
    user-select: none;
    padding-left: 10px;
    padding-right: 10px;
}

#refresh-button:not(:disabled):hover {
    background-color: #4fd37d;
    outline: none;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color: var(--white);
}

#modalSpace {
    display: none;
    background-color: rgba(12, 12, 12, 0.75);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: 'Gilroy-ExtraBold';
}

#registerPromptModal {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 340px;
    max-width: 90vw;
    background-color: var(--alt-black);
    border-radius: 12px;
    padding: 32px 24px;
    box-sizing: border-box;
    text-align: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#registerPromptModal .icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

#registerPromptModal h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

#registerPromptModal .subheading {
    color: rgba(232, 232, 222, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

#registerPromptModal .social-proof {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

#registerPromptModal .benefits {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    width: 100%;
}

#registerPromptModal .benefits li {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

#registerPromptModal .benefits .emoji {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

#registerPromptModal .benefits strong {
    color: var(--white);
    font-weight: 600;
}

#registerPromptModal .benefits .platform-list {
    color: rgba(232, 232, 222, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
}

#registerPromptModal button {
    width: 100%;
    max-width: 280px;
    height: 52px;
    font-family: 'Gilroy-ExtraBold', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--green);
    background: var(--green);
    color: white;
    cursor: pointer;
    user-select: none;
    margin-top: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

#registerPromptModal button:hover {
    background-color: #4fd37d;
    border-color: #55b76c;
    box-shadow: 0 0 5px #55b76c;
    color: var(--white);
    outline: none;
    transform: translateY(-1px);
}

#registerPromptModal button:active {
    transform: translateY(0);
}

#registerPromptModal .cta-subtitle {
    color: rgba(232, 232, 222, 0.6);
    font-size: 0.8rem;
    margin: -4px 0 0 0;
    line-height: 1.3;
}

#registerPromptModal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: rgba(232, 232, 222, 0.6);
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
}

#registerPromptModal .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: none;
    box-shadow: none;
    border: none;
    outline: none;
}

.no-scroll {
    overflow: hidden;
}

#footer {
    background-color: var(--alt-black);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-family: 'Gilroy-ExtraBold';
    font-size: 14px;
    margin-top: 20px;
}

#footer a {
    color: #55b76c;
    text-decoration: none;
}

#footer a:hover {
    color: #4fd37d;
    text-decoration: underline;
}

#contact-info {
    margin-top: 20px;
    color: var(--white);
    text-align: center;
    font-size: 14px;
}

#contact-info a {
    color: #55b76c;
    text-decoration: none;
}

#contact-info a:hover {
    color: #4fd37d;
    text-decoration: underline;
}

#actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#banner-not-logged-in {
    display: none;
    padding: 40px 50px;
}

#faq {
    max-width: 90%;
    width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--white);
    font-family: 'Gilroy-ExtraBold';
}

#faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--green);
}

details.font {
    background: var(--alt-black);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 18px 20px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.3s ease-in-out;
}

details.font:hover {
    background: #252525;
    border-color: var(--green);
    box-shadow: 0 0 8px var(--green);
}

details.font summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    color: var(--white);
}

details.font[open] summary {
    color: var(--green);
}

details.font p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
}

#welcome-text {
    color: var(--white);
    width: 350px;
    max-width: 90%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

#tokenCostInfo {
    color: var(--white);
    padding-bottom: 24px;
    max-width: 90%;
    margin-top: 0px;
}

#tokens {
    color: var(--green);
}

#one-time-payment {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 16px;
    margin-top: -8px;
}

#banner {
    display: none;
    position: fixed;
    z-index: 9999;
    max-width: 90%;
    background: linear-gradient(145deg, rgba(39, 174, 96, 0.1) 0%, transparent 100%);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    border: 1px solid rgba(39, 174, 96, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

#banner-not-logged-in {
    background: var(--alt-black);
    border-radius: 15px;
    display: none;
    flex-direction: column;
    padding: 32px 28px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    gap: 18px;
}

.close-banner {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(232, 232, 222, 0.4);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.urgency-badge {
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 auto 4px auto;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.banner-headline {
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(232, 232, 222, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-prop {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.85;
    line-height: 1.4;
    font-weight: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 8px;
}

.comparison-box {
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin: 8px 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 70px 40px 70px 1fr;
    align-items: center;
    margin: 10px 0;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comparison-label {
    opacity: 0.8;
    text-align: left;
    grid-column: 1;
}

.guest-value {
    color: rgba(236, 119, 112, 0.8);
    font-weight: 500;
    text-align: center;
    grid-column: 2;
}

.account-value {
    color: var(--green);
    font-weight: 600;
    text-align: center;
    grid-column: 4;
}

.vs-arrow {
    color: rgba(232, 232, 222, 0.6);
    font-weight: bold;
    text-align: center;
    grid-column: 3;
    font-size: 1.1rem;
}

.social-proof {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    opacity: 0.9;
    margin: -4px 0 0 0;
}

.cta-button {
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 10px;
    font-family: 'Gilroy-ExtraBold', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px auto 0 auto;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.trust-signals {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 4px 0 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: normal;
}

@media (max-width: 600px) {
    #banner-not-logged-in {
        padding: 28px 20px;
    }
    
    .banner-headline {
        font-size: 1.5rem;
    }
    
    .comparison-row {
        font-size: 0.85rem;
    }
}

#banner-free-user {
    display: none;
    position: relative;
    background: linear-gradient(135deg, var(--alt-black) 0%, rgba(27, 27, 27, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    max-height: 600px;
}

.close-banner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(232, 232, 222, 0.5);
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.top-section {
    text-align: center;
    margin-bottom: 16px;
}

.discount-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--main-black);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.title {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--green);
    margin-bottom: 4px;
    line-height: 1.1;
}

.subtitle {
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.7);
    margin-bottom: 2px;
}

.pain-point {
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--lightred);
    font-weight: 600;
}

.comparison-premium {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
}

.comparison-row-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row-premium:last-child {
    border-bottom: none;
}

.feature-label {
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.8);
    flex: 1;
}

.free-value {
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.6);
    width: 60px;
    text-align: center;
}

.premium-value {
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--green);
    font-weight: 700;
    width: 80px;
    text-align: center;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    position: relative;
}

.multiplier-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    background: var(--green);
    color: var(--main-black);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 6px;
}

.headers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 0 0 6px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-free {
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.6);
    width: 60px;
    text-align: center;
}

.header-premium {
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--green);
    font-weight: 700;
    width: 80px;
    text-align: center;
}

.feature-header {
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.8);
    font-weight: 600;
    flex: 1;
}

.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(39, 174, 96, 0.08);
    border-radius: 8px;
}

.old-price {
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--lightred);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    color: var(--green);
}

.lifetime {
    font-size: 0.7rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.6);
    text-align: center;
    margin-bottom: 12px;
}

.cta-button {
    background: linear-gradient(135deg, var(--green) 0%, #2ecc71 100%);
    color: var(--main-black);
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.guarantee {
    text-align: center;
    margin-top: 16px;
    font-size: 0.65rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(232, 232, 222, 0.5);
}

@media (max-width: 480px) {
    .title {
        font-size: 1.2rem;
    }

    .new-price {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

#tips-section {
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
    color: var(--white);
}

#tips-title {
    font-size: 28px;
    color: var(--green);
    text-align: center;
    margin-bottom: 30px;
}

#tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tip-box {
    background-color: var(--alt-black);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.tip-box:hover {
    background: #252525;
    border-color: var(--green);
    box-shadow: 0 0 8px var(--green);
    transform: translateY(-2px);
}

.tip-header {
    color: var(--green);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
}

.tip-box p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

#pro-tip-highlight {
    background: linear-gradient(135deg, var(--green), #2ecc71);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

#pro-tip-highlight h3 {
    color: var(--main-black);
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 815px) {
    #tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    #tips-title {
        font-size: 24px;
    }
    
    .tip-header {
        font-size: 16px;
    }
    
    .tip-box {
        padding: 20px;
    }
}

@media (max-width: 540px) {
    #tips-section {
        margin: 30px auto;
    }
    
    .tip-box {
        padding: 18px;
    }
    
    #pro-tip-highlight {
        padding: 16px;
    }
    
    #pro-tip-highlight h3 {
        font-size: 14px;
    }
}

.token-balance-container {
    display: flex;
    align-items: center;
    background: var(--alt-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-left: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.token-balance-container:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.token-display {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.token-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background: linear-gradient(135deg, var(--yellow), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: var(--main-black);
    box-shadow: 0 2px 4px rgba(241, 196, 15, 0.3);
}

.token-count {
    font-variant-numeric: tabular-nums;
}

.divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.add-tokens-btn {
    background: none;
    border: none;
    color: var(--green);
    padding: 12px 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
}

.add-tokens-btn:hover {
    background: rgba(39, 174, 96, 0.1);
    color: #2ecc71;
    transform: scale(1.05);
}

.add-tokens-btn:active {
    transform: scale(0.95);
}

/* Low balance warning state */
.token-balance-container.low-balance .token-display {
    color: var(--lightred);
}

.token-balance-container.low-balance .token-icon {
    background: linear-gradient(135deg, var(--lightred), var(--darkred));
    color: var(--white);
}

.token-balance-container.low-balance .add-tokens-btn {
    color: var(--yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--alt-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 300px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal h3 {
    color: var(--white);
    margin: 0 0 16px;
    font-size: 18px;
}

.modal p {
    color: rgba(232, 232, 222, 0.7);
    margin: 0 0 20px;
    font-size: 14px;
}

.close-modal {
    background: var(--green);
    color: var(--main-black);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.payment-modal {
    background: var(--alt-black);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
    display: none;
}

/* Modal Header */
.modal-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(232, 232, 222, 0.6);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-button:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--white);
}

.token-status {
    font-size: 14px;
    color: rgba(232, 232, 222, 0.7);
    margin: 0;
}

.token-status.low {
    color: var(--lightred);
}

.token-status.empty {
    color: var(--darkred);
}

/* Error Message */
.error-message {
    background: rgba(236, 119, 112, 0.1);
    border: 1px solid rgba(236, 119, 112, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 0 20px 16px;
    color: var(--lightred);
    font-size: 14px;
    text-align: center;
    display: none;
    margin-top: 16px;
}

.error-message.show {
    display: block;
}

.retry-link {
    color: var(--green);
    text-decoration: underline;
    cursor: pointer;
    margin-left: 8px;
}

.retry-link:hover {
    color: #2ecc71;
}

/* Package List */
.packages {
    padding: 20px;
    position: relative;
}

.package {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.package:hover:not(.loading):not(.disabled) {
    background: rgba(39, 174, 96, 0.05);
    border-color: rgba(39, 174, 96, 0.3);
    transform: translateY(-1px);
}

.package:last-child {
    margin-bottom: 0;
}

.package.popular {
    border-color: var(--yellow);
    background: rgba(241, 196, 15, 0.05);
}

.package.popular::after {
    content: "POPULAR";
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--yellow);
    color: var(--main-black);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 0 11px 0 8px;
    letter-spacing: 0.5px;
}

.package.loading {
    background: rgba(39, 174, 96, 0.1);
    border-color: var(--green);
    cursor: not-allowed;
    transform: none;
    display: flex;
}

.package.loading .package-content {
    opacity: 0.7;
}

.package.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.package.disabled:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(39, 174, 96, 0.05);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    flex-direction: row;
}

.package.loading .loading-overlay {
    display: flex;
}

.payment-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-top: 2px solid var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.package-content {
    position: relative;
    z-index: 1;
}

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.package-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.package-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.package-tokens {
    font-size: 14px;
    color: rgba(232, 232, 222, 0.8);
    margin-bottom: 4px;
}

.bonus {
    color: var(--yellow);
    font-weight: 600;
}

.package-desc {
    font-size: 13px;
    color: rgba(232, 232, 222, 0.6);
    line-height: 1.3;
}

/* Footer */
.modal-footer {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: rgba(232, 232, 222, 0.6);
    margin-bottom: 8px;
}

.help-link {
    color: var(--green);
    text-decoration: none;
    font-size: 12px;
}

.help-link:hover {
    text-decoration: underline;
}

/* New Customer Discount Styles */
.package.discounted .package-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price {
    font-size: 16px;
    color: rgba(232, 232, 222, 0.5);
    text-decoration: line-through;
    font-weight: 400;
}

.discount-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.package.has-new-customer-badge::before {
    content: "NEW CUSTOMER";
    position: absolute;
    background: var(--green);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 6px;
    letter-spacing: 0.5px;
    top: -1px;
    right: -1px;
    border-radius: 0 11px 0 8px;
}

.package.has-new-customer-badge::before {
    content: "NEW CUSTOMER";
    position: absolute;
    background: var(--green);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 6px;
    letter-spacing: 0.5px;
    top: -1px;
    right: -1px;
    border-radius: 0 11px 0 8px;
}

.package.popular.has-new-customer-badge::after {
    display: none;
}

.package.popular.has-new-customer-badge::before {
    content: "POPULAR • NEW CUSTOMER";
    background: var(--green);
    color: var(--white);
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    right: -1px;
    top: -1px;
    border-radius: 0 11px 0 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.verification-modal {
    background: var(--alt-black);
    border: 2px solid var(--white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.verification-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.verification-message {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.verification-button {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.verification-button:hover {
    background: #2ecc71;
    transform: translateY(-2px);
}

.verification-button.cancel {
    background: var(--darkred);
}

.verification-button.cancel:hover {
    background: #e74c3c;
}

.verification-button.retry {
    background: var(--yellow);
    color: var(--main-black);
}

.verification-button.retry:hover {
    background: #f4d03f;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--alt-black);
    border-top: 4px solid var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
}

.error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--darkred);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorShake 0.6s ease-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-x {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1rem 0;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.3;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.progress-dot:nth-child(1) { animation-delay: -0.3s; }
.progress-dot:nth-child(2) { animation-delay: -0.15s; }
.progress-dot:nth-child(3) { animation-delay: 0s; }

@keyframes dotPulse {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.token-explainer {
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.token-explainer:hover {
    background: rgba(39, 174, 96, 0.12);
}

.explainer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.explainer-icon {
    color: var(--green);
    font-size: 16px;
    transition: transform 0.2s ease;
}

.token-explainer.expanded .explainer-icon {
    transform: rotate(180deg);
}

.explainer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.token-explainer.expanded .explainer-content {
    max-height: 200px;
}

.explainer-text {
    color: rgba(232, 232, 222, 0.8);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(39, 174, 96, 0.2);
}

.explainer-example {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--green);
}

.usage-highlight {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0 8px;
}

.value-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(232, 232, 222, 0.6);
    margin-top: 8px;
}

.value-badge {
    background: rgba(39, 174, 96, 0.15);
    color: var(--green);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

#buttons a {
    font-size: 0.9rem;
}

.mode-toggle {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.mode-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mode-toggle input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.hidden {
    display: none;
}

.input-section textarea {
    width: 100%;
    width: 300px;
    padding: 12px;
    background-color: var(--alt-black);
    color: var(--white);
    border: 2px solid #55b76c;
    border-radius: 16px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-height: 250px;
}

.input-section textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.input-section textarea {
    resize: vertical;
    min-height: 120px;
}

.input-hint {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

#batchResults {
    display: none;
    background-color: var(--alt-black);
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border: 1px solid #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 32px;
}

#batchResults h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--white);
}

.token-info {
    padding: 12px;
    background-color: var(--main-black);
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--yellow);
    border: 1px solid #333;
}

.batch-results-container {
    max-height: 600px;
    overflow-y: auto;
}

.batch-result-item {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.batch-result-item.success {
    border-color: var(--green);
    background-color: rgba(39, 174, 96, 0.1);
}

.batch-result-item.error {
    border-color: var(--lightred);
    background-color: rgba(236, 119, 112, 0.1);
}

.batch-result-info {
    flex: 1;
    text-align: left;
}

.batch-result-username {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--white);
}

.batch-result-summary {
    font-size: 13px;
    color: #aaa;
}

.batch-result-tokens {
    font-size: 12px;
    color: var(--yellow);
    margin-top: 4px;
}

.batch-result-error-msg {
    font-size: 13px;
    color: var(--lightred);
}

.batch-result-error {
    font-size: 13px;
    color: var(--lightred);
}

.batch-view-btn {
    padding: 8px 16px;
    background-color: var(--green);
    color: var(--main-black);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.2s;
}

.batch-view-btn:hover {
    background-color: #229954;
}

.batch-view-btn.error-btn {
    background-color: var(--lightred);
    color: var(--white);
}

.batch-view-btn.error-btn:hover {
    background-color: var(--darkred);
}

#clearBatchResults {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background-color: #555;
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
}

#clearBatchResults:hover {
    background-color: #666;
}

.hidden {
    display: none;
}

.spinner {
    border: 4px solid #333;
    border-top: 4px solid var(--green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-text {
    font-size: 16px;
    color: #aaa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-bottom: 32px;
}