@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fira+Code:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #1a1a2e;
    --accent-bg: #16213e;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --primary-text: #ffffff;
    --secondary-text: #b8b9c4;
    --accent-text: #64ffda;
    --neon-cyan: #00ffff;
    --neon-purple: #b794f6;
    --neon-pink: #ff6b9d;
    --neon-green: #00ff88;
    --danger: #ff4757;
    --warning: #ffa502;
    --success: #2ed573;
    
    --shadow-neon: 0 0 20px rgba(100, 255, 218, 0.3);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--primary-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Mysterious Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 148, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--accent-bg) 100%);
    z-index: -2;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { transform: translateX(0) scale(1); }
    100% { transform: translateX(-20px) scale(1.05); }
}

/* Floating Particles Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent-text);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { width: 2px; height: 2px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 3px; height: 3px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 1px; height: 1px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 2px; height: 2px; left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { width: 1px; height: 1px; left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { width: 2px; height: 2px; left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { width: 3px; height: 3px; left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { width: 1px; height: 1px; left: 90%; animation-delay: 16s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

header {
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(100, 255, 218, 0.05) 50%, transparent 70%);
    animation: headerGlow 8s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

header p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.tool-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.8s ease;
}

.tool-container:hover::before {
    left: 100%;
}

.tool-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-glass),
        0 0 40px rgba(100, 255, 218, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
}

.tool-container h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-text), var(--accent-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tool-container p {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.tool-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.6));
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.6)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(100, 255, 218, 0.8)); }
}

.feature-text {
    font-weight: 500;
    color: var(--primary-text);
    font-size: 1.1rem;
}

.tool-actions {
    text-align: center;
    margin: 3rem 0;
}

.tool-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--primary-bg);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(100, 255, 218, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-button::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.6s ease;
}

.tool-button:hover::before {
    left: 100%;
}

.tool-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(100, 255, 218, 0.6),
        0 0 30px rgba(183, 148, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.button-icon {
    font-size: 1.4rem;
    animation: buttonIconSpin 3s linear infinite;
}

@keyframes buttonIconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coming-soon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.soon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.soon-item::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    background: var(--warning);
    color: var(--primary-bg);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.soon-item:hover::after {
    opacity: 1;
}

.soon-item:hover {
    background: rgba(255, 165, 2, 0.05);
    border-color: rgba(255, 165, 2, 0.2);
}

.soon-icon {
    font-size: 1.8rem;
    filter: grayscale(70%) opacity(0.6);
    transition: filter 0.3s ease;
}

.soon-item:hover .soon-icon {
    filter: grayscale(30%) opacity(0.8);
}

.soon-text {
    font-weight: 500;
    color: var(--secondary-text);
    opacity: 0.7;
}

/* Navigation Styles */
.header-nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-text);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateX(-5px);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

/* Input Styles */
.input-section {
    margin: 2rem 0;
}

.url-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.url-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--primary-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.url-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-text);
    box-shadow: 
        0 0 0 3px rgba(100, 255, 218, 0.2),
        0 0 20px rgba(100, 255, 218, 0.1);
}

.url-input::placeholder {
    color: var(--secondary-text);
}

.analyze-button {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--primary-bg);
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.analyze-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
}

.input-help {
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-style: italic;
}

/* Loading and Error States */
.loading-indicator {
    text-align: center;
    padding: 3rem;
    color: var(--secondary-text);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(100, 255, 218, 0.2);
    border-top: 3px solid var(--accent-text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.5));
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-container {
    margin: 1.5rem 0;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 12px;
    color: var(--danger);
    backdrop-filter: blur(10px);
}

.error-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px rgba(255, 71, 87, 0.5));
}

/* Metadata Display Styles */
.metadata-container, .website-info-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metadata-container h3, .website-info-container h3 {
    color: var(--primary-text);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.metadata-container h3::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-text), transparent);
    margin-left: 1rem;
}

.metadata-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metadata-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metadata-item:nth-child(even) {
    animation-delay: 0.1s;
}

.metadata-item:nth-child(3n) {
    animation-delay: 0.2s;
}

.metadata-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.metadata-item:hover::before {
    transform: scaleX(1);
}

.metadata-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.metadata-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.metadata-value {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Fira Code', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-text);
    transition: all 0.3s ease;
    word-break: break-word;
}

.metadata-value:hover {
    background: rgba(0, 0, 0, 0.5);
    border-left-color: var(--neon-purple);
    color: var(--primary-text);
    transform: translateX(3px);
}

