.token-info-page {
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(145deg, 
        rgba(26, 16, 37, 0.95) 0%,
        rgba(90, 24, 154, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

.token-info-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.token-info-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.token-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.detail-card {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.token-details {
    padding: 2rem;
}

.launch-info {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    display: inline-block;
}

.launch-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.launch-date i {
    color: #ff00ff;
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.back-link:hover {
    transform: translateX(-5px);
    background: rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.token-info-container {
    position: relative;
    max-width: 1000px;
    margin: 6rem auto 2rem;
    padding: 3rem;
    background: rgba(26, 16, 37, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.1);
}

.token-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.token-header::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.5), transparent);
}

.token-title h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.info-card {
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(157, 78, 221, 0.1),
        rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff00ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.address {
    font-family: monospace;
    font-size: 1rem;
}

.copy-btn {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 8px;
    color: rgba(157, 78, 221, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: rgba(157, 78, 221, 1);
    transform: scale(1.1);
    background: rgba(157, 78, 221, 0.2);
}

.network-icon {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(157, 78, 221, 0.5));
}

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

@media (max-width: 768px) {
    .token-info-container {
        margin-top: 8rem;
        padding: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .token-title h1 {
        font-size: 2.5rem;
    }
}