/* App Detail Page Specific Styles */
.app-detail-main {
    padding-top: 120px;
}

.app-hero {
    text-align: center;
    margin-bottom: 60px;
}

.app-icon-large {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #1a1e26;
}

.app-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 20px auto 40px;
    max-width: 600px;
}

/* Bulletin Board / Is This Just Me Styles */
.review-section {
    max-width: 800px;
    margin: 0 auto 100px;
}

.bbs-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.bbs-posts-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
}

.bbs-posts-list::-webkit-scrollbar {
    width: 8px;
}
.bbs-posts-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05); 
}
.bbs-posts-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 10px;
}

.bbs-post-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.user-name, .post-user {
    font-weight: bold;
    color: var(--accent);
    font-size: 0.9rem;
}

.post-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.post-content {
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.reactions-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
    display: inline-block;
}

.reaction-btn {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}
.reaction-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.bbs-form {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--card-border);
}

.input-group {
    margin-bottom: 15px;
}

.bbs-form input,
.bbs-form textarea,
.bbs-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.bbs-form input:focus,
.bbs-form textarea:focus,
.bbs-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.bbs-form select option {
    background-color: var(--bg-dark, #1a1e26);
    color: var(--text-primary, #ffffff);
}

.bbs-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.bbs-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.bbs-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.empty-message {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
}