.metadata-value a {
    color: var(--accent-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(100, 255, 218, 0.1);
}

.metadata-value a:hover {
    background: rgba(100, 255, 218, 0.2);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transform: translateX(3px);
}

/* Solana Tracker Specific Styles */
.price-container {
    margin: 2rem 0;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.price-card.main-price {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1), rgba(183, 148, 246, 0.1));
    border-color: rgba(100, 255, 218, 0.3);
}

.price-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', monospace;
}

.main-price .price-value {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-change {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.price-change.positive {
    background: rgba(46, 213, 115, 0.2);
    color: var(--success);
}

.price-change.negative {
    background: rgba(255, 71, 87, 0.2);
    color: var(--danger);
}

.chart-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chart-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--secondary-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.chart-btn:hover,
.chart-btn.active {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--primary-bg);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.chart-container {
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-container {
    margin-top: 2rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trending-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trending-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trending-card:hover::before {
    transform: scaleX(1);
}

.trending-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(100, 255, 218, 0.3);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.token-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-text);
}

.token-symbol {
    font-size: 0.9rem;
    color: var(--secondary-text);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
}

.token-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-text);
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', monospace;
}

.token-change {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 1rem;
}

.token-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.token-link:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
    display: block;
    font-family: 'Fira Code', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    margin-bottom: 0.5rem;
}

/* Metadata Tool Specific Styles */
.upload-area {
    border: 3px dashed rgba(100, 255, 218, 0.3);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.8s ease;
}

.upload-area:hover::before {
    left: 100%;
}

.upload-area:hover {
    border-color: var(--neon-cyan);
    background: rgba(100, 255, 218, 0.05);
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-glass),
        0 0 30px rgba(100, 255, 218, 0.3);
}

.upload-area.dragover {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 
        var(--shadow-glass),
        0 0 40px rgba(0, 255, 136, 0.4);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.6));
    animation: iconPulse 2s ease-in-out infinite alternate;
}

.upload-content p {
    font-size: 1.2rem;
    color: var(--primary-text);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.upload-content small {
    color: var(--secondary-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

.preview-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.image-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-item:hover::before {
    transform: scaleX(1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-text);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', monospace;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.info-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metadata-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-green);
    display: block;
    font-family: 'Fira Code', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glass);
}

.export-btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--primary-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.export-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.6s ease;
}

.export-btn:hover::before {
    left: 100%;
}

.export-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(100, 255, 218, 0.5),
        0 0 30px rgba(183, 148, 246, 0.4);
}

.export-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Enhanced metadata value styling for better integration */
.metadata-value {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Fira Code', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-text);
    transition: all 0.3s ease;
    word-break: break-word;
}

.metadata-value:hover {
    background: rgba(0, 0, 0, 0.5);
    border-left-color: var(--neon-purple);
    color: var(--primary-text);
    transform: translateX(3px);
}

.metadata-value a {
    color: var(--accent-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(100, 255, 218, 0.1);
}

.metadata-value a:hover {
    background: rgba(100, 255, 218, 0.2);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    transform: translateX(3px);
}

/* Special styling for different metadata categories */
.metadata-item:has(.metadata-label:contains("📄")) {
    border-left: 4px solid var(--neon-cyan);
}

.metadata-item:has(.metadata-label:contains("🔐")) {
    border-left: 4px solid var(--warning);
}

.metadata-item:has(.metadata-label:contains("📍")) {
    border-left: 4px solid var(--neon-green);
}

.metadata-item:has(.metadata-label:contains("📷")) {
    border-left: 4px solid var(--neon-purple);
}

.metadata-item:has(.metadata-label:contains("🖼️")) {
    border-left: 4px solid var(--neon-pink);
}

/* Animate counters */
@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.stat-value[data-count] {
    animation: countUp 0.6s ease forwards;
}

/* Loading states for metadata values */
.metadata-value:contains("Computing"), 
.metadata-value:contains("Loading"), 
.metadata-value:contains("Analyzing") {
    background: linear-gradient(90deg, rgba(100, 255, 218, 0.1) 25%, rgba(100, 255, 218, 0.2) 50%, rgba(100, 255, 218, 0.1) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    color: var(--accent-text);
    font-style: italic;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tool-container {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    header {
        padding: 2rem 0;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .tool-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .url-input-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .analyze-button {
        justify-content: center;
    }
    
    .metadata-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header-nav {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 1rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-price .price-value {
        font-size: 2rem;
    }
    
    .chart-controls {
        gap: 0.5rem;
    }
    
    .chart-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
}

/* Selection Styling */
::selection {
    background: rgba(100, 255, 218, 0.3);
    color: var(--primary-text);
}

/* Add particles on page load */
body.loaded::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent-text), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--neon-pink), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--neon-green), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--accent-text), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}
