/* Custom Font - Frightmare */
@font-face {
    font-family: 'Frightmare';
    src: url('fonts/Frightmare-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Space Ranger';
    src: url('fonts/spacerangerhalfital.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Variables - Orange Theme */
:root {
    --background: oklch(0.08 0 0);
    --foreground: oklch(0.98 0 0);
    --card: oklch(0.12 0.02 270);
    --primary: oklch(0.68 0.19 45);
    --secondary: oklch(0.18 0.02 270);
    --primary-foreground: oklch(0.05 0 0);
    --muted-foreground: oklch(0.58 0.01 270);
    --border: oklch(0.22 0.02 270);
    --radius: 0.75rem;
}

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Starfield Canvas */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.3);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

/* Header Stats - Left Column */
.header-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Header Center - Middle Column */
.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-stat-icon {
    font-size: 1.5rem;
}

.header-stat-content {
    display: flex;
    flex-direction: column;
}

.header-stat-label {
    font-size: 0.625rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.header-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--border);
}

/* Header Cooldown Timer */
.header-cooldown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 0.5rem;
}

.cooldown-icon-small {
    display: flex;
    align-items: center;
    color: #eab308;
}

.cooldown-info-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cooldown-label-small {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cooldown-timer-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: #eab308;
    font-family: 'Courier New', monospace;
}

/* Header Queue Position */
.header-queue {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 0.5rem;
}

.queue-icon-small {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.queue-info-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.queue-label-small {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.queue-number-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Twitter Button */
.twitter-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, #1f2937, #000000);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    width: 2.5rem;
    height: 2.5rem;
}

.twitter-btn:hover {
    transform: translateY(0.75rem);
    border-radius: 50%;
    background: linear-gradient(to right, #331029, #310413);
}

.twitter-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.twitter-btn-text {
    position: absolute;
    opacity: 0;
    transition: opacity 0.7s, transform 0.7s;
    color: #374151;
    font-size: 0.875rem;
}

.twitter-btn:hover .twitter-btn-text {
    opacity: 1;
    transform: translateY(-2.5rem);
}

/* Wallet Button */
.wallet-connect-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.wallet-connect-btn:hover {
    background: rgba(255, 107, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.wallet-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.wallet-info-connected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wallet-address {
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    color: var(--muted-foreground);
}

.wallet-balance {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.entry-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(255, 107, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.wallet-disconnect-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 107, 0, 0.5);
    color: var(--foreground);
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-disconnect-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.content-wrapper {
    max-width: 42rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Text */
.hero-text {
    text-align: center;
    margin-bottom: 1rem;
}

/* Statistics Row Inside Card */
.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-item-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.stat-item-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-title {
    font-family: 'Space Ranger', cursive;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--primary);
}

.hero-title-normal {
    color: var(--foreground);
}

.hero-title-primary {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

/* Cooldown Timer Card */
.cooldown-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.1);
    margin-bottom: 1.5rem;
}

.cooldown-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooldown-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.cooldown-icon {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.cooldown-info {
    flex: 1;
}

.cooldown-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cooldown-timer {
    font-size: 2.5rem;
    font-weight: 900;
    color: #eab308;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.cooldown-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Queue Card */
.queue-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.05);
}

.queue-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.queue-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.queue-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.queue-icon-container {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.queue-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

/* Ponzi Card */
.ponzi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.1);
}

.ponzi-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Amount Box */
.amount-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
}

.receive-box {
    border-color: rgba(255, 107, 0, 0.5);
}

.amount-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.amount-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.amount-value-primary {
    color: var(--primary);
}

.amount-icon-wrapper {
    color: var(--primary);
}

.amount-icon {
    width: 2rem;
    height: 2rem;
}

/* Divider */
.divider-wrapper {
    display: flex;
    justify-content: center;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

/* Enter Ponzi Button - Animated Gradient Border */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: 3rem;
    background-size: 300% 300%;
    cursor: pointer;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121),
        linear-gradient(
            137.48deg,
            #6366f1 10%,
            #8b5cf6 45%,
            #a855f7 67%,
            #3b82f6 87%
        );
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
}

#container-stars {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

.btn strong {
    z-index: 2;
    font-size: 14px;
    letter-spacing: 5px;
    color: #ffffff;
    text-shadow: 0 0 4px white;
}

#glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
}

.circle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
}

