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

.artist-statement, .collection-details, .bitcoin-inscription {
    margin-bottom: 2.5rem;
    text-align: center;
}

.artist-statement h3, .collection-details h3, .bitcoin-inscription h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.statement-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    margin: 1.5rem 0;
    position: relative;
    padding: 0 2rem;
}

.statement-quote::before, .statement-quote::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--neon-orange);
    position: absolute;
    opacity: 0.7;
}

.statement-quote::before {
    left: 0;
    top: -0.5rem;
}

.statement-quote::after {
    right: 0;
    bottom: -1.5rem;
}

.collection-details p, .bitcoin-inscription p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bitcoin-inscription {
    position: relative;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--dark-surface-lighter);
    overflow: hidden;
}

.bitcoin-inscription::before {
    content: "₿";
    position: absolute;
    font-size: 12rem;
    color: var(--neon-orange);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.bitcoin-inscription h3, .bitcoin-inscription p {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .statement-quote {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }
    
    .bitcoin-inscription {
        padding: 1.5rem;
    }
}
