* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #ffd700;
    --gold-light: #ffed4e;
    --gold-dark: #cc9900;
    --red-primary: #dc143c;
    --red-dark: #8b0000;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffd700;
    --text-secondary: #d4af37;
    --text-muted: #888;
    --border-gold: #ffd700;
    --border-red: #dc143c;
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --shadow-red: rgba(220, 20, 60, 0.3);
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-primary), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--red-primary), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--gold-primary), transparent);
    background-size: 200% 200%;
    animation: particlesMove 15s linear infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, -10px);
    }
}

@keyframes particlesMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-gold);
    position: relative;
}

.header::before,
.header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 20px;
    height: 2px;
    background: var(--red-primary);
}

.header::before {
    left: 0;
}

.header::after {
    right: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-icon {
    font-size: 40px;
    animation: swordGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--gold-primary));
}

@keyframes swordGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px var(--gold-primary));
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 20px var(--gold-primary));
    }
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--shadow-gold);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--red-primary);
    background: rgba(220, 20, 60, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--red-primary);
    margin-left: 8px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--gold-primary);
    border-color: var(--border-gold);
    box-shadow: 0 0 10px var(--shadow-gold);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 40px 0;
}

.hero-decoration {
    position: absolute;
    font-size: 60px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.hero-decoration.left {
    left: 10%;
    top: 20%;
}

.hero-decoration.right {
    right: 10%;
    top: 20%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--red-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-gold);
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.hero-title::before,
.hero-title::after {
    content: '⚔️';
    position: absolute;
    font-size: 32px;
    opacity: 0.5;
}

.hero-title::before {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-title::after {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.token-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-gold);
    border-color: var(--gold-light);
}

.card-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px var(--gold-primary));
}

.info-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
}

/* Airdrop Card */
.airdrop-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 3px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 
        0 0 20px var(--shadow-gold),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.airdrop-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--gold-primary), var(--red-primary), var(--gold-primary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.airdrop-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 30px var(--shadow-gold),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.card-border-top,
.card-border-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.card-border-top {
    top: -2px;
}

.card-border-bottom {
    bottom: -2px;
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    gap: 16px;
}

.header-decoration {
    font-size: 24px;
    opacity: 0.5;
}

.card-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    text-shadow: 0 0 15px var(--shadow-gold);
    letter-spacing: 2px;
}

.status-badge {
    position: absolute;
    right: 0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(136, 136, 136, 0.3);
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.status-badge.connected {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.wallet-section {
    margin-bottom: 24px;
}

.wallet-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    text-shadow: none;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-gold);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
}

.wallet-btn:active {
    transform: translateY(0);
}

.wallet-icon {
    font-size: 24px;
}

.wallet-info {
    margin-top: 16px;
}

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 215, 0, 0.1);
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    gap: 12px;
}

.address-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.wallet-address span:not(.address-label) {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--text-primary);
    flex: 1;
    text-align: right;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 16px;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.airdrop-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.label-icon {
    font-size: 18px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--shadow-gold);
    background: rgba(255, 215, 0, 0.1);
}

.amount-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.05);
    padding: 14px 18px;
    border-radius: 8px;
    border: 2px solid var(--border-gold);
}

.amount-display input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
}

.amount-display input:focus {
    box-shadow: none;
    background: transparent;
}

.token-symbol {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    padding: 0 8px;
}

.max-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border: 1px solid var(--red-primary);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 10px var(--shadow-red);
}

.max-btn:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
    box-shadow: 0 4px 15px var(--shadow-red);
}

.price-info {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    border: 1px solid var(--border-red);
    margin: 20px 0;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--red-primary);
    text-shadow: 0 0 10px var(--shadow-red);
}

.eligibility-check {
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    font-size: 24px;
}

.claim-btn {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border: 2px solid var(--border-red);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-top: 24px;
    box-shadow: 0 4px 20px var(--shadow-red);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.claim-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--shadow-red);
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
}

.claim-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 24px;
}

.btn-loading {
    animation: spin 1s linear infinite;
    font-size: 24px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
    filter: drop-shadow(0 0 20px var(--gold-primary));
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

.success-message h4 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--gold-primary);
    text-shadow: 0 0 15px var(--shadow-gold);
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.tx-hash {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin: 20px 0;
    word-break: break-all;
    border: 1px solid var(--border-gold);
}