.btn:hover #container-stars {
    z-index: 1;
    background-color: #212121;
}

.btn:not(:disabled):hover {
    transform: scale(1.1);
}

.btn:active {
    border: double 4px #8b5cf6;
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.btn:active .circle {
    background: #8b5cf6;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

#stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

#stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

#stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

#stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

#enterPonziText {
    position: relative;
    z-index: 2;
}

.spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--primary-foreground);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.connect-message {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* DEX Link */
.dex-link-wrapper {
    display: flex;
    justify-content: center;
}

.dex-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dex-link:hover {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.external-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    transition: transform 0.2s;
}

.dex-link:hover .external-icon {
    transform: translateX(2px);
}

/* Disclaimer */
.disclaimer-section {
    text-align: center;
    opacity: 0.7;
    margin-top: 1rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: 'Courier New', monospace;
    margin: 0.25rem 0;
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.05);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.newsletter-input::placeholder {
    color: var(--muted-foreground);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: rgba(255, 107, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    opacity: 0.7;
}

/* Info Button */
.info-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.info-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Social Proof Sections */
.social-proof-section {
    margin-top: 1.5rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Recent Payouts Live Feed */
.live-feed-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.payout-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateX(5px);
}

.payout-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payout-wallet {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.payout-time {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.payout-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.payout-link {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.payout-link:hover {
    color: var(--primary);
}

/* Leaderboard */
.leaderboard-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: -0.5rem 0 1.5rem 0;
    font-weight: 500;
}

.leaderboard-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.leaderboard {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.leaderboard-item:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateX(5px);
}

.leaderboard-item.top-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.5);
}

.leaderboard-rank {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 2rem;
}

.rank-wallet {
    font-size: 0.875rem;
    color: var(--foreground);
    font-weight: 600;
}

.rank-earnings {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.top10-badge {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    cursor: help;
}

/* Welcome Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, rgba(18, 18, 28, 0.95), rgba(10, 10, 15, 0.95));
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.modal-body {
    padding: 2rem;
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.warning-text {
    color: #ff4444;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem 0;
}

.bullet-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--foreground);
    line-height: 1.6;
}

.bullet-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.sub-list {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.sub-list li {
    padding: 0.25rem 0 0.25rem 1rem;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.sub-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--muted-foreground);
}

.warning-list li {
    color: #ff8888;
}

.warning-list li::before {
    color: #ff4444;
}

.final-warning {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.final-warning p {
    margin: 0.5rem 0;
    color: var(--foreground);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.modal-btn-primary:hover {
    background: rgba(255, 107, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.modal-btn-secondary {
    background: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
}

/* Coin Rain Animation */
.coin-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.coin {
    position: absolute;
    top: -50px;
    font-size: 2rem;
    animation: coinFall linear forwards;
    opacity: 0.9;
}

@keyframes coinFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.coin.spin-left {
    animation: coinFallSpinLeft linear forwards;
}

.coin.spin-right {
    animation: coinFallSpinRight linear forwards;
}

@keyframes coinFallSpinLeft {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(360deg) translateX(-30px);
    }
    100% {
        transform: translateY(100vh) rotate(720deg) translateX(0);
        opacity: 0;
    }
}

@keyframes coinFallSpinRight {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) rotate(-360deg) translateX(30px);
    }
    100% {
        transform: translateY(100vh) rotate(-720deg) translateX(0);
        opacity: 0;
    }
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ponzi-card {
        padding: 1.5rem;
    }

    .amount-value {
        font-size: 1.5rem;
    }

    .enter-ponzi-btn {
        height: 3.5rem;
        font-size: 1.125rem;
    }

    .wallet-info-connected {
        flex-direction: column;
        align-items: stretch;
    }

    .wallet-details {
        align-items: center;
    }

    .queue-number {
        font-size: 2rem;
    }

    /* Newsletter responsive */
    .newsletter-section {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   COOLDOWN RESET SECTION STYLES
   ============================================ */

.cooldown-reset-section {
    margin-top: 2rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.referral-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.referral-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.referral-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.referral-link-container {
    margin-bottom: 1.5rem;
}

.referral-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.referral-input-group {
    display: flex;
    gap: 0.5rem;
}

.referral-input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.copy-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

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

.referral-rewards {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.rewards-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.rewards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rewards-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.use-reset-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8800 100%);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.use-reset-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.use-reset-btn:active:not(:disabled) {
    transform: translateY(0);
}

.use-reset-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .referral-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .referral-stat {
        min-width: auto;
    }

    .referral-input-group {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }
}

/* ===== RESET METHODS GRID ===== */

.reset-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.reset-method-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reset-method-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.method-icon {
    font-size: 2rem;
    line-height: 1;
}

.method-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.method-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.method-reward {
    padding: 0.75rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-cooldown {
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Responsive grid for mobile */
@media (max-width: 768px) {
    .reset-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== UNIFIED REWARDS SECTION STYLES ===== */

.rewards-section {
    margin: 2rem 0;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reward-task-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.2s;
}

.reward-task-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.task-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.task-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.task-title-group {
    flex: 1;
}

.task-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 0.5rem 0;
}

.task-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    font-size: 0.75rem;
}

.task-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.task-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.task-description a:hover {
    text-decoration: underline;
}

.task-steps {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.task-step {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.task-action-btn {
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.twitter-btn-style {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.twitter-btn-style:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.twitter-btn-style:active:not(:disabled) {
    transform: translateY(0);
}

.twitter-btn-style:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.task-verify-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.task-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 0.875rem;
}

.task-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.task-verify-btn {
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: 0.875rem;
}

.task-verify-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.task-verify-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.task-verify-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.task-success {
    text-align: center;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.task-success .success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.task-success .success-text {
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.task-pending {
    text-align: center;
    padding: 1rem;
    background: rgba(234, 179, 8, 0.1);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.task-pending .pending-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

.task-cooldown {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* Rewards Mobile Responsive */
@media (max-width: 768px) {
    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .task-verify-container {
        flex-direction: column;
    }

    .task-verify-btn {
        width: 100%;
    }
}

/* OLD STYLES - CAN BE REMOVED */
.tweet-section {
    margin: 2rem 0;
}

.tweet-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.tweet-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tweet-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.status-icon {
    font-size: 1.5rem;
}

.status-text {
    font-weight: 600;
    color: var(--foreground);
}

.tweet-instructions,
.tweet-requirements {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.instructions-title,
.requirements-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.instructions-list,
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list {
    counter-reset: item;
}

.instructions-list li {
    counter-increment: item;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    position: relative;
}

.instructions-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--primary);
}

.requirements-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.compose-tweet-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.compose-tweet-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.compose-tweet-btn:active:not(:disabled) {
    transform: translateY(0);
}

.compose-tweet-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tweet-verify-container {
    margin-top: 1.5rem;
}

.tweet-label {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.tweet-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.tweet-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.tweet-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.verify-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.verify-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.verify-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.verify-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tweet-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.tweet-success {
    text-align: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Tweet Mobile Responsive */
@media (max-width: 768px) {
    .tweet-input-group {
        flex-direction: column;
    }

    .verify-btn {
        width: 100%;
    }
}

/* ===== FOLLOW + RETWEET STYLES ===== */

.followretweet-section {
    margin: 2rem 0;
}

.followretweet-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.followretweet-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.followretweet-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.followretweet-instructions,
.followretweet-requirements {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.followretweet-instructions a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.followretweet-instructions a:hover {
    text-decoration: underline;
}

.view-tweet-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.view-tweet-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.view-tweet-btn:active:not(:disabled) {
    transform: translateY(0);
}

.view-tweet-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.followretweet-verify-container {
    margin-top: 1.5rem;
}

.followretweet-label {
    display: block;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.followretweet-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.followretweet-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.followretweet-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.followretweet-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.followretweet-success {
    text-align: center;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.followretweet-pending {
    text-align: center;
    padding: 2rem;
    background: rgba(234, 179, 8, 0.1);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    display: none;
}

.pending-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

/* Follow+Retweet Mobile Responsive */
@media (max-width: 768px) {
    .followretweet-input-group {
        flex-direction: column;
    }
}

/* ===== ACHIEVEMENT POPUP STYLES ===== */

.achievement-popup {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.5s ease-out forwards;
    max-width: 350px;
}

.achievement-popup.hidden {
    animation: slideOutRight 0.5s ease-out forwards;
    pointer-events: none;
}

.achievement-content {
    background: linear-gradient(135deg, var(--card) 0%, rgba(255, 107, 0, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.achievement-icon {
    font-size: 3rem;
    animation: bounce 1s ease-in-out infinite;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.achievement-text {
    font-size: 0.875rem;
    color: var(--foreground);
    margin: 0;
}

/* Achievement Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Achievement Mobile Responsive */
@media (max-width: 768px) {
    .achievement-popup {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ===== LAUNCH COMPETITION BANNER STYLES ===== */

.launch-competition-banner {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.launch-competition-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.launch-competition-icon {
    font-size: 2.5rem;
    line-height: 1;
    animation: rocket 2s ease-in-out infinite;
}

.launch-competition-text {
    flex: 1;
}

.launch-competition-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.launch-competition-subtitle {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.4;
}

.launch-competition-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.launch-spots {
    color: var(--primary);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Launch Competition Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    }
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Launch Competition Mobile Responsive */
@media (max-width: 768px) {
    .launch-competition-banner {
        padding: 0.875rem;
    }

    .launch-competition-icon {
        font-size: 2rem;
    }

    .launch-competition-title {
        font-size: 0.875rem;
    }

    .launch-competition-subtitle {
        font-size: 0.75rem;
    }
}

/* ========================================
   AUTO RE-ENTRY PANEL STYLES
   ======================================== */

.auto-reentry-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.auto-reentry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider {
    background-color: var(--primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-slider:hover {
    opacity: 0.9;
}

/* Settings Section */
.auto-reentry-settings {
    margin: 15px 0;
}

.auto-reentry-settings label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 10px;
}

.count-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    font-weight: 600;
}

.count-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.count-btn.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 255, 163, 0.3);
}

/* Status Display */
.auto-reentry-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

.status-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
}

.status-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-item > span:last-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* History Section */
.auto-reentry-history {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auto-reentry-history h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-list {
    max-height: 200px;
    overflow-y: auto;
}

.history-list::-webkit-scrollbar {
    width: 6px;
}

.history-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.history-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

.history-item.success {
    border-left: 3px solid var(--primary);
}

.history-item.error {
    border-left: 3px solid #ff4444;
}

.history-item > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-msg {
    opacity: 0.7;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-empty {
    text-align: center;
    opacity: 0.5;
    padding: 30px 20px;
    font-size: 0.9rem;
}

/* ========================================
   WALLET TRANSPARENCY PANEL STYLES
   ======================================== */

.transparency-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.transparency-panel h3 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    color: var(--primary);
    font-weight: 700;
}

.transparency-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0 0 20px 0;
}

.address-grid {
    display: grid;
    gap: 16px;
}

.address-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.address-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.address-item label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-address {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 12px;
    border-radius: 6px;
    color: #4ade80;
    word-break: break-all;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.address-actions {
    display: flex;
    gap: 8px;
}

.address-btn {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.address-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.address-btn:active {
    transform: translateY(0);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.solscan-btn {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4ade80;
}

.solscan-btn:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4ade80;
}

/* ========================================
   LOADING SKELETON STYLES
   ======================================== */

.skeleton-loader {
    width: 100%;
}

.skeleton-item {
    padding: 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-line-title {
    width: 60%;
    height: 16px;
}

.skeleton-line-text {
    width: 40%;
    height: 12px;
}

.skeleton-line:last-child {
    margin-bottom: 0;
}

@keyframes skeletonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton-line {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.15) 40px,
        rgba(255, 255, 255, 0.05) 80px
    );
    background-size: 200px 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

/* ========================================
   IN-PAGE NOTIFICATION STYLES
   ======================================== */

.in-page-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.in-page-notification.hidden {
    display: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(calc(100% + 20px));
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.in-page-notification.success .notification-content {
    border-left: 4px solid var(--primary);
}

.in-page-notification.error .notification-content {
    border-left: 4px solid #ff4444;
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.notification-body {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .auto-reentry-panel {
        padding: 15px;
        margin: 15px 0;
    }

    .auto-reentry-header {
        font-size: 1rem;
    }

    .auto-reentry-status {
        gap: 8px;
    }

    .status-item {
        padding: 10px;
    }

    .status-item > span:last-child {
        font-size: 1rem;
    }

    .count-btn {
        padding: 8px;
        font-size: 0.9rem;
    }

    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .history-msg {
        max-width: 100%;
        text-align: left;
    }

    .in-page-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-content {
        padding: 12px;
    }
}
