/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
    display: flex;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

body.dark-mode .breadcrumb-item.active {
    color: var(--text-muted);
}

/* Software Detail Card */
.software-detail-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.software-image-container {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 2rem;
}

body.dark-mode .software-image-container {
    background: rgba(0,0,0,0.2);
}

.software-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.software-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.software-version {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Specifications Table */
.specifications-table {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

body.dark-mode .specifications-table {
    background: rgba(0,0,0,0.2);
}

.spec-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-color);
    width: 180px;
    flex-shrink: 0;
}

.spec-value {
    color: var(--text-muted);
    flex: 1;
}

.spec-value i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Description Section */
.description-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.description-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Download Button */
.download-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.download-btn-large {
    background: white;
    color: var(--primary-color);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.download-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

.download-info {
    color: white;
    margin-top: 1rem;
    opacity: 0.95;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.features-list li i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Screenshots Section */
.screenshots-section {
    margin-bottom: 2rem;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sidebar */
.sidebar-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.related-app {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.related-app:last-child {
    border-bottom: none;
}

.related-app:hover {
    background: var(--light-bg);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

body.dark-mode .related-app:hover {
    background: rgba(37, 99, 235, 0.1);
}

.related-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.related-app-info {
    flex: 1;
}

.related-app-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.related-app-size {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* System Requirements */
.requirements-box {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

body.dark-mode .requirements-box {
    background: rgba(0,0,0,0.2);
}

.requirements-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.requirements-box li {
    color: var(--text-muted);
    padding: 0.35rem 0;
}

@media (max-width: 768px) {
    .software-title {
        font-size: 1.5rem;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-label {
        width: 100%;
        margin-bottom: 0.25rem;
    }
}
