.app-window {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    width: 600px !important;
    height: auto !important;
    max-height: 80%;
}

.app-title {
    flex: 1;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    font-weight: 500;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    user-select: none;
}

.app-content {
    width: 100%;
    height: auto;
    max-height: calc(100% - 54px);
    background: transparent;
    padding: 30px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-content::-webkit-scrollbar {
    display: none;
}

.app-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.app-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 22%;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
}

.app-name {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.app-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.app-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-tech-badges .badge {
    background: rgba(0, 0, 0, 0.06);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    background: #007aff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.app-btn:hover {
    background: #0051d5;
    transform: translateY(-1px);
}

.app-btn.secondary {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

.app-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}