.view-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/* Referral Card */
.referral-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 3px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 
        0 0 20px var(--shadow-gold),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.referral-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--gold-primary), var(--red-primary), var(--gold-primary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 30px var(--shadow-gold),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.wallet-required-prompt {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-radius: 16px;
    border: 3px solid var(--border-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px var(--shadow-gold),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.wallet-required-prompt::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.prompt-decoration {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: floatDecoration 3s ease-in-out infinite;
    z-index: 0;
}

.prompt-decoration.top-left {
    top: 15px;
    left: 15px;
    animation-delay: 0s;
}

.prompt-decoration.top-right {
    top: 15px;
    right: 15px;
    animation-delay: 0.5s;
}

.prompt-decoration.bottom-left {
    bottom: 15px;
    left: 15px;
    animation-delay: 1s;
}

.prompt-decoration.bottom-right {
    bottom: 15px;
    right: 15px;
    animation-delay: 1.5s;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
        opacity: 0.5;
    }
}

.prompt-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 15px var(--shadow-gold);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.prompt-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--gold-primary));
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px var(--gold-primary));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px var(--gold-primary));
    }
}

.prompt-text {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 0 10px var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.connect-wallet-prompt-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: 3px solid var(--border-gold);
    border-radius: 12px;
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 4px 20px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.connect-wallet-prompt-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
}

.connect-wallet-prompt-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.connect-wallet-prompt-btn span {
    display: inline-block;
    position: relative;
}

.referral-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
}

.referral-status.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.status-icon {
    font-size: 18px;
}

.referral-status.error .status-icon {
    color: #ef4444;
}

.referral-status:not(.error) .status-icon {
    color: #10b981;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
    margin: 32px 0;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.referral-link-display {
    margin-bottom: 24px;
}

.referral-link-box {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.referral-link-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.copy-link-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--bg-dark);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.copy-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

.referral-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.code-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.copy-code-btn {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 16px;
}

.copy-code-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.referral-stat-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.referral-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px var(--shadow-gold);
    border-color: var(--gold-light);
}

.stat-icon-small {
    font-size: 32px;
    filter: drop-shadow(0 0 8px var(--gold-primary));
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.stat-progress {
    margin-top: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.progress-text {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
}

.airdrop-eligibility-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 20px var(--shadow-gold);
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 0 4px 20px var(--shadow-gold);
    }
    50% {
        box-shadow: 0 6px 30px var(--shadow-gold);
    }
}

.banner-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 15px var(--gold-primary));
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
    margin-bottom: 8px;
}

.banner-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.banner-text strong {
    color: var(--gold-primary);
    font-weight: 800;
}

.share-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.share-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.share-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.referral-info {
    margin-top: 32px;
    padding: 20px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border-red);
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 16px;
    text-align: center;
}

.reward-rules {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-rules li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.reward-rules li:last-child {
    border-bottom: none;
}

.reward-rules li strong {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px var(--shadow-gold);
    border-color: var(--gold-light);
}

.stat-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px var(--gold-primary));
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 6px;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid var(--border-gold);
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--red-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--gold-primary);
    border-color: var(--border-gold);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title::before,
    .hero-title::after {
        display: none;
    }

    .hero-decoration {
        display: none;
    }

    .header {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        gap: 16px;
    }

    .token-info {
        flex-direction: column;
        align-items: stretch;
    }

    .info-card {
        min-width: auto;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-wrap: wrap;
    }

    .status-badge {
        position: relative;
        margin-top: 12px;
    }

    .referral-stats {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        min-width: 100%;
    }

    .referral-link-box {
        flex-direction: column;
    }

    .copy-link-btn {
        width: 100%;
        justify-content: center;
    }

    .referral-code-display {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .wallet-required-prompt {
        padding: 30px 20px;
    }

    .prompt-icon {
        font-size: 48px;
    }

    .prompt-title {
        font-size: 20px;
    }

    .prompt-text {
        font-size: 16px;
    }

    .connect-wallet-prompt-btn {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 180px;
    }

    .prompt-decoration {
        font-size: 20px;
    }
}
