/* CSS Variables */
:root {
    --primary-orange: #ff6b35;
    --glow-orange: #ff8c42;
    --dark-red: #8b0000;
    --dark-gold: #b8860b;
    --darker-bg: #0a0a0a;
    --dark-bg: #1a1a1a;
    --medium-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #666666;
    --light-blue: #4fc3f7;
    --purple: #9c27b0;
    --green: #4caf50;
    --border-color: #333333;
    --glow-shadow: 0 0 20px var(--glow-orange);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    --chinese-red: #d32f2f;
    --chinese-gold: #ffd700;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Layout Structure */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    border-right: 2px solid var(--border-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Navigation Styles */
.nav-header {
    margin-bottom: 3rem;
    text-align: center;
}

.nav-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--chinese-gold);
    text-shadow: var(--text-shadow);
    margin-bottom: 0.5rem;
}

.nav-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 1rem;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--chinese-gold), var(--primary-orange));
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateX(5px);
}

.nav-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--chinese-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Wallet Connect Styles */
.wallet-connect {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.wallet-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(45deg, var(--chinese-gold), var(--primary-orange));
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.wallet-btn.connected {
    background: linear-gradient(45deg, var(--green), var(--light-blue));
}

/* Chinese Pixelated Elements */
.chinese-elements {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.chinese-elements > div {
    font-size: 2rem;
    animation: pixel-float 3s ease-in-out infinite;
    filter: pixelate(2px);
}

.pixel-dragon { animation-delay: 0s; }
.pixel-lantern { animation-delay: 0.5s; }
.pixel-coin { animation-delay: 1s; }
.pixel-temple { animation-delay: 1.5s; }

@keyframes pixel-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--chinese-gold);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    z-index: 2;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-blue);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tensor-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--chinese-gold);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    color: var(--chinese-gold);
    font-size: 0.8rem;
    font-weight: 600;
    animation: tensor-pulse 2s ease-in-out infinite;
}

.tensor-verified svg {
    animation: tensor-spin 3s linear infinite;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--chinese-gold);
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-motto {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-motto-en {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.collection-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--chinese-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--chinese-gold), var(--primary-orange));
    color: var(--text-primary);
    box-shadow: var(--glow-shadow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--chinese-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.hero-right {
    position: relative;
    z-index: 2;
}

.featured-nft {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--glow-shadow);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.nft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: var(--text-primary);
}

.nft-stats {
    display: flex;
    justify-content: space-between;
}

.nft-stats .stat-item {
    text-align: left;
}

.nft-stats .stat-number {
    font-size: 1rem;
    color: var(--chinese-gold);
}

.nft-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Background NFTs */
.background-nfts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-nft {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-nft:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-nft:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.bg-nft:nth-child(3) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-nft:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 3s;
}

.bg-nft:nth-child(5) {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--chinese-gold);
    color: var(--chinese-gold);
    background: rgba(255, 215, 0, 0.1);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-scroll {
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-scroll::-webkit-scrollbar {
    width: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--chinese-gold);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.nft-card {
    background: var(--medium-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.nft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--chinese-gold), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nft-card:hover::before {
    opacity: 0.1;
}

.nft-card:hover {
    transform: translateY(-5px);
    border-color: var(--chinese-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.nft-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nft-image.loaded {
    transform: scale(1);
}

.nft-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--dark-bg), var(--medium-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nft-info {
    padding: 1rem;
}

.nft-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chinese-gold);
    margin-bottom: 0.5rem;
}

.nft-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.nft-rarity {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nft-rarity.common {
    background: var(--green);
    color: var(--text-primary);
}

.nft-rarity.rare {
    background: var(--light-blue);
    color: var(--text-primary);
}

.nft-rarity.legendary {
    background: var(--chinese-gold);
    color: var(--darker-bg);
}

/* Collection Section */
.collection-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* Chinese Header Styles */
.chinese-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 2px solid var(--chinese-gold);
}

.pixel-border {
    font-size: 2rem;
    animation: pixel-spin 4s linear infinite;
}

.pixel-title {
    font-size: 2rem;
    color: var(--chinese-gold);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

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

.collection-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--medium-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--chinese-gold), var(--primary-orange));
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--chinese-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--chinese-gold);
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.stat-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stat-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat-breakdown span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--chinese-gold);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--chinese-gold);
    margin-bottom: 2rem;
    font-weight: 900;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--medium-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--chinese-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature i {
    font-size: 2rem;
    color: var(--chinese-gold);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Official Links */
.official-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.official-links h3 {
    color: var(--chinese-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.official-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--medium-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.official-link:hover {
    border-color: var(--chinese-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.official-link i {
    font-size: 1.2rem;
    color: var(--chinese-gold);
}

.official-link span {
    font-size: 0.9rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-stats .stat-card {
    text-align: center;
    padding: 1.5rem;
}

.about-stats .stat-number {
    font-size: 2.5rem;
    color: var(--chinese-gold);
    font-weight: 900;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--chinese-red);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--light-blue);
    z-index: -2;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
    100% { transform: translate(0); }
}

/* Loading Overlay */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
    position: relative;
}

.chinese-loading-symbol {
    font-size: 4rem;
    color: var(--chinese-gold);
    margin-bottom: 2rem;
    animation: chinese-pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--chinese-gold);
    font-weight: 900;
}

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

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--chinese-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.loading-text {
    font-size: 1.2rem;
    color: var(--chinese-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--chinese-gold);
}

.loading-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .side-nav {
        width: 250px;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .featured-image {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .side-nav.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .collection-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: var(--chinese-gold);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Wallet Modal Styles */
.wallet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.wallet-modal.active {
    display: flex;
}

.wallet-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.wallet-modal .modal-content {
    position: relative;
    background: var(--medium-bg);
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--chinese-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.wallet-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
}

.wallet-modal .modal-body {
    padding: 2rem;
    text-align: center;
}

.wallet-modal h3 {
    color: var(--chinese-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.wallet-modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.wallet-option:hover {
    border-color: var(--chinese-gold);
    background: rgba(255, 215, 0, 0.1);
}

.wallet-option img {
    width: 24px;
    height: 24px;
}

.token-verification {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.token-verification h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.token-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.token-symbol {
    color: var(--chinese-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.token-amount {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.verification-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.verified {
    background: var(--green);
    color: var(--text-primary);
}

.status-badge.unverified {
    background: var(--primary-orange);
    color: var(--text-primary);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--chinese-gold); }
.text-orange { color: var(--primary-orange); }
.bg-dark { background: var(--dark-bg); }
.bg-darker { background: var(--darker-bg); } 