/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

#loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: cloudFloat 15s ease-in-out infinite;
}

.loading-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Loading Logo - Updated to use actual logo image */
.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoBounce 1.5s ease-in-out infinite;
    /* Remove all background, border, and pseudo-element styles */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.loading-logo::before {
    display: none !important;
    content: none !important;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    /* Force display and remove any inherited styles */
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #FF6B35;
    border-right: 4px solid #FF8C00;
    border-bottom: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.loading-text {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Comic Neue', cursive;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2.5s ease-in-out infinite;
}

.loading-progress {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FF6B35, #FF8C00);
    border-radius: 3px;
    animation: progressBar 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes logoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes textGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    100% { text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes progressBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Patrick Hand', cursive;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #1E90FF 100%);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(135, 206, 235, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 19px 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #90ee90, #87ceeb, #ffb6c1);
    background-size: 200% 100%;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 12px 16px;
    border-radius: 8px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(26, 26, 46, 0.9);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.nav-btn {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 15px 35px;
    border: 3px solid #1a1a2e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-btn:hover::before {
    transform: translateX(100%);
}

.connect-btn {
    background: #FF8C00;
    color: #1a1a2e;
}

.connect-btn:hover {
    background: #FF7F00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6);
}

.hero-text p {
    font-size: 1.3rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-image img:hover {
    transform: scale(1.1);
    border-color: #00ffff;
    box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.5);
}

/* NFT Image Special Effects */
.hero-image img {
    animation: randomFlash 4s ease-in-out infinite;
}

@keyframes randomFlash {
    0% { 
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    25% { 
        border-color: #00ffff;
        box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff, 0 0 90px #00ffff, 0 0 120px #00ffff, inset 0 0 30px rgba(0, 255, 255, 0.5);
        transform: scale(1.02);
    }
    50% { 
        border-color: #ff00ff;
        box-shadow: 0 0 30px #ff00ff, 0 0 60px #ff00ff, 0 0 90px #ff00ff, 0 0 120px #ff00ff, inset 0 0 30px rgba(255, 0, 255, 0.5);
        transform: scale(1.05);
    }
    75% { 
        border-color: #ffff00;
        box-shadow: 0 0 30px #ffff00, 0 0 60px #ffff00, 0 0 90px #ffff00, 0 0 120px #ffff00, inset 0 0 30px rgba(255, 255, 0, 0.5);
        transform: scale(1.02);
    }
    100% { 
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}



/* Airdrop Checker Section */
.airdrop-checker {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.checker-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.checker-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.checker-card p {
    font-size: 1.2rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

/* Real Data Notice Styles */
.real-data-notice {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.real-data-notice i {
    font-size: 1.2rem;
    color: #fff;
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.address-input {
    flex: 1;
    min-width: 350px;
    padding: 20px 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.address-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.check-btn {
    background: #FF8C00;
    color: #1a1a2e;
    border: 3px solid #1a1a2e;
    padding: 20px 35px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.check-btn:hover {
    background: #FF7F00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.checker-results {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
}

.result-item:last-child {
    border-bottom: none;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.token-name {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.token-balance {
    font-size: 1.4rem;
    font-family: 'Comic Neue', cursive;
    color: #FF6B35;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.status {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 140px;
    text-align: center;
}

/* Eligibility status styles */
.status.eligible {
    color: #00ff88 !important;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status.not-eligible {
    color: #ff6b6b !important;
    font-weight: 600;
}

.status.checking {
    background: rgba(135, 206, 235, 0.2);
    color: #87CEEB;
    border: 2px solid #87CEEB;
}

/* Eligibility Details Section */
.eligibility-details {
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.eligibility-message {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.message-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.message-icon.success {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.message-icon.warning {
    background: linear-gradient(45deg, #FF6B35, #FF8C00);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.message-icon.error {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.message-content {
    flex: 1;
}

.message-title {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.message-text {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wallet Connect Interface */
.wallet-connect-interface {
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.wallet-header {
    text-align: center;
    margin-bottom: 30px;
}

.wallet-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #0a0a1a;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.wallet-header p {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

/* Balance Display Section */
.balance-display-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.balance-display-section h4 {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #0a0a1a;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.balance-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.balance-label {
    font-size: 1.2rem;
    font-family: 'Comic Neue', cursive;
    color: #0a0a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.balance-value {
    font-size: 2.2rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #FF4500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

/* Token balance values for eligible tokens */
.balance-value.eligible {
    color: #00ff88 !important;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* CHLP Calculation Section */
.chlp-calculation-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}



.chlp-calculation-section h4 {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.calculation-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculation-item.total {
    border-bottom: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 10px;
    font-weight: bold;
}

.calculation-item.bonus {
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 10px;
}

.calculation-item.final {
    border-bottom: none;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 10px;
    font-weight: bold;
}

/* Bonus calculation for eligible users */
.calculation-item.bonus .calc-value {
    color: #FF6B35 !important;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
    font-size: 1.4rem;
    font-weight: bold;
}

/* Final CHLP amount for eligible users */
.calculation-item.final .calc-value {
    color: #008000 !important;
    text-shadow: 0 0 10px rgba(0, 128, 0, 0.5);
    font-size: 1.6rem;
    font-weight: bold;
}

/* Referral count styling */
.calculation-item.referral .calc-value {
    color: #FF6B35 !important;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

/* Claim CHLP button styling */
.calculation-item.claim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.claim-btn {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.claim-btn:hover:not(:disabled)::before {
    left: 100%;
}

.claim-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6);
    background: linear-gradient(135deg, #4682B4, #1E90FF);
    border-color: rgba(255, 255, 255, 0.5);
}

.claim-btn:disabled {
    background: linear-gradient(135deg, #a0a0a0, #808080);
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.claim-btn i {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.claim-btn span {
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.calc-label {
    font-size: 1.3rem;
    font-family: 'Comic Neue', cursive;
    color: #0a0a1a;
    font-weight: 600;
}
/* 为所有计算结果的数字添加橙色 */
.calculation-item .calc-value {
    color: #FF6B35 !important;
    font-weight: bold;
}
.calc-value {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
}

/* Social Tasks Section */
.social-tasks-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-tasks-section h4 {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #0a0a1a;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.social-tasks-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-task-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    gap: 30px;
    position: relative;
}

.social-task-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
    z-index: -1;
}

.social-task-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-task-item.completed {
    background: rgba(255, 69, 0, 0.1);
    border-color: #FF4500;
}

.task-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: start;
    min-width: 0;
}

.task-info i {
    font-size: 1.4rem;
    color: #0a0a1a;
}

.task-info span {
    font-size: 1.3rem;
    font-family: 'Comic Neue', cursive;
    color: #0a0a1a;
    font-weight: 700;
}

.task-status {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
    flex-shrink: 0;
}

.bonus {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000000 !important;
    background: rgba(255, 69, 0, 0.15);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

/* Task button container */
.task-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 260px;
    align-items: center;
}

/* Task button states */
.task-btn {
    background: linear-gradient(45deg, #FF4500, #FF6B35);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

/* Button text with better visibility */
.task-btn span {
    font-size: 0.8rem;
    line-height: 1;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .social-task-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .task-buttons {
        justify-self: center;
        width: 220px;
    }
    
    .task-btn {
        width: 120px;
        height: 45px;
        font-size: 0.8rem;
    }
    
    .task-btn.go-btn[data-task="invite"] {
        width: 140px;
    }
    
    .task-info {
        justify-self: center;
    }
    
    .task-status {
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .social-task-item {
        gap: 15px;
        padding: 15px;
    }
    
    .task-buttons {
        width: 240px;
        gap: 10px;
    }
    
    .task-btn {
        width: 110px;
        height: 40px;
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .task-btn.go-btn[data-task="invite"] {
        width: 120px;
    }
}

/* Go button (Twitter blue) */
.task-btn.go-btn {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
    width: 120px;
}

/* Invite button (Generate Link) - wider for longer text */
.task-btn.go-btn[data-task="invite"] {
    width: 140px;
    background: linear-gradient(45deg, #FF6B35, #FF4500);
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

.task-btn.go-btn:hover {
    background: linear-gradient(45deg, #0d8bd9, #0a7bc4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

/* Verify button (Teal) */
.task-btn.verify-btn {
    background: linear-gradient(45deg, #17a2b8, #138496);
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
    width: 120px;
}

.task-btn.verify-btn:hover {
    background: linear-gradient(45deg, #138496, #0f6674);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

.task-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
    filter: brightness(1.1);
}

.social-task-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Smooth transition for all button states */
.task-btn,
.task-btn:hover,
.task-btn:active,
.task-btn:focus {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus state for accessibility */
.task-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Active state */
.task-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

.task-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.task-btn.verifying {
    background: linear-gradient(45deg, #FF8C00, #FFD700);
    color: white;
    cursor: wait;
}

.task-btn.verifying::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.task-btn.completed {
    background: linear-gradient(135deg, #00ff88, #00cc66) !important;
    color: #0a0a1a !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    cursor: default;
}

.task-btn.verification-failed {
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    color: white;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Final Calculation Section */
.final-calculation-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-calculation-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.final-item.total {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 10px;
    font-weight: bold;
}

.final-label {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
}

.final-value {
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
}

.final-item.total .final-value {
    color: #FF4500;
    font-size: 1.6rem;
}





/* Responsive Design */
@media (max-width: 768px) {
    .balance-grid {
        grid-template-columns: 1fr;
    }
    
    .social-task-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .task-status {
        justify-content: center;
    }
    

}

/* Claim Section */
.claim-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.claim-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.claim-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.claim-card p {
    font-size: 1.2rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.connect-wallet-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.connect-wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.wallet-connect {
    text-align: center;
}

.claim-interface {
    margin-top: 30px;
}

.balance-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-item.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    padding-top: 20px;
    font-weight: bold;
}

.label {
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.value {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
    color: #FF6B35;
}

.social-tasks {
    margin-bottom: 30px;
}

.social-tasks h3 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.task-item.completed {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.task-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.task-info i {
    font-size: 1.5rem;
    color: #1a1a2e;
}

.task-info span {
    font-size: 1.1rem;
    font-family: 'Patrick Hand', cursive;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.task-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus {
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border: 1px solid #FF6B35;
}

.task-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.task-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.task-btn.completed {
    background: linear-gradient(135deg, #00ff88, #00cc66) !important;
    color: #0a0a1a !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.claim-btn {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.claim-btn:disabled {
    background: rgba(128, 128, 128, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.claim-actions {
    text-align: center;
}

.claim-note {
    font-size: 0.9rem;
    font-family: 'Comic Neue', cursive;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.95), rgba(100, 181, 246, 0.9));
    backdrop-filter: blur(15px);
    padding: 40px 0;
    position: relative;
    border-top: 3px solid #1a1a2e;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #90ee90, #87ceeb, #ffb6c1);
    background-size: 200% 100%;
    animation: rainbow 3s linear infinite;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-main h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 15px;
}

.footer-main p {
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-cta {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Patrick Hand', cursive;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-social h3 {
    font-size: 2rem;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #FF6B35, #FF8C00);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 25px;
    color: #0a0a1a;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::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.6s;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 2.5rem;
    color: #0a0a1a;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-link span {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.social-link.x-twitter:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-8px) scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.social-link.x-twitter:hover i {
    color: #000000;
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-link.x-twitter:hover span {
    color: #000000;
    transform: scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-link.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.15));
    border-color: rgba(0, 136, 204, 0.7);
}

.social-link.telegram:hover i {
    color: #0088cc;
    transform: scale(1.1);
}

.social-link.telegram:hover span {
    color: #0088cc;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Patrick Hand', cursive;
    color: #FF6B35;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Comic Neue', cursive;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .address-input {
        min-width: auto;
    }
    
    .task-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .task-status {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Eligibility Message Styles */
.eligibility-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid;
}

.eligibility-message .message {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    font-weight: 600;
}

.eligibility-message .message.success {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    color: #155724;
}

.eligibility-message .message.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #856404;
}

.eligibility-message .message.error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.eligibility-message i {
    font-size: 1.5rem;
}

/* Eligibility message for eligible users */
.eligibility-message.eligible {
    color: #00ff88 !important;
}

/* Connection Message Styles */
.connection-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.connection-message.success {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.connection-message.error {
    background: linear-gradient(45deg, #dc3545, #c82333);
}

.connection-message.warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
    color: #212529;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Professional Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: notificationSlideIn 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    color: #333;
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Notification Types */
.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
} 

/* Custom Verification Dialog - REMOVED, replaced with auto-verification */

/* slideInUp animation - REMOVED, no longer needed */ 

 

/* Admin Configuration Panel */
.admin-config-panel {
    display: none;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.admin-config-panel.visible {
    display: block;
}

.admin-config-panel h4 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FF4500;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Patrick Hand', cursive;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.config-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-item label {
    font-weight: 600;
    color: #0a0a1a;
    font-size: 1rem;
    font-family: 'Patrick Hand', cursive;
}

.config-item input {
    padding: 12px 15px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Comic Neue', cursive;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.config-item input:focus {
    outline: none;
    border-color: #FF4500;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.config-item small {
    font-size: 0.85rem;
    color: #666;
    font-family: 'Comic Neue', cursive;
    font-style: italic;
}

.config-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.config-btn {
    background: linear-gradient(45deg, #FF4500, #FF6B35);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.config-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
} 

/* Task Verification Button Styles */
.task-btn.verifying {
    background: linear-gradient(45deg, #FF6B35, #FF8C00) !important;
    color: white !important;
    cursor: not-allowed !important;
    position: relative;
    overflow: hidden;
}

.task-btn.verifying::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

.task-btn.verifying i.fa-spinner {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.task-btn.completed {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    color: white !important;
    cursor: not-allowed !important;
}

.task-btn.completed i.fa-check {
    margin-right: 8px;
    color: #fff;
}

.task-btn.verification-failed {
    background: linear-gradient(45deg, #dc3545, #c82333) !important;
    color: white !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* 添加新的样式 */
.token-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.token-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-item .token-name {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.token-item .token-balance {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.airdrop-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.airdrop-item {
    flex: 1;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.linea-airdrop {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #667eea;
}

.chlp-airdrop {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: 2px solid #f093fb;
}

.airdrop-header {
    margin-bottom: 15px;
}

.airdrop-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.airdrop-balance {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.airdrop-details {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.airdrop-status {
    font-weight: 500;
}

.airdrop-calculation {
    font-weight: 400;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .token-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .airdrop-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .token-item {
        padding: 12px;
    }
    
    .airdrop-item {
        padding: 20px;
    }
}
/* 与网页主题一致的配色 */
.token-item .token-balance {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Patrick Hand', cursive;
}

.linea-airdrop {
    background: rgba(135, 206, 235, 0.9);
    border: 2px solid #87CEEB;
}

.chlp-airdrop {
    background: rgba(255, 140, 0, 0.9);
    border: 2px solid #FF8C00;
}

.airdrop-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Patrick Hand', cursive;
}

.airdrop-balance {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    font-family: 'Patrick Hand', cursive;
}

.airdrop-details {
    font-size: 12px;
    color: #1a1a2e;
    font-family: 'Comic Neue', cursive;
}
/* 任务验证动画样式 */
.task-btn.verifying {
    background: linear-gradient(45deg, #ffa500, #ff8c00) !important;
    animation: pulse-verify 1s infinite;
}

.task-btn.completed {
    background: linear-gradient(45deg, #4CAF50, #45a049) !important;
    animation: success-bounce 0.6s ease-out;
}

.task-btn.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* 验证动画 */
@keyframes pulse-verify {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* 成功动画 */
@keyframes success-bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* 旋转动画 */
.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* 任务状态指示器 */
.task-status-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4CAF50;
    border: 2px solid white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.task-status-indicator.show {
    opacity: 1;
}

/* 验证进度条 */
.verification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    border-radius: 0 0 20px 20px;
    transition: width 0.1s ease;
    width: 0%;
}

.task-btn.verifying .verification-progress {
    animation: progress-fill 5s linear forwards;
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* 通知样式增强 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 400px;
    border-left: 4px solid #3498db;
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, #d5f4e6, #ffffff);
}

.notification-warning {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, #fef5e7, #ffffff);
}

.notification-error {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fadbd8, #ffffff);
}

.notification-info {
    border-left-color: #3498db;
    background: linear-gradient(135deg, #ebf3fd, #ffffff);
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
    color: #3498db;
}

.notification-success .notification-icon {
    color: #27ae60;
}

.notification-warning .notification-icon {
    color: #f39c12;
}

.notification-error .notification-icon {
    color: #e74c3c;
}

.notification-message {
    flex: 1;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

/* 任务倒计时显示 */
.task-countdown {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.task-countdown.show {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .task-countdown {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}
