/* About Panel Styles */
.about-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
    touch-action: pan-y;
    overscroll-behavior: contain;
    isolation: isolate;
    font-family: 'VT323', monospace;
}

.about-panel.active {
    display: block;
}

/* Body state for open about panel */
.about-panel-open {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
    touch-action: none !important;
}

.about-panel-open .menu,
.about-panel-open .bottom-bar {
    display: none !important;
}

/* About panel header */
.about-header {
    text-align: center;
    padding: 50px 20px 30px;
}

.about-logo {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.about-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 40px;
}

/* About panel content */
.about-content {
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: left;
    position: relative;
}

/* Letter container styles */
.letter-container {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.letter-content {
    padding: 40px;
    font-family: 'VT323', monospace;
    line-height: 1.5;
}

.letter-intro {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.letter-signature {
    font-size: 20px;
    margin-top: 30px;
    color: #333;
    font-style: italic;
}

.about-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'VT323', monospace;
}

.about-content strong {
    color: #000;
}

.about-section {
    margin-top: 50px;
    margin-bottom: 40px;
}

.about-section-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
    font-family: 'VT323', monospace;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: none;
}

.about-content li {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 15px;
    font-family: 'VT323', monospace;
}

.about-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
}

/* Close button */
.close-button {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    padding: 8px;
    z-index: 10001;
}

.close-button:hover {
    opacity: 0.7;
}

/* Substack pill style */
.substack-pill {
    display: inline-flex;
    align-items: center;
    background-color: #FF6719;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 3px 10px 2px 9px;
    margin: 0 2px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.2s ease;
}

.substack-pill:hover {
    background-color: #e55b16;
}

.substack-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 6px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .about-content {
        margin: 0 auto 50px;
        padding: 0 20px;
    }
    
    .about-content p,
    .about-content li {
        font-size: 18px;
    }
    
    .letter-content {
        padding: 30px 20px;
    }
    
    .about-header {
        padding: 40px 20px 20px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .close-button {
        top: 15px;
        left: 15px;
        font-size: 16px;
    }
} 